Page 1 of 1

OpenCart v1.1.9

Posted: Mon Mar 16, 2009 6:22 am
by Daniel
I have release v1.1.9. I plan to release a changelog later.

Changes
Faster Image uploading by removing the dialog box.
Coupon system has been fixed and added some more options.
Order Totals have changed and added low order fee.
Admin form have changed to a different format.

Bug Fixes
There are quite a few bugs fixes.

Upgrading
I'm going to add some instructions later once I have done the changelog.

Re: OpenCart v1.1.9

Posted: Mon Mar 16, 2009 7:09 am
by removed331062
Whewhoo! Thanks :D

Re: OpenCart v1.1.9

Posted: Mon Mar 16, 2009 7:42 am
by mediamagnate
ImageWell done, Daniel. Looking forward to this release.

Re: OpenCart v1.1.9

Posted: Mon Mar 16, 2009 9:10 am
by Nahuel
Excellent! Thanks Daniel

Will the mods that some users made for 1.1.8 still works on this version?

Re: OpenCart v1.1.9

Posted: Mon Mar 16, 2009 7:48 pm
by Daniel
Can everyone redownload the latest version!

I have fixed the install bug.

Re: OpenCart v1.1.9

Posted: Tue Mar 17, 2009 5:08 am
by SparxGroup
Yay, :) Awesome thanks.

How far are we off for the payment modules to be working on the front end! Excuse me being impatient! Its going to be aweeeeesomeeee when PayMate is working. :) O0

Re: OpenCart v1.1.9

Posted: Tue Mar 17, 2009 6:32 am
by DavideSheeley
awesome did this fix the TPL bug and the admin product bug?

Re: OpenCart v1.1.9

Posted: Tue Mar 17, 2009 8:25 am
by Daniel
Yes!

Re-download if your version has this bug.

Re: OpenCart v1.1.9

Posted: Wed Mar 18, 2009 7:51 am
by TheChosenOne
What happened to the "IMAGES" option in the admins Catalog tab ???

Re: OpenCart v1.1.9

Posted: Wed Mar 18, 2009 8:38 am
by Daniel
Its been replaced with a quick upload browser button. I found it cumbersome to upload images and store them in one table.

Re: OpenCart v1.1.9

Posted: Wed Mar 18, 2009 10:38 am
by TheChosenOne
It was a good feature if you wanted to delete and edit existing images but i guess you can do that through FTP.

Also I believe there is an error that occurs when trying to insert a new category, product and manufacturer.

The error that I was getting when trying to insert new product was:
Notice: Undefined variable: product_info in ...public_html/oc7/admin/controller/catalog/product.php on line 469

Warning: Cannot modify header information - headers already sent by (output started at
.../public_html/oc7/admin/controller/catalog/product.php:469) in
.../public_html/oc7/system/library/response.php on line 65
I'm not sure if anyone else was getting these errors, however I got rid of those errors by modifying category.php, manufacturer.php and product.php in "upload\admin\controller\catalog".

For catagory.php (line 202)
changed

Code: Select all

$this->data['image'] = $category_info['image']
to

Code: Select all

$this->data['image'] = @$category_info['image']
For manufacturer.php (line 321)
changed

Code: Select all

$this->data['image'] = $manufacturer_info['image'];
to

Code: Select all

$this->data['image'] = @$manufacturer_info['image'];
For product.php (line 469)
changed

Code: Select all

$this->data['image'] = $product_info['image'];
to

Code: Select all

$this->data['image'] = @$product_info['image'];

Im not sure if what I did was correct (as i just started with php), however it seems to be working properly now.

Re: OpenCart v1.1.9

Posted: Wed Mar 18, 2009 11:03 am
by Daniel
i'll release an update tomorrow

Re: OpenCart v1.1.9

Posted: Wed Mar 18, 2009 11:33 am
by TheChosenOne
Also its having problems accepting gif and png images as i get the error "ivalid image type!"

I've worked out how to get it to accept gif images (modifying images.php in ..upload/admin/controller/catalog line 39), however I cant yet work out how to get png images accepted. If you could also fix that problem, it would be great.

Thanks

Re: OpenCart v1.1.9

Posted: Mon Mar 23, 2009 8:15 pm
by foxyred
Hi daniel, seems like the coupon system is not working properly. Customer is able to reuse the same coupon code even it already configured to use for only once and only for 1 customer.
I have checked on the database side, seems like there is no data being inserted into the coupon_redeem table. My coupon_redeem table are still empty after I tried several orders to test it out, all the orders are reached at the Success order page.
From front-end, there is no any error message occured, everything runs just fine.

Re: OpenCart v1.1.9

Posted: Mon Mar 23, 2009 10:10 pm
by Daniel
how are you testing?

Are you using COD?

Do you have a link to your site?