AbanteCart Community

Shopping Cart Operations => Support => Topic started by: denagpam on January 31, 2013, 04:38:03 PM

Title: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: denagpam on January 31, 2013, 04:38:03 PM
Dear admin,

I have upgraded to v.1.1.3. But, I get an error when I try to sign into my admin panel:

after I browse to: http://goolysmart.web.id/index.php?s=gs_admin

There is an error:

"Fatal error: Call to a member function replaceDescriptions() on a non-object in /home/goolysma/public_html/admin/model/localisation/language_definitions.php on line 50"

Then, I do no know where I must locate upgrade.php file. Must it be located to public_html?

If so, I have done this, but, after I browse to goolysmart.web.id/upgrade.php, I get this error:

"There has been an error processing your request

Please check error log for more info. You can check error log in the control panel if it is functional. Otherwise, refer to error log located in your web server
Go to main page"

Hope you help me fix this issue.

Thanks.
Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: abolabo on January 31, 2013, 09:51:32 PM
HI.
if you upgraded from 1.1.2 to 1.1.3 you have to do:

1. download package http://abantecart.googlecode.com/files/abantecart_1.1.3_upgrade_only.tar.gz and unpack.
2. replace all php files into your public_html directory by files of folder "code".
3. delete all files from folder public_html/system/cache except index.html
4. also check is file core/engine/language.php exists

Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: Nimitz1061 on February 02, 2013, 07:53:39 AM
I have the same issue.

I have done all of the things you listed.

The problem remains.

David
Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: Nimitz1061 on February 02, 2013, 07:54:31 AM
Also,  your listed steps do not include information on what to do with the upgrade.php file which is located above the code/ folder.

David
Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: Nimitz1061 on February 02, 2013, 08:14:55 AM
Looking at the files in the upgrade only tarball, I see that there is NO public_html/core/version.php file.

Adding this does not fix the problem however...


Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: Nimitz1061 on February 02, 2013, 09:37:19 AM
Further, looking at the upgrade.php file, I checked the conditions that the file looks for in the database, and did not find them.

In my case at least, this would seem to be immaterial to the fatal error..
Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: Nimitz1061 on February 02, 2013, 10:05:45 AM
setting auto_translate_status to '0' in phpMyAdmin also fails to address this.
Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: denagpam on February 03, 2013, 08:40:49 PM
Mr. David, thanks very much for your attention to this issue. I know that you are one of the abantecart's admin. I hope Mr. abolabo will give a response this. Thanks.
Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: abolabo on February 04, 2013, 10:54:10 PM
i confirm. it's a bug.
please replace lines
Code: [Select]
//load main language section
$language->load();
$registry->set('language', $language);
by this
Code: [Select]
//load main language section
$registry->set('language', $language);
        $registry->get('language')->load();

thanks to denagpam for help.
1.1.4 will be released soon.
Title: Re: I get an error when signing into my admin panel after upgrading to v.1.1.3
Post by: denagpam on February 05, 2013, 04:54:15 PM
Thank you very much for your help, Mr. Abolabo.