Why buggy version is released - and all are ignoring that.

The way the releases are currently handled there will never be a "stable" version release.overthroned wrote:PLEASE INFORM WHEN STABLE VERSION WILL BE READY?
Why buggy version is released - and all are ignoring that.
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.
Code: Select all
[Exception... "<no message>" nsresult: "0x805e0006 (<unknown>)" location: "JS frame :: https://www.mydomain.com/store/admin/view/javascript/jquery/jquery-2.1.1.min.js :: .send :: line 4" data: no]
[Exception... "<no message>" nsresult: "0x805e0006 (<unknown>)" location: "JS frame :: https://www.mydomain.com/store/admin/view/javascript/jquery/jquery-2.1.1.min.js :: .send :: line 4" data: no]
undefined
I tried adding a "setReplyTo" to the email generated, but it did not work.reefland wrote:2.1.0.1 - Fresh Install - no modifications or extensions added, only standard config changes made (store owner, etc).
First thing I tried is the Contact Us page. It works in that:
1) I get the email that a Contact Us was submitted to the store owner email inbox.
2) The "Your Name" field provided in the form is correct in the "From" email location.
3) The body of the email is correct.
However, the "FROM" email address is not correctly set to the "Email Address" field provided in the form. It appears to be set to the Store Email address as well. Thus I can not reply to the Contact Us email as it lacks the visitor's email address (it has the store email address in the Reply instead of the one provided by the customer).
Code: Select all
$mail->setText($this->request->post['enquiry']);
Code: Select all
$mail->setText($this->request->post['enquiry'] . "\r\n\r\nFrom: " . html_entity_decode($this->request->post['email'], ENT_QUOTES, 'UTF-8'));
My OC version is: 2.1.0.1 (upgraded from 1.5.6.4<?php if ($payment_method['terms']) { ?>
Your file catalog/model/payment/?.php is error.sergiubarbu wrote:I get this error: Undefined index: terms in /home/admin/public_html/voucherstore.net/catalog/view/theme/default/template/checkout/payment_method.tpl on line 16
line 16 is :My OC version is: 2.1.0.1 (upgraded from 1.5.6.4<?php if ($payment_method['terms']) { ?>
Any ideea what could be?
Code: Select all
$method_data = array(
'code' => 'cheque',
'title' => $this->language->get('text_title'),
'terms' => '',
'sort_order' => $this->config->get('cheque_sort_order')
);
webbouk wrote:Spelling bug when printing Invoice...
'Shipping Adress' - should read 'Shipping Address'
Where can I find the language file for the 'print invoice' template in order to correct this?
Code: Select all
../admin/language/english/sale/order.php
Full Stack Web Developer :: Dedicated OpenCart Development & Support DACH Region
Contact for Custom Work / Fast Support.
keninorlando wrote:My current version is: Version 2.1.0.1 on Apache
This is how I patched mine to get around this error:
While editing orders in the adming, you'll get an error message like this when viewing an order.
Exception... "<no message>" nsresult: "0x805e0006 (<unknown>)" location: "JS frame ::
Looks like the API user tries to login via HTTP while the browser is in HTTPS
in admin/view/template/sale/order_info.tpl you'll find this line:
$.ajax({
url: '<?php echo $store_url; ?>index.php?route=api/login',
It shows that it's using a variable called '$store_url , which is defined in: admin/controller/sale/order.php
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']);
}
It just checks if you're in SSL mode and swaps the http for https
When I did that everything started working.
Hi, ... thank you for trying. This will not work, or I am not understanding you.daniGo wrote:You can fix this, but the problem is when you add new product, which is already in the order. Which price is now ok, the new or the old and how the cart distinguish the new one from the old. The add function in cart search, if is already there a product with equal data and then insert or update a product. You can separate both with new value to search, but now you have two equal products in the cart, but each product in separate line, because the cart think that is different product
Actually, it does, it's in the DB table 'order_product' where it records the following historic order details:lpecsok58 wrote: OpenCart is not *recording* a *permanent* record of the price paid in the transaction. ... it is a static field which cannot be edited to the correct price paid. ... if so, please advise *where* and how to *lock* that price (price paid) in the transaction.
Export/Import Tool * SpamBot Buster * Unused Images Manager * Instant Option Price Calculator * Number Option * Google Tag Manager * Survey Plus * OpenTwig
Hi, thank you for taking the time to address this.JNeuhoff wrote:
Actually, it does, it's in the DB table 'order_product' where it records the following historic order details:
order_id
product_id
name
model
quantity
price
total
tax
reward
So your problem must be somewhere else. Maybe it's not using this DB table correctly?
Users browsing this forum: No registered users and 20 guests