View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0010392 | mantisbt | upgrade | public | 2009-04-23 13:11 | 2009-06-26 12:05 |
| Reporter | cmattmiller | Assigned To | jreese | ||
| Priority | normal | Severity | minor | Reproducibility | have not tried |
| Status | closed | Resolution | not fixable | ||
| OS | CentOS 4.5 | ||||
| Summary | 0010392: Error after upgrade from 1.0.6 to 1.1.1 | ||||
| Description | I get this error when I try to signup a new account from the login page and from the manage users page. Database query failed. Error received from database was #-1: ERROR: relation "mantis_email_table_id_seq" does not exist for the query: SELECT currval('mantis_email_table_id_seq') There is a sequence called "mantis_email_table_email_id_seq". Do I need to just change the 'email_id' column on the mantis_email_table to id, or should I change just the sequence? | ||||
| Tags | No tags attached. | ||||
|
I went thru the upgrades from 1.0.6 to 1.1.0 and that error appears after I upgrade to 1.1.0. I will stick with the 1.0.8 upgrade for now. **Using PHP 5.1.6 and PostgreSQL 8.3.7 on CentOS 4.5 |
|
|
Are you using /admin/install.php to upgrade your database schema after you install the 1.1.x version? |
|
|
Yes. I copied my config_inc.php from my mantis folder (v1.0.6) into the mantis-release folder (v1.1.0) and then ran mantis-release/admin/install.php, followed the instructions from http://www.mantisbt.org/manual/manual.installation.upgrading.php |
|
|
Sorry, I had missed that you were using PgSQL earlier. There are known problems with handling Postgres in 1.1.x; these should all be fixed in the development releases for 1.2.0. If you could try test upgrading a copy of your database to 1.2.x, that would be greatly appreciated to help make sure we are not missing anything. You can either clone the Git repository from http://git.mantisbt.org, or you can find the most recent nightly builds on http://www.mantisbt.org/builds/ Thanks |
|
|
Okay. I installed 1.1.7 and then upgraded to the nightly build on 4/23/09. The only thing that didn't work right away, from the little that I've tested, is the "Manage Tags" link. I get the following error: APPLICATION ERROR 0000401 I got it to work by making the following changes in manage_tags_page.php: Determine number of tags in tag table$t_total_tag_count = 0; +if ($t_where == '1'){
Retrive Tags from tag table+if ($t_where == 1){
Hope that helps. |
|
|
I also had to up the memory_limit in the php.ini file. I have it set at 12M, up from 8M. |
|
|
Marking this issue as resolved because the PgSQL issues in 1.1.x are not fixable. I've opened issue 0010446 to track the problem with manage_tags_page.php, which should be fixed shortly. |
|