ParseError
syntax error, unexpected token "new" ParseError thrown with message "syntax error, unexpected token "new"" Stacktrace: #4 ParseError in /home4/theinfi3/public_html/acceleratedlighthealing/wp-content/plugins/exec-php/exec-php.php:22 #3 require_once in /home4/theinfi3/public_html/acceleratedlighthealing/wp-config.php:84 #2 require_once in /home4/theinfi3/public_html/acceleratedlighthealing/wp-load.php:37 #1 require_once in /home4/theinfi3/public_html/acceleratedlighthealing/wp-blog-header.php:13 #0 require in /home4/theinfi3/public_html/acceleratedlighthealing/index.php:17
Stack frames (5)
4
ParseError
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
wp-content
/
plugins
/
exec-php
/
exec-php.php
22
3
require_once
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
wp-config.php
84
2
require_once
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
wp-load.php
37
1
require_once
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
wp-blog-header.php
13
0
require
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
index.php
17
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
wp-content
/
plugins
/
exec-php
/
exec-php.php
Plugin Name: Exec-PHP
Plugin URI: http://bluesome.net/post/2005/08/18/50/
Description: Executes <?php ?> code in your posts, pages and text widgets.
Author: Sören Weber
Author URI: http://bluesome.net
Version: 4.9
*/
 
require_once(dirname(__FILE__).'/includes/manager.php');
 
// ----------------------------------------------------------------------------
// main
// ----------------------------------------------------------------------------
 
global $g_execphp_manager;
if (!isset($g_execphp_manager))
    // strange assignment because of explaination how references work;
    // this will generate warnings with error_reporting(E_STRICT) using PHP5;
    // http://www.php.net/manual/en/language.references.whatdo.php
    $GLOBALS['g_execphp_manager'] =& new ExecPhp_Manager();
 
?>
Arguments
  1. "syntax error, unexpected token "new""
    
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
wp-config.php
 * For developers: WordPress debugging mode.
 *
 * Change this to true to enable the display of notices during development.
 * It is strongly recommended that plugin and theme developers use WP_DEBUG
 * in their development environments.
 */
define('WP_DEBUG', false);
 
define( 'AUTOSAVE_INTERVAL', 300 );
define( 'WP_POST_REVISIONS', 5 );
define( 'EMPTY_TRASH_DAYS', 7 );
define( 'WP_CRON_LOCK_TIMEOUT', 120 );
/* That's all, stop editing! Happy blogging. */
 
/** Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
    define('ABSPATH', dirname(__FILE__) . '/');
 
/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
 
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
wp-load.php
 
/** Define ABSPATH as this file's directory */
if ( ! defined( 'ABSPATH' ) ) {
    define( 'ABSPATH', __DIR__ . '/' );
}
 
error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
 
/*
 * If wp-config.php exists in the WordPress root, or if it exists in the root and wp-settings.php
 * doesn't, load wp-config.php. The secondary check for wp-settings.php has the added benefit
 * of avoiding cases where the current directory is a nested installation, e.g. / is WordPress(a)
 * and /blog/ is WordPress(b).
 *
 * If neither set of conditions is true, initiate loading the setup process.
 */
if ( file_exists( ABSPATH . 'wp-config.php' ) ) {
 
    /** The config file resides in ABSPATH */
    require_once ABSPATH . 'wp-config.php';
 
} elseif ( @file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! @file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) {
 
    /** The config file resides one level above ABSPATH but is not part of another installation */
    require_once dirname( ABSPATH ) . '/wp-config.php';
 
} else {
 
    // A config file doesn't exist.
 
    define( 'WPINC', 'wp-includes' );
    require_once ABSPATH . WPINC . '/load.php';
 
    // Standardize $_SERVER variables across setups.
    wp_fix_server_vars();
 
    require_once ABSPATH . WPINC . '/functions.php';
 
    $path = wp_guess_url() . '/wp-admin/setup-config.php';
 
Arguments
  1. "/home4/theinfi3/public_html/acceleratedlighthealing/wp-config.php"
    
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
wp-blog-header.php
<?php
/**
 * Loads the WordPress environment and template.
 *
 * @package WordPress
 */
 
if ( ! isset( $wp_did_header ) ) {
 
    $wp_did_header = true;
 
    // Load the WordPress library.
    require_once __DIR__ . '/wp-load.php';
 
    // Set up the WordPress query.
    wp();
 
    // Load the theme template.
    require_once ABSPATH . WPINC . '/template-loader.php';
 
}
 
Arguments
  1. "/home4/theinfi3/public_html/acceleratedlighthealing/wp-load.php"
    
/
home4
/
theinfi3
/
public_html
/
acceleratedlighthealing
/
index.php
<?php
/**
 * Front to the WordPress application. This file doesn't do anything, but loads
 * wp-blog-header.php which does and tells WordPress to load the theme.
 *
 * @package WordPress
 */
 
/**
 * Tells WordPress to load the WordPress theme and output it.
 *
 * @var bool
 */
define( 'WP_USE_THEMES', true );
 
/** Loads the WordPress Environment and Template */
require __DIR__ . '/wp-blog-header.php';
 
Arguments
  1. "/home4/theinfi3/public_html/acceleratedlighthealing/wp-blog-header.php"
    

Environment & details:

empty
empty
empty
empty
empty
Key Value
SERVER_SOFTWARE
"Apache"
REQUEST_URI
"/magicofdreams"
LSPHP_ENABLE_USER_INI
"on"
PATH
"/usr/local/bin:/usr/bin:/bin"
TEMP
"/tmp"
TMP
"/tmp"
TMPDIR
"/tmp"
PWD
"/"
HTTP_ACCEPT
"*/*"
HTTP_CONNECTION
""
CONTENT_LENGTH
"0"
HTTP_HOST
"acceleratedlighthealing.com"
HTTP_USER_AGENT
"claudebot"
HTTP_X_FORWARDED_FOR
"52.91.0.68"
HTTP_X_REAL_IP
"52.91.0.68"
HTTP_X_EIG_ORIGIN
"69.195.110.30"
HTTP_X_CACHE_REQ
"1"
REDIRECT_UNIQUE_ID
"ZgXSJtSKggwYJM-F4Qiu-gAAAbQ"
REDIRECT_QS_SrvConn
"2"
REDIRECT_QS_AllConn
"68"
REDIRECT_QS_ConnectionId
"171165751016093036603923"
REDIRECT_no-proxy
"1"
REDIRECT_SCRIPT_URL
"/magicofdreams"
REDIRECT_SCRIPT_URI
"http://acceleratedlighthealing.com/magicofdreams"
REDIRECT_STATUS
"200"
UNIQUE_ID
"ZgXSJtSKggwYJM-F4Qiu-gAAAbQ"
QS_SrvConn
"2"
QS_AllConn
"68"
QS_ConnectionId
"171165751016093036603923"
no-proxy
"1"
SCRIPT_URL
"/magicofdreams"
SCRIPT_URI
"http://acceleratedlighthealing.com/magicofdreams"
SERVER_SIGNATURE
""
SERVER_NAME
"acceleratedlighthealing.com"
SERVER_ADDR
"69.195.110.30"
SERVER_PORT
"80"
REMOTE_ADDR
"52.91.0.68"
DOCUMENT_ROOT
"/home4/theinfi3/public_html/acceleratedlighthealing"
REQUEST_SCHEME
"http"
CONTEXT_PREFIX
""
CONTEXT_DOCUMENT_ROOT
"/home4/theinfi3/public_html/acceleratedlighthealing"
SERVER_ADMIN
"webmaster@acceleratedlighthealing.theinfiniteflow.com"
SCRIPT_FILENAME
"/home4/theinfi3/public_html/acceleratedlighthealing/index.php"
REMOTE_PORT
"47208"
REDIRECT_URL
"/magicofdreams"
SERVER_PROTOCOL
"HTTP/1.1"
REQUEST_METHOD
"GET"
QUERY_STRING
""
SCRIPT_NAME
"/index.php"
PHP_SELF
"/index.php"
REQUEST_TIME_FLOAT
1711657510.6817
REQUEST_TIME
1711657510
argv
[]
argc
0
empty
0. Whoops\Handler\PrettyPageHandler