After finally getting all “yes” responses from the server wizard, I ran the installer and reached the
You are now running the most current version of ExpressionEngine!
page. I deleted the “installer” folder using FTP, and tried to navigate to the control panel and website. Each gave me a blank page. I searched through the forums for similar topics and changed the “debug” variable to “1” in the index.php file. Navigating to the website gave me these errors:
Notice: Use of undefined constant ‘ - assumed ‘‘’ in /nfs/c08/h02/mnt/148841/domains/mypage.com/html/ExpressionEngine2.5.0_FL/system/expressionengine/config/config.php on line 14
Notice: Use of undefined constant system - assumed ‘system’ in /nfs/c08/h02/mnt/148841/domains/mypage.com/html/ExpressionEngine2.5.0_FL/system/expressionengine/config/config.php on line 14
Warning: Division by zero in /nfs/c08/h02/mnt/148841/domains/mypage.com/html/ExpressionEngine2.5.0_FL/system/expressionengine/config/config.php on line 14
Notice: Use of undefined constant ‘ - assumed ‘‘’ in /nfs/c08/h02/mnt/148841/domains/mypage.com/html/ExpressionEngine2.5.0_FL/system/expressionengine/config/config.php on line 14
Warning: Division by zero in /nfs/c08/h02/mnt/148841/domains/mypage.com/html/ExpressionEngine2.5.0_FL/system/expressionengine/config/config.php on line 14
A PHP Error was encountered
Severity: Notice
Message: Use of undefined constant ‘ - assumed ‘‘’
Filename: config/config.php
Line Number: 14
A PHP Error was encountered
Severity: Notice
Message: Use of undefined constant system - assumed ‘system’
Filename: config/config.php
Line Number: 14
A PHP Error was encountered
Severity: Warning
Message: Division by zero
Filename: config/config.php
Line Number: 14
A PHP Error was encountered
Severity: Notice
Message: Use of undefined constant ‘ - assumed ‘‘’
Filename: config/config.php
Line Number: 14
A PHP Error was encountered
Severity: Warning
Message: Division by zero
Filename: config/config.php
Line Number: 14
Fatal error: Call to undefined method CI_Config::site_prefs() in /nfs/c08/h02/mnt/148841/domains/mypage.com/html/ExpressionEngine2.5.0_FL/system/expressionengine/libraries/Core.php on line 134
I’ve used “system” and “mypage” for simplicity though I have renamed the system folder throughout index.php and admin.php.
All my listed errors are in line 14 of my config file, which reads:
$config[‘cp_url’] = $config[‘site_url’] . ‘/system/‘;
Once I wrote all of the above, I thought “this looks like such an easy fix. Let me try something” and changed line 14 to
$config[‘cp_url’] = “http://mypage.com/system/index.php;
and the error is now:
Parse error: syntax error, unexpected T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /nfs/c08/h02/mnt/148841/domains/mypage.com/html/ExpressionEngine2.5.0_FL/system/expressionengine/config/config.php on line 15
SO, I’ll just copy my config file here:
<?php if ( ! defined(‘BASEPATH’)) exit(‘No direct script access allowed’);
/* ExpressionEngine Configuration
—————————————————————————————————-*/
$config[‘app_version’] = “250”;
$config[‘license_number’] = “2923-6201-2030-2497”;
$config[‘debug’] = “1”;
$config[‘install_lock’] = “”;
$config[‘system_folder’] = “system”;
$config[‘is_system_on’] = “y”;
$config[‘allow_extensions’] = “y”;
$config[‘site_url’] = “http://mypage.com/”;
$config[‘server_path’] = FCPATH;
$config[‘cp_url’] = “http://mypage.com/system/index.php;
$config[‘theme_folder_url’] = $config[‘site_url’].”/themes/”;
$config[‘theme_folder_path’] = $config[‘server_path’].”/themes/”;
$config[‘save_tmpl_files’] = “y”;
$config[‘tmpl_file_basepath’] = $config[‘server_path’].”/templates/”;
/* End of file config.php */
/* Location: ./system/expressionengine/config/config.php */
Sorry if I’ve complicated things more than necessary. Any assistance is GREATLY appreciated. Signed, a young beginner.