My dear OC staff/tech support,
it is really the time you make little bit order in this upgrade to 1.4.6 ... all info are really confused, I "smeal" a lot of problems and, in fact, I'll not upgrade right now ... there are missing information and the risk that it will not work is high ... so then it needs to spend a week to fix it...
I dont understand the reason to release so complicate updates. Maybe for programmers, not for users that are based on the OC simpleness like me.
You all continue to ask, answer and talk on this forum but, unfortunately, now it is going for nothing ... it is impossible to follow it... The line is lost...
I hope my message is clear and someone can really take stock of the situtation!
Thanks for your support.
it is really the time you make little bit order in this upgrade to 1.4.6 ... all info are really confused, I "smeal" a lot of problems and, in fact, I'll not upgrade right now ... there are missing information and the risk that it will not work is high ... so then it needs to spend a week to fix it...
I dont understand the reason to release so complicate updates. Maybe for programmers, not for users that are based on the OC simpleness like me.
You all continue to ask, answer and talk on this forum but, unfortunately, now it is going for nothing ... it is impossible to follow it... The line is lost...
I hope my message is clear and someone can really take stock of the situtation!
Thanks for your support.
japanees wrote:As soon as I start the upload the following message appears in the admin section
Error: Could not load language !
Any ideas how to fix this?
My store front is fine however, just admin www. ja pa n e e s .(NET)
I had the same problem and fixed it by manually adding the config_admin_language setting via phpMyAdmin. The SQL statement to do this must have been overlooked in the upgrade instructions.
Seems to be working for me now.
I am getting very uncomfortable with the way this forum is answering legit questions and where a lot of people struggle with keeping up. Let me be clear, I love the cart and all.... and will soon donate more, but for now I need to get some stuff working and there is not one guide that tells the same thing,
I am uploading the latest version 1.4.6 files, I get the problem with Error: Could not load language and your suggestion is to look at another thread, which explains that I need to update my language files. But I just uploaded the 1.4.6 files which are the latest and it is these that give me the above error.
Thank you so much for your reply, I will test this on my dev server.fraser wrote: I had the same problem and fixed it by manually adding the config_admin_language setting via phpMyAdmin. The SQL statement to do this must have been overlooked in the upgrade instructions.
Seems to be working for me now.
Delete it entirely? You definitely don't want to do that.
The language problem is because there's no config setting for admin language. This SQL query needs to be run:
The language problem is because there's no config setting for admin language. This SQL query needs to be run:
Code: Select all
INSERT INTO `setting` (
`setting_id` ,
`group` ,
`key` ,
`value`
)
VALUES (
NULL , 'config', 'config_language', 'en'
);
-Ryan
No,
The index.php is breaking my site.
Thank you for the sql insert, it did however not fix my issue.
Why would I not want to remove the index.php from admin? It is fine to use the 1.4.5 index.php which is not broken in the current download.
The index.php is breaking my site.
Thank you for the sql insert, it did however not fix my issue.
Why would I not want to remove the index.php from admin? It is fine to use the 1.4.5 index.php which is not broken in the current download.
If you upload only the English language and you get this error then there is something wrong with your install of with one of the uploaded language files.japanees wrote:I am getting very uncomfortable with the way this forum is answering legit questions and where a lot of people struggle with keeping up.
I am uploading the latest version 1.4.6 files, I get the problem with Error: Could not load language and your suggestion is to look at another thread, which explains that I need to update my language files. But I just uploaded the 1.4.6 files which are the latest and it is these that give me the above error.
If you get this error while your Admin has the language set to anything else then English your language files are:
1. Outdated
2. Corrupt
3. Wrongly installed
In most cases it is an outdated version, or incomplete version, therefore I point you towards that topic.
That topic says everything there can be said about there error you have if you use another language then English for your admin.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
I have already pointed out what the problem is,
/admin/index.php and only that file,
I know it is this file as my site is working wonderful now that I changed the 1.4.6 downloaded /admin/index.php with the one from 1.4.5
Nothing else is wrong with the site, it was just that 1 file. I wget the latest version of OC and guess there might be something wrong with the current version of the 1.4.6 /admin/index.php file it is about 50% shorter than the 1.4.5 or 1.4.4 one.
/admin/index.php and only that file,
I know it is this file as my site is working wonderful now that I changed the 1.4.6 downloaded /admin/index.php with the one from 1.4.5
Nothing else is wrong with the site, it was just that 1 file. I wget the latest version of OC and guess there might be something wrong with the current version of the 1.4.6 /admin/index.php file it is about 50% shorter than the 1.4.5 or 1.4.4 one.
No it's not! Instead of fixing the language files you've simply removed the functionality that loads them altogether!japanees wrote:I have already pointed out what the problem is,
/admin/index.php and only that file,
-Ryan
Oh my,
so your telling me that the language files in the newest download 1.4.6 are the problem, and they should be fixed?
Because it is either, or.
The only difference in these two files
1.4.5
$config->set('config_language_id', $languages[$config->get('config_language')]['language_id']);
$language = new Language($languages[$config->get('config_language')]['directory']);
$language->load($languages[$config->get('config_language')]['filename']);
$registry->set('language', $language);
1.4.6
$config->set('config_language_id', $languages[$config->get('config_admin_language')]['language_id']);
$language = new Language($languages[$config->get('config_admin_language')]['directory']);
$language->load($languages[$config->get('config_admin_language')]['filename']);
$registry->set('language', $language);
so your telling me that the language files in the newest download 1.4.6 are the problem, and they should be fixed?
Because it is either, or.
The only difference in these two files
1.4.5
$config->set('config_language_id', $languages[$config->get('config_language')]['language_id']);
$language = new Language($languages[$config->get('config_language')]['directory']);
$language->load($languages[$config->get('config_language')]['filename']);
$registry->set('language', $language);
1.4.6
$config->set('config_language_id', $languages[$config->get('config_admin_language')]['language_id']);
$language = new Language($languages[$config->get('config_admin_language')]['directory']);
$language->load($languages[$config->get('config_admin_language')]['filename']);
$registry->set('language', $language);
Nobody has this issue, so it MUST be related to your server/setup.
Norman in 't Veldt
Moderator OpenCart Forums
_________________ READ and Search BEFORE POSTING _________________
Our FREE search: Find your answer FAST!.
[How to] BTW + Verzend + betaal setup.
I posted the wrong SQL query before. That's what I get for a mindless copy-paste. It should have been:
That's the source of all the problems. It's not included with the upgrade instructions and Admin won't load without it.
Code: Select all
INSERT INTO `setting` (
`setting_id` ,
`group` ,
`key` ,
`value`
)
VALUES (
NULL , 'config', 'config_admin_language', 'en'
);
-Ryan
Who is online
Users browsing this forum: No registered users and 5 guests