Jump to content

spvinky

Members
  • Posts

    4
  • Joined

  • Last visited

spvinky's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I just got a chance to try 1.7 Alpha 3. I have PHP 5.3.13. I am installing Prestashop now, I am getting incompatibility issue with Array initialization in multiple places. for example, in install.php @ 768 $blacklist = [ 'productcomments', 'blockwishlist', 'sendtoafriend', 'onboarding' ];
  2. i am creating new product using this code $product = new Product(); $product->ean13 = 9999999999999; $product->name = array((int)Configuration::get('PS_LANG_DEFAULT') => 'Test importu');; $product->link_rewrite = array((int)Configuration::get('PS_LANG_DEFAULT') => 'test-importu'); $product->id_category = 2; $product->id_category_default = 2; $product->redirect_type = '404'; $product->price = 22; $product->quantity = 1; $product->minimal_quantity = 1; $product->show_price = 1; $product->on_sale = 0; $product->online_only = 1; $product->meta_keywords = 'test'; $product->is_virtual=1; $product->add(); but can'not created Product image and download link for virtual (download) product by using code
×
×
  • Create New...