Post by fido-x » Mon Dec 01, 2014 8:03 pm

The following issues are still unresolved in OpenCart 2.0.1.0:

The following reported at viewtopic.php?f=181&t=131683&start=100#p523549
Information Form
In "admin/view/template/catalog/information_form.tpl", line 53 reads:

Code: Select all

<label class="col-sm-2 control-label" for="input-description"><?php echo $entry_description; ?></label>
This label should be language dependent, as follows:

Code: Select all

<label class="col-sm-2 control-label" for="input-description<?php echo $language['language_id']; ?>"><?php echo $entry_description; ?></label>
The following reported at viewtopic.php?f=181&t=131683&start=120#p524806
OpenBay Issues
Breadcrumbs
The breadcrumbs link to the admin home page (dashboard) in "admin/controller/extension/openbay.php" at lines 81, 166, 576, 865 and 1231 all lead to "common/home", as follows:

Code: Select all

$data['breadcrumbs'][] = array(
	'text' => $this->language->get('text_home'),
	'href' => $this->url->link('common/home', 'token=' . $this->session->data['token'], 'SSL'),
);
This returns a "Permission Denied" page, since "common/home" has been replaced with "common/dashboard". Should be changed to:

Code: Select all

$data['breadcrumbs'][] = array(
	'text' => $this->language->get('text_home'),
	'href' => $this->url->link('common/dashboard', 'token=' . $this->session->data['token'], 'SSL'),
);
The same is true for all files in the "admin/controller/openbay/" directory, with the exception of "etsy_shipping.php" and "etsy_shop.php" (which don't use breadcrumbs).

OpenBay Order List
The variable "button_cancel" needs to be defined in "admin/controller/extension/openbay.php" in the "orderList()" function.:

Code: Select all

$data['button_cancel'] = $this->language->get('button_cancel');
Then the "Cancel" button will return to the OpenBay dashboard page.

Language value for variable "text_view" and "text_edit" not defined in the language file (admin/language/english/openbay/openbay_order.php).

Code: Select all

$_['text_view'] = 'View';
$_['text_edit'] = 'Edit';
The following reported at viewtopic.php?f=181&t=131683&start=120#p524996
Amazon Checkout
The "cancel" define in the controller (admin/controller/payment/amazon_checkout.php) at line 139 reads:

Code: Select all

$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token']);
This is in the admin, SSL needs to be stated. Like so:

Code: Select all

$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL');
Secure Trading
The "cancel" define in the controller (admin/controller/payment/securetrading_pp.php) at line 280 reads:

Code: Select all

$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token']);
This is in the admin, SSL needs to be stated. Like so:

Code: Select all

$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL');
The same in "admin/controller/payment/securetrading_ws.php" at line 284.

Web Payment Software
The "action" and "cancel" defines at lines 81 and 83 need to be updated to standard code. Instead of:

Code: Select all

$data['action'] = HTTPS_SERVER . 'index.php?route=payment/web_payment_software&token=' . $this->session->data['token'];
and

Code: Select all

$data['cancel'] = HTTPS_SERVER . 'index.php?route=extension/payment&token=' . $this->session->data['token'];
They should be:

Code: Select all

$data['action'] = $this->url->link('payment/web_payment_software', 'token=' . $this->session->data['token'], 'SSL');
and

Code: Select all

$data['cancel'] = $this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL');
respectively.

AuthorizeNet Sim
Line 17 of admin/controller/payment/authorizenet_sim.php reads:

Code: Select all

$this->redirect($this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL'));
This should be:

Code: Select all

$this->response->redirect($this->url->link('extension/payment', 'token=' . $this->session->data['token'], 'SSL'));
New Issue
HTML Content
The HTML Content module is throwing "Uninitialized string offset 1" errors in the template file. The cause is coming from the controller (admin/controller/module/html.php) at line 99:

Code: Select all

$data['module_description'] = '';
This should be an array not a NULL value string:

Code: Select all

$data['module_description'] = array();

Image
Modules for OpenCart 2.3.0.2
Homepage Module [Free - since OpenCart 0.7.7]
Multistore Extensions
Store Manager Multi-Vendor/Multi-Store management tool

If you're not living on the edge ... you're taking up too much space!


User avatar
Expert Member

Posts

Joined
Sat Jun 28, 2008 1:09 am
Location - Tasmania, Australia

Post by spawacz_rider » Mon Dec 01, 2014 11:17 pm

On Orders page ther is error when i try change the shiping status.


Image

Ther is no error on error.log

Newbie

Posts

Joined
Fri Nov 28, 2014 6:46 am
Who is online

Users browsing this forum: No registered users and 176 guests