Hi there.
I got the bridge installed (I thought successfully), however, when I login as a user, and attempt to access CE via the module, I get the following error.
Parse error: syntax error, unexpected T_STRING in /home/mybroken/public_html/mysite/billing/config.php on line 29
Below is the code of my config.php
| Code: |
<?php
/***** SPECIFIC TO YOUR SERVER (CHANGE) ******/
$hostname = 'changed';
$dbuser = 'changed';
$dbpass = 'changed';
$database = 'changed';
$demo_mode = 0;
define('DEBUG',false);
define('INSTALLED', 1);
define('SESSION_NAME', 'CLIENTEXEC');
// *** LOG_LEVELS (each level adds additional information) ***
// 0: No logging
// 1: Security attacks attempts, errors and important messages (recommended level)
// 2: + Request URIs and URI redirections
// 3: + POST and COOKIE values
// 4. + SQL queries
// 5: Maximum verbosity: plugin events, curl requests,
// some function calls with their parameters, etc. (use this when sending logs to support)
define('LOG_LEVEL', 0);
define('LOG_SCREEN', false);
define('_FROMCLIENTEXEC',1);
define('_JURL','http://mysite.com/index.php');
define('_CEBRIDGEINCLUDE','/home/mybroken/public_html/mysite/components/com_cebridge/classes/clientexec.php'
// To activate text file logging, replace the 'false' with the file full path. Do not use relative paths.
// Use absolute paths(e.g. /home/yourinstallationpath/ce.log, instead of ce.log)
// The log may show passwords, so please use a file outside the web root, but writable by the web server user.
define('LOG_TEXTFILE', false);
// To use $_SESSION['sessionPassword'] and $_SESSION['sessionUserName'] for login sharing, set this variable to true.
// There is a potential security risk to doing this since session variables are often
// stored in /tmp on shared servers which puts login information at risk.
define('SESSION_LOGIN', false);
?>
|
Any idea what may be causing this>?
Cheers,