[SOLVED] Re: 1.10.3 upgrade 'successful' but cannot login
Posted: Tue Mar 20, 2012 10:57 am
Help? I'm struggling with upgrading my CGBlog-heavy site to 1.10.3 from 1.9.4.3.
I tried this several days ago and had to put it back to 1.9.4.3 because of the errors, but the site didn't restore perfect (menu bar was missing, etc...).
Attempting this again, I disabled most of the extra modules in hopes that might help my issue. I also upgraded CGExtensions to the latest (1.27.9) to match with current 1.10.3 version. But, after successfully going through the install/upgrade.php process again, I cannot connect, despite the fact that I did receive this note at the end of the process:
Now, I'm getting a "username or password incorrect" when I try to login, even though they are correct.
I added "debug" mode to my config.php file, perhaps this explains something? I'm not sure if it does.
Below is a copy of my current config.php file:
I tried this several days ago and had to put it back to 1.9.4.3 because of the errors, but the site didn't restore perfect (menu bar was missing, etc...).
Attempting this again, I disabled most of the extra modules in hopes that might help my issue. I also upgraded CGExtensions to the latest (1.27.9) to match with current 1.10.3 version. But, after successfully going through the install/upgrade.php process again, I cannot connect, despite the fact that I did receive this note at the end of the process:
I've tried to manually adjust the config.php file to the basics, but still a no-go.Thanks for upgrading CMS Made Simple to
1.10.3 (Hyacinthe)
Now, I'm getting a "username or password incorrect" when I try to login, even though they are correct.
I added "debug" mode to my config.php file, perhaps this explains something? I'm not sure if it does.
Below is a copy of my current config.php file:
Code: Select all
<?php
# CMS Made Simple Configuration File
# Documentation: /doc/CMSMS_config_reference.pdf
#
$config['debug'] = true;
$config['timezone'] = 'US/Eastern';
$config['dbms'] = 'mysql';
$config['db_hostname'] = 'xxx';
$config['db_username'] = 'xxx';
$config['db_password'] = 'xxx';
$config['db_name'] = 'xxx';
$config['db_port'] = 0;
$config['db_prefix'] = 'cms_';
$config['root_url'] = 'http://www.xxx.com';
$config['url_rewriting'] = 'mod_rewrite';
$config['page_extension'] = '/';
$config['query_var'] = 'page';
$config['default_encoding'] = 'utf-8';
$config['wiki_url'] = 'http://wiki.cmsmadesimple.org/index.php/User_Handbook/Admin_Panel';
?>