I know this has been raised many times, but I still haven't found a solution that fixes the problem.
I'm unable to process orders.
Dashboard/View latest Orders : I'm unable to change the order history without getting the message (and it's not updating)
Order List/Edit Orders: Can't even use the "Continue" button to move tabs, just error message and no action.
I've upgraded from 2.0.0.0 to 2.0.1.1
I'm definitely not in maintenance mode (it's the same either way)
The problem exists across browsers (Chrome & FF) just different error messges
I've tried the 'create a new api' fix without success
Pulling my hair out now. Does anyone know of a fix that actually works?
I'm unable to process orders.
Dashboard/View latest Orders : I'm unable to change the order history without getting the message (and it's not updating)
Order List/Edit Orders: Can't even use the "Continue" button to move tabs, just error message and no action.
I've upgraded from 2.0.0.0 to 2.0.1.1
I'm definitely not in maintenance mode (it's the same either way)
The problem exists across browsers (Chrome & FF) just different error messges
I've tried the 'create a new api' fix without success
Pulling my hair out now. Does anyone know of a fix that actually works?
I'm running into the same problem.
Did you find a solution yet?
I have to manually email people with their shipping details as the error comes in when you are updating an order.
I have tried 10-15 ideas from here in the forum, non of them work.
Did you find a solution yet?
I have to manually email people with their shipping details as the error comes in when you are updating an order.
I have tried 10-15 ideas from here in the forum, non of them work.
do you have modify permission, and also is your API user set up correctly?
Maybe your server causes this problem. Could you provide your site url, a admin account and a FTP account via PM, so I can take a look at it closer?bluehash wrote:Thanks.. but what do you mean by "do you have modify permission". I'm the admin. Anything to chmod?
I have the right api keys in the database.
http://www.viethemes.com - OpenCart turtorials, news, tips and stricks, extension
Our extensions:
Visual Theme Editor - Powerful tool for customizing style of any theme visually
Live Theme Editor - Customize layout, colors, backgrounds, fonts of the default theme
Theme Animation - Animation Editor for any theme
Extra Positions PRO, Custom JavaScript, Custom CSS and others
not chmod, but perhaps in user > user groups. Do you have the permission to modify sale/order, and also can the api be called successfully? That's usually the cause, because the api isn't responding json data.bluehash wrote:Thanks.. but what do you mean by "do you have modify permission". I'm the admin. Anything to chmod?
I have the right api keys in the database.
Thanks.. comments follow:
Although the api user( under settings->users->api) has a different name than the admin.
Is that an issue?
Most users are also claiming that it might be a host setting.. but they conveniently leave out what changed.
Thanks for debugging this. Although I have hijacked the OP, hope this helps him as this was his issue too.
There is a "Top Administrator" group that has all permissions.MarketInSG wrote:not chmod, but perhaps in user > user groups
Yes, from above.MarketInSG wrote:Do you have the permission to modify sale/order
Although the api user( under settings->users->api) has a different name than the admin.
Is that an issue?
This I'm not sure how to test this. Any pointers will help.MarketInSG wrote:also can the api be called successfully? That's usually the cause, because the api isn't responding json data.
Most users are also claiming that it might be a host setting.. but they conveniently leave out what changed.
Thanks for debugging this. Although I have hijacked the OP, hope this helps him as this was his issue too.
Been trying a few of the things mentioned so far;
I have one API record set in back end
oc_api table has one record with api_Id = 2 and matching the details in the api record
oc_settings key, config_api_id = 2
All permissions set for administrator
mar24 says "phpmyadmin look api must be = 1 ", is this true or does it just have to = oc_api_id ?
I have one API record set in back end
oc_api table has one record with api_Id = 2 and matching the details in the api record
oc_settings key, config_api_id = 2
All permissions set for administrator
mar24 says "phpmyadmin look api must be = 1 ", is this true or does it just have to = oc_api_id ?
Make a notebad++ file curl_check.php and write text at the botton and copy to your root.
<?
phpinfo();
?>
then check curl enabled and all everything else too. with http://www.domain.com/curl_check.php
api should be 1 i had 2 and changed it to 1 but i think it wont matter but just in case.
My problem was in admin/config.php address
then delete curl_chek file from root
<?
phpinfo();
?>
then check curl enabled and all everything else too. with http://www.domain.com/curl_check.php
api should be 1 i had 2 and changed it to 1 but i think it wont matter but just in case.
My problem was in admin/config.php address
then delete curl_chek file from root
Thanks mar24.mar24 wrote:My problem was in admin/config.php address
What was your issue in config.php? HTTPs?
Mine is below:
Code: Select all
define('HTTPS_CATALOG', HTTP_CATALOG);
// HTTP
define('HTTP_SERVER', 'http://store.43oh.com/admin/');
define('HTTP_CATALOG', 'http://store.43oh.com/');
define('HTTP_IMAGE', 'http://store.43oh.com/image/');
// HTTPS
define('HTTPS_SERVER', 'http://store.43oh.com/admin/');
define('HTTPS_IMAGE', 'http://store.43oh.com/image/');
should be:mar24 wrote:<?
phpinfo();
?>
Code: Select all
<?php
phpinfo();
?>
admin config.php https_server set to http://....
No SSL Installed
Mod_Security not installed
OC was re-installed (2.0.0.0 to 2.0.1.1) only a few days ago - in the hope that it would get rid of this problem. Unfortunately I have 4 new opencart sites with V2 on, so I guess I'll have problems with all of these.
Might me nice to hear from the developers...
Aaargh!
No SSL Installed
Mod_Security not installed
OC was re-installed (2.0.0.0 to 2.0.1.1) only a few days ago - in the hope that it would get rid of this problem. Unfortunately I have 4 new opencart sites with V2 on, so I guess I'll have problems with all of these.
Might me nice to hear from the developers...
Aaargh!
Yes, I had the same problem and I thought to give up but a simple mistake somewhere. Take your time and check everything over calmly.
just read http://forum.opencart.com/viewtopic.php?f=190&t=135248 helped me a lot.
just read http://forum.opencart.com/viewtopic.php?f=190&t=135248 helped me a lot.
Thanks for the help.mar24 wrote:Yes, I had the same problem and I thought to give up but a simple mistake somewhere. Take your time and check everything over calmly.
just read http://forum.opencart.com/viewtopic.php?f=190&t=135248 helped me a lot.
I had to have
Code: Select all
define('HTTPS_CATALOG', 'http://domain.com/');
It works now.
For others, the below may help:
- Do the API changes.
2. In Settings, option tab, checkout, enable the user. This is also important.
3.
My config file had the following code. The first line was missing.
Code: Select all
define('HTTPS_CATALOG', 'http://store.domain.com/');
// HTTP
define('HTTP_SERVER', 'http://store.domain.com/admin/');
define('HTTP_CATALOG', 'http://store.domain.com/');
define('HTTP_IMAGE', 'http://store.domain.com/image/');
// HTTPS
define('HTTPS_SERVER', 'https://store.domain.com/admin/');
define('HTTPS_IMAGE', 'https://store.domain.com/image/');
Who is online
Users browsing this forum: No registered users and 23 guests