Page 3 of 4
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Mon Mar 15, 2010 6:02 am
by MatthewMN
Daniel, I just wanted to verify you received the PM we talked about. I understand you are a busy man and may just have not had time to address it yet.
Re: [1.4.3] Zones Are Being Added Turkish Character Error
Posted: Mon Mar 15, 2010 7:28 am
by Daniel
eka7a wrote:
Zones Are Being Added Turkish Character Error
admin\model\localisation\zone.php find
Code: Select all
public function addZone($data) {
$this->db->query("INSERT INTO " . DB_PREFIX . "zone SET name = '" . $this->db->escape(htmlentities($data['name'])) . "', code = '" . $this->db->escape($data['code']) . "', country_id = '" . (int)$data['country_id'] . "'");
$this->cache->delete('zone');
}
public function editZone($zone_id, $data) {
$this->db->query("UPDATE " . DB_PREFIX . "zone SET name = '" . $this->db->escape(html_entity_decode($data['name'])) . "', code = '" . $this->db->escape($data['code']) . "', country_id = '" . (int)$data['country_id'] . "' WHERE zone_id = '" . (int)$zone_id . "'");
Replace
Code: Select all
public function addZone($data) {
$this->db->query("INSERT INTO " . DB_PREFIX . "zone SET name = '" . $this->db->escape($data['name']) . "', code = '" . $this->db->escape($data['code']) . "', country_id = '" . (int)$data['country_id'] . "'");
$this->cache->delete('zone');
}
public function editZone($zone_id, $data) {
$this->db->query("UPDATE " . DB_PREFIX . "zone SET name = '" . $this->db->escape($data['name']) . "', code = '" . $this->db->escape($data['code']) . "', country_id = '" . (int)$data['country_id'] . "' WHERE zone_id = '" . (int)$zone_id . "'");
wow. i did not even remeber adding that htmlentities function there.
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Mon Mar 15, 2010 1:34 pm
by grgolf
I'm having a problem with image manager. I'm unable to add images or add my logo for the second store with multi store. It just keeps thinking when trying to add a new image.
Thanks,
Geoff
OpenCart v1.4.3
Posted: Mon Mar 15, 2010 5:44 pm
by AmaruL
Nice work whit this version but i have a litle problem, how can i fix when i try to enter my site whit
www.mysite.ro it is enter on my shop and when i type mysite.ro and im enter it is on a shop blank, how can i fix this to enter myshop when i type www or non www?
Thanks, and good look an future,
Peace and Love,
Regards from Romania

Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Mon Mar 15, 2010 7:18 pm
by Daniel
can u post the actually link to your site.
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Mon Mar 15, 2010 9:00 pm
by AmaruL
i have resolved the problem whit my www and non-www i modify my .htaccess file.
THanks
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Mon Mar 15, 2010 9:18 pm
by i2Paq
AmaruL wrote:i have resolved the problem whit my www and non-www i modify my .htaccess file.
THanks
What did you put in?
OpenCart v1.4.3
Posted: Mon Mar 15, 2010 11:11 pm
by fatpora01
this is the error i get when trying to send a mail off the site and it sends it but the image doesnt go through and get this error
Notice: Undefined index: DOCUMENT_ROOT in C:\Inetpub\vhosts\studentcabs.co.za\httpdocs\admin\controller\sale\contact.php on line 63
Re: OpenCart v1.4.3
Posted: Tue Mar 16, 2010 1:01 am
by Daniel
fatpora01 wrote:this is the error i get when trying to send a mail off the site and it sends it but the image doesnt go through and get this error
Notice: Undefined index: DOCUMENT_ROOT in C:\Inetpub\vhosts\studentcabs.co.za\httpdocs\admin\controller\sale\contact.php on line 63
what server software are you using?
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Tue Mar 16, 2010 1:04 am
by Daniel
In php.ini: doc_root = "c:/Inetpub/wwwroot/PHP_Stuff"
(This is the same root as my website (IIS5) too)
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Tue Mar 16, 2010 1:42 am
by audiomarket
In the configuration options of the store set your status on the products available.
When you're on the page to enter the new product, the status of the product does not match the set.
Maybe it's just my mistake but I suggest you check if there really is a bug.
Regards
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Tue Mar 16, 2010 1:48 am
by Daniel
there are 2 settings for for displaying the stock status. one actually dispals how much stock there is and another is the stock status message when the product runs out of stock.
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Tue Mar 16, 2010 3:40 am
by audiomarket
Ok, Thenks
But the interface in option product is normal it?
bug option.png (24.43 KiB) Viewed 6256 times
I dont know to add option value
I'm very confuse
Regards
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Tue Mar 16, 2010 4:00 am
by Qphoria
Yes it was a very bad design change and extremely confusing. I'd bring back to old method.
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Tue Mar 16, 2010 4:18 am
by audiomarket
The procedure to insert the options is complicated.
I find it very difficult and the result on the shop does not match what I wanted to include as an option
Despite my ability to manipulate the code, this time I'm in dark chocolate.
I hope that the next version 1.4.4, maybe in a couple of days, addresses, and facilitates the insertion of the options.
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Tue Mar 16, 2010 4:29 am
by Qphoria
1.4.4 is already out and no it won't change the options.
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Tue Mar 16, 2010 11:16 am
by rph
Guess I don't see the issue with it. Options have been that way since 1.4.0. And it's definitely clearer and more slick looking than the 1.3.4 method. Just type in the name of the option (say, size), click Add Option, then give it values (small, medium, large) and any other settings you want.
The only thing I'd change about it is putting the add button on an empty row like with discounts to eliminate the chance of lost rows.
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Wed Mar 17, 2010 2:07 am
by Daniel
I can change how options work. i did not realise it was a bad design choice.
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Wed Mar 17, 2010 2:43 am
by dbstr
Daniel wrote:I can change how options work. i did not realise it was a bad design choice.
please do =)
Re: Post OpenCart 1.4.3 Bugs Here!
Posted: Wed Mar 17, 2010 3:08 am
by muflon
Daniel wrote:price with tax is already implemented!
Yes but I mean something other. On admin rutes sale/order/update and sale/order/invoice in products area could you add two collumns "Unit with tax" and "Total with tax" after collumn "Total" in each product. I think it is easy to implement and it is required in some middle europe countries (Slovakia Czech...). Thank you very much