VERSION 2.1.0.1
When I try to view or add order history, I get a pop up that says "Error Undefined".....I cannot add history.
That's IT. I look in the logs and find nothing. I look in the server logs, nothing.
(Log Errors is turned on)
There has to be some way to see what the heck this means?
Thanks BunCakes.
I tried that many times.
What finally, actually worked was this......
In admin/controller/sale/order.php Find this line:
$data['store_url'] = $order_info['store_url'];
You'll notice it pulls the url from the order, and not from your browsing context.
I'm not sure if I'm over riding some other functionality, but I added this:
$data['store_url'] = $order_info['store_url'];
# add the following
if( isset($_SERVER['HTTPS'] ) ) {
$data['store_url'] = str_replace('http://','https://',$data['store_url']);
}
Found in this thread......
viewtopic.php?f=191&t=153203
I tried that many times.
What finally, actually worked was this......
In admin/controller/sale/order.php Find this line:
$data['store_url'] = $order_info['store_url'];
You'll notice it pulls the url from the order, and not from your browsing context.
I'm not sure if I'm over riding some other functionality, but I added this:
$data['store_url'] = $order_info['store_url'];
# add the following
if( isset($_SERVER['HTTPS'] ) ) {
$data['store_url'] = str_replace('http://','https://',$data['store_url']);
}
Found in this thread......
viewtopic.php?f=191&t=153203
Who is online
Users browsing this forum: No registered users and 34 guests