Report bugs for version 1.2.8 here

Enter AlegroCart Bugs Here, but if you're not certain, post in General support first.
radensunan
Posts: 4
Joined: Fri Jun 10, 2011 12:18 am

Re: Report bugs for version 1.2.8 here

Post by radensunan » Wed Jan 02, 2013 1:52 am

leo wrote:Check in /catalog/model/product/model_products.php that you have function get_fdownloads().
May be your file is corrupt, re-upload it and try again.
solved, download from svn and reupload to server

thx

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: Report bugs for version 1.2.8 here

Post by leo » Wed Jan 02, 2013 2:03 am

Check your cart as well:

Code: Select all

Notice: Undefined variable: discount_status in /home/kiosummi/public_html/catalog/template/default/content/cart.tpl on line 140
Re-upload /catalog/controller/cart.php as well.

gob33
Posts: 107
Joined: Wed Apr 07, 2010 3:10 pm

Re: Report bugs for version 1.2.8 here

Post by gob33 » Sun Jan 13, 2013 11:21 am

(Not a bug) Time to update the online demo to 1.2.8 ? And add french language.

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: Report bugs for version 1.2.8 here

Post by leo » Mon Jan 14, 2013 1:57 am

Soon.

Bluesplayer
Posts: 152
Joined: Sun Jan 06, 2013 3:03 pm

Re: Report bugs for version 1.2.8 here

Post by Bluesplayer » Sun Feb 03, 2013 8:35 am

Products With Options

If you have a large number of options on a product, as I have, with over 1 page of options then the pagination is causing problems. When I view page 2 of a product with options and then attempt to load another product with options that doesn't have more than one page of options it will not show any options at all as it is stuck trying to load page 2 of the said product. There is no clear indication what is happening and you can't get back to page 1 which is where the products are.
Last edited by Bluesplayer on Sun Feb 03, 2013 1:45 pm, edited 2 times in total.

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: Report bugs for version 1.2.8 here

Post by leo » Sun Feb 03, 2013 12:40 pm

Thanks. It will be fixed.

User avatar
leo
admin
Posts: 4320
Joined: Sun Dec 13, 2009 8:27 am
Location: Hungary

Re: Report bugs for version 1.2.8 here

Post by leo » Mon Feb 04, 2013 1:13 pm

Brent fixed it. Modify /admin/controller/products_with_options.php:

Code: Select all

function getProduct(){
      $view = $this->locator->create('template');
      
      if($this->request->isPost()){
         $this->session->set('productwoptions.page', (INT)'1');   //Add this line
         $this->session->set('productwo_id', (int)$this->request->gethtml('productwo_id', 'post'));
         $this->response->redirect($this->url->ssl('products_with_options'));
      }

Bluesplayer
Posts: 152
Joined: Sun Jan 06, 2013 3:03 pm

Re: Report bugs for version 1.2.8 here

Post by Bluesplayer » Mon Feb 04, 2013 1:24 pm

Working perfectly :) .

Thanks

Bluesplayer
Posts: 152
Joined: Sun Jan 06, 2013 3:03 pm

Re: Report bugs for version 1.2.8 here

Post by Bluesplayer » Wed Feb 06, 2013 3:46 am

When you are attempting to choose a product with options if you search for it first on the same page (I found nothing for my search as it appears not to work on this page) and then attempt to use the drop down selector it uses the search term again. Confused me for a while as I couldn't select anything as my search was zero. Only when I removed the search term did the drop down selector work.

User avatar
Brent
Site Admin
Posts: 4459
Joined: Sat Dec 12, 2009 3:35 pm
Location: Canada eh

Re: Report bugs for version 1.2.8 here

Post by Brent » Wed Feb 06, 2013 10:28 am

The search was only searching the first field, Product option and the middle field, Model number. I have added the product name field as well. The search in products with options is pretty useless anyway as the product name will always be the same for each entry as they are all based on one product.
Anyway, try this and see if it cures your issue.
Attachments
ProductWOptionsFix.zip
(6.68 KiB) Downloaded 382 times

Locked