can't upgrade 2.1.10 to 2.1.11
cosmin 269
From: -
From: -
Like the title says. I've uploaded the new files from the zip archive and when going to cadmin/cupgrade.php I get redirected to cadmin/cinstall.php.
Notice
This topic is archived. New comments cannot be posted and votes cannot be cast.Responses to this topic
1 Re: can't upgrade 2.1.10 to 2.1.11
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Yes
1 Re: can't upgrade 2.1.10 to 2.1.11
cosmin
OP
269
From: -
From: -
How do I send you a PM? Do I use the "new conversation" option?
1 Re: can't upgrade 2.1.10 to 2.1.11
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
I can look into it if you want. Just send me a PM with the details including FTP login.
1 Re: can't upgrade 2.1.10 to 2.1.11
cosmin
OP
269
From: -
From: -
refresh during upgrading? Possibly. It doesn't seem to work, either I renamed the wrong files, or there's something else. Probably a botched upgrade, my cadmin says version 2.1.9 but AFAIK I did upgrade to 2.1.10
1 Re: can't upgrade 2.1.10 to 2.1.11
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Did you refresh? I ask because the column "userqueue_rawpassword" is new in 2.1.11.
You can workaround it by deleting:
/cadmin/users/sql_mysql_upgrade_usersqueue.php
If you receive an error about usersrecovery, you need to delete this file as well:
/cadmin/users/sql_mysql_upgrade_usersrecovery.php
You can workaround it by deleting:
/cadmin/users/sql_mysql_upgrade_usersqueue.php
If you receive an error about usersrecovery, you need to delete this file as well:
/cadmin/users/sql_mysql_upgrade_usersrecovery.php
1 Re: can't upgrade 2.1.10 to 2.1.11
cosmin
OP
269
From: -
From: -
Upgrading the database fails.
Upgrading users
Upgrading sql_mysql_upgrade_users
Upgrading sql_mysql_upgrade_usersavatars
Upgrading sql_mysql_upgrade_usersemailconfirm
Upgrading sql_mysql_upgrade_usersprivatemessages
Upgrading sql_mysql_upgrade_usersqa
Upgrading sql_mysql_upgrade_usersqueue
The MySQL database of this Contentteller Content Management System installation has encountered the following problem:
The MySQL database server has returned 1060: Duplicate column name 'userqueue_rawpassword' while executing ALTER TABLE esselbach_ct_usersqueue ADD userqueue_rawpassword varchar(40) NOT NULL AFTER userqueue_password
Please try it in a few minutes again. We apologize for any inconvenience.
1 Re: can't upgrade 2.1.10 to 2.1.11
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Create a new build.php with the following content:
If you need a new config.php as well:
Replace <username>, <password> and <database name> with the username/password/database name of your database. You may also need to adjust DB_ENGINE, DB_COLLATION and INSTALL_CHARSET.
<?php
$install_build = "824.91";
$install_time = "1309247610";
?>
If you need a new config.php as well:
<?php
$config['DB_HOSTNAME'] = "localhost";
$config['DB_USERNAME'] = "<username>";
$config['DB_PASSWORD'] = "<password>";
$config['DB_DATABASE'] = "<database name>";
$config['DB_LAYER'] = "mysql";
$config['DB_PREFIX'] = "";
$config['DB_ENGINE'] = "InnoDB";
$config['DB_COLLATION'] = "UTF-8";
$config['WEBSITE'] = "1";
$config['MAIN_MODULE'] = "news";
$config['DEFAULT_THEME'] = "1";
$config['ADMIN_LANGUAGE'] = "en";
$config['INSTALL_CHARSET'] = "UTF-8";
$config['CACHE_PREFERENCES'] = "0";
?>
Replace <username>, <password> and <database name> with the username/password/database name of your database. You may also need to adjust DB_ENGINE, DB_COLLATION and INSTALL_CHARSET.
1 Re: can't upgrade 2.1.10 to 2.1.11
cosmin
OP
269
From: -
From: -
Yes it is. What do I do now?
1 Re: can't upgrade 2.1.10 to 2.1.11
Philipp
From: Vienna, Austria
Administrator
1340From: Vienna, Austria
Are both config.php and build.php files in your /includes directory? Sounds like the build.php file is missing.