Jump to content

romper

Members
  • Posts

    17
  • Joined

  • Last visited

romper's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Hello, I try to import products with absolute images url paths. I have a few images per product so I separate urls by comma. Unfortunately csv importer cut too long paths when I have more than around 300 characters for urls. How to increase max length of values that csv importer accept. Maybe I can change properties of image table in sql database ?
  2. I solved my issue. If you want to transform your category and subcategory tree into csv import format , you should use slash / to specify dependencies between your category and subcategories. If you have more than one category, you should separate them by comma. So my csv import category table looks like this: Backpacks/Bicycle backpacks, Backpack/Bags, Travel/Bags
  3. Hello, I import products through CSV import and it works great. However I can not import multiple categories and its subcategories. I have following tree of categories and subcategories that one of my product belongs to. Backpacks (main category) Bicycle backpacks(subcategory) Backpacks (main category) Bags(subcategory) Travel (main category) Bags (subcategory) In my .CSV file I refer to this category tree in this way: Categories (x,y,z...) Backpack, Bicycle backpacks, Backpacks, Bags, Travel, Bags. CSV importer links some but not all categories and subcategories with a product. How to solve it. How can I match all categories and subcategories with a product. Thank you,
  4. How can I switch type of the selling item from "Product" into "Virtual Product" and upload a file so that a customer who has paid for the item marked as "product" ealier can download it now after the change. What link should I provide to customer or what message to send to allow my customer download file that it was ordered by him? In other words: 1. customer paid for the itme defined as a "product" 2. I change status of the item into "virtual product" 3. and upload associated file. 4. how can customer download the file after this change ? I know it is messy but I imported my downloadable items with csv import tool. And I didn't know how to define in csv file that all items are virtual products.
  5. Hello, I add products to my store using CSV import. After importing I get the same friendly url for each language. In my database, in ps_lang table, I have the same link_rewrite for each language. CSV import script ignores different URL. How to fix it.
  6. I gave up and installed successfully new version of prestashop on other server and then I moved files and database of the store to my dedicated hosting.
  7. The second option works for prestashop 1.5.3.1. It is really confusing why the newest release appears with this bug.
  8. I try to install prestashop 1.5.3.1 on my dedicated server from OVH. However I am not able to finish it becasue in the last step of installation process I experience create database table error. I get message that as it can be seen on attached screen. The installation progress bar gets to 13 % and then stops with an error message. I also use debug from prestashop that shows information that: and then after refreshing site in a few minute later it creates another error message : Any help is much appreciated.
  9. Hi, I have prestashop 1.4.5.1 and insert products into my store through CSV import. I have Friendly URL enable and import different urls into URL rewritten field for each language. However after importing my urls are the same for all language versions. So for example .../en/category_name/product_name.html .../it/category_name/product_name.html I can change url names in my database in ps_product_lang table in link_rewrite field. But I have too many products to modify database manually. How to solve this?
  10. Hi, I try to import categories with the same name but with different descriptions in each language. On import site there is information that "the category import does not support multiple categories with the same name." My question is how to import categories with the same names but with different description, meta tags and urls. Thank you for any answer.
  11. I can not import products from a csv file due to exceeding reference length. After importing I have error message that: product (ID 2) Cannot be saved Product -> reference Length 32 How to change length of characters for reference field to 255. Does such modification slow down a store.
  12. I am also interested in how to export customer data. I need to move customers from 1.3.6.0 to 1.4 version.
  13. I have just installed prestashop 1.4.2.5 and imported my products into store database. Because in my catalog I have only downloadable products I disabled stock movement, allowed ordering out-of-stock product and have 0 quantity for each product. My problem is that "add to cart" button on product listing doesn't show. I have only "view" button but still can make a purchase on product site. I was managed to "add to cart" button make visible again by setting minimal_quantity in ps_product table from 0 to 1. However I can not apply this to every products manually since I have too large database.
  14. Hi, I solved it in this way. 1/ To get rid of blank page and see error message, I modified line 4 in /config/config.inc.php from ini_set('display_errors', 'off') to ini_set('display_errors', 'on'); 2/ After refreshing my new admin site I saw the following errors: 3/ To refresh cache I added following snippet above 21 line in header.inc.php in my admin folder echo dirname(__FILE__); so it looked like this: echo dirname(__FILE__); require_once(dirname(__FILE__).'/init.php'); 4/ After refreshing my admin site the following error was displayed to me: 5/ I removed previously added echo dirname(__FILE__); from header.inc.php in the admin folder. And now it works. I can enter into my admin page. 6/ I set ini_set('display_errors', 'on'); to off again.
×
×
  • Create New...