OpenCart 2.2 error undefined when viewing order info - opencart

When I click the view button next to an order (whether from the dashboard or orders page) I get an "error undefined" alert as the page is loading.
I also get the same error when I try and change the order status from the same page and it yields no results.
It also produces no errors in the error log.
I can however change the order status from the edit order page but this is very inconvenient.
If anyone knows a common solution or maybe pointers as to how to start diagnosing the issue please post them here. I've been hunting for answers most of the day and have had no luck with any solutions.
ty in advance.

if you are using SSL Tyr this at upload/admin/controller/sale/order.php
After
$data['store_name'] = $order_info['store_name'];
Remove
$data['store_url'] = $this->request->server['HTTPS'] ? preg_replace("/^http:\/\//", "https://", $order_info['store_url']) : $order_info['store_url'];
Add
$data['store_url'] = $this->request->server['HTTPS'] ? HTTPS_CATALOG : HTTP_CATALOG;

Unfortunately OpenCart 2.2.0.0 is known to be a bit buggy.
Best thing would be to start using 2.3.0.2 (avoid 2.3.0.0 and 2.3.0.1) if possible.

Related

How can I fix the internal error in Django?

I don't have a lot of experience in Django and I am a fairly green developer. When I run the localhost I keep getting a Internal Error. I have tried most of the solutions to similar problems here and none of them works. Can anyone help me? The code is not mine so I don't want to alter it as such either.
Here is a picture of the errors I keep getting:
The only thing you can do without altering the code is to enter the value "shop_all_art" in the HomePage table in the database.
Do not share code via images. You should also share the related code.
Your stacktrace clearly says, that Python is not able to access first element of HomePage.objects.filter(value='shop_all_art') in file bidgala/bidgala/pages/views.py. all_art_img is most probably empty.
Looks like all_art_img is empty.
you should check if a Query has any elements before with a method such as
if all_art_img.exists():
all_art_img[0]

Error Processing Request - Oracle Application Express (APEX)

I have a Master-Detail Interactive Grid page in Oracle Application Express. Occasionally, users get the error message "Error Processing Request" when they attempt to save changes to the interactive grids. The users don't see any other detail on the error (including the code for the error). In those instances, there are no obvious problems with the data being entered (no mandatory fields missing, validations that would fail, etc). I am unable to reproduce these errors myself. I suspect that the errors may be caused by some sort of connectivity problem, but I have no way to verify this. Is anybody aware of the cause (or common causes) of this error?
Not an answer, but a tip to try to find more information on the "monitor activity".
1 - Go to "monitor activity"
2 - Click on "By View"
3 - Try to find in the report, filtering in the error column, some occurrence of this error.
4 - Check if is there a link in the "debug id" column; it will take you to more details about page execution; see if you find any error code or some other useful information ...

Dib(s) Error no paytype(s)! missing test parameter? - Open Cart

I am facing the problem to installation of the Dibs payment method in Open Cart. It is displaying the error No paytype(s)! Missing test parameter?.
Please guide me how to solve this problem.
Thanks
Pawan
Strike my previous answer...
According to DIBS, this happens if the DIBS account is still in test mode when you have switched off test mode in the shop, or vice versa.

Hash anchor tag causing errors in URL

On very rate occasions, my error log is showing the following error:
"You specified a Fuseaction of registrationaction#close which is not defined in Circuit public."
The full link is:"http://myUrl/index.cfm?do=public.registrationAction#close"
As you can see, the has merely points to an anchor (close) on the page.
This code is working 99% of the time, but on the odd occasion, Coldfusion / Fusebox throws this error out.
Why is this happening?
Could it be related to the device accessing my page somehow? Like a cell phone or Apple product that for some reason does handle hashes the way I am expecting it to?
Could it be javascript / JQuery being disabled?
Any guidance would be appreciated
Thanks
I used to see stuff like that. Older versions of Internet Explorer were not handling the hashtag properly when there were URL parameters. The best solution I could come up with was kludgey at best, but basically it forced the anchor tag to separate from the URL parameter.
http://myUrl/index.cfm?do=public.registrationAction&#close
I'm not sure there is a simple answer to this. We get odd exceptions all the time on our site for all sorts of reasons. Sometimes it's people not using the site the way you expect and sometimes it stuff like you mention such as user-agent edge cases etc.
Basically you need to start to gather evidence and see what comes up that's unusual with these requests.
So to start: do you catch exceptions in you application? If so dumping all scopes (CGI/CLIENT/FORM/URL/SESSION) in an email along with the full exception and emailing them to a custom emails address (such as errors#yourdomain.com) will give you a reference you can square up to your error times and this might give you a hint as to the real issue.
Hope that helps some!

System.UnexpectedException: error ID: 1502628612-2761 (-677061709)

When I try to invoke a Java service from an apex class with the wsdl2 apex class I get this error. Can anyone help me please?
System.UnexpectedException: Got an unexpected error in callout : null. Contact support with error ID: 1502628612-2761 (-677061709)
Any time you see the text to contact support and an error ID, it was actually a bug in Salefsorce's code and there's nothing you can really do to make it work as you are trying to use it.
The best you can do is contact their support team and log a ticket. A lot of times they can find a suitable workaround that'll work in the meantime.