Jump to content

troyrob

Members
  • Posts

    75
  • Joined

  • Last visited

1 Follower

Profile Information

  • Activity
    Agency

troyrob's Achievements

Newbie

Newbie (1/14)

12

Reputation

  1. You can also try this module. It's beyond me why the CSV import hasn't been turned into an AJAX function before now. There are several simple quality of life functions that the Prestashop developers could pursue but don't bother. https://codecanyon.net/item/prestashop-import-product-with-csvexcel-module/12234453
  2. How do i check what version of Jquery my store is using? I'm having a problem with a module and the dev is giving me the runaround about Jquery version. When i check the js/jquery folder of my store i'm seeing jquery-1.11.0 . That seems kind of old to me. Is that the correct version for PS 1.6.1.1 ? Kindest regards
  3. I use the cloudways digital ocean 1Gb server. Although that's not probably necessary for a lot of stores. I have lots of scripting and whatnot going on in the backend (couple other mysql databases etc). But you can certainly try the 512Mb server on digital ocean and see how that scales and just clone/migrate your store to a bigger instance.
  4. Not sure how long this has been happening, been working on some other projects. But I've been getting a fatal error on my project pages (the rest of the store is fine just product pages). I've enabled deugging but am not getting any clear answers and the result is too long to post. Please see here: This is happening for every product page, backoffice is fine as well as rest of frontoffice: (Upgraded wishlist block and problem disappears)
  5. I use cloudways personally. I've been very impressed with the speed of their prestashop hosting.
  6. Ok so i run an online lingerie store. I have set up product and combination import files for my products. I have a problem that might be particular to my specific use case. Let's take a hypothetical Brassiere. It may come in 10 colors and 15 sizes. That's 150 different combinations. But there are only 10 colors. If i create a combination file with the product images what happens is that the same image is downloaded and applied 15 times for each color. This increases import time and storage required by a factor of 15. My import file has >50,000 rows so this isn't really a trivial amount. What i'm looking for is a modification to the combinations import that won't upload the same product image url multiple times for the same color attribute. Attached you will find some import example files. supplier1_combination_export_27-08-14.zip
  7. Livezilla free for one user. Then you pay a low (ish) one time free to add more users. http://www.livezilla.net/home/en/ All that you ask + more
  8. Ok so i run an online lingerie store. I have set up product and combination import files for my products. I have a problem that might be particular to my specific use case. Let's take a hypothetical Brassiere. It may come in 10 colors and 15 sizes. That's 150 different combinations. But there are only 10 colors. If i create a combination file with the product images what happens is that the same image is downloaded and applied 15 times for each color. This of course increases the combinations import time significantly as well as storage requirements for the store. I'm wondering if there's a better way or if i should make a forge request or if i should look for a developer to pay them to modify prestashop's CSV import process. Has anyone encountered this problem before? (attached you will find an example of the combination file) supplier1_combination_export_24-08-14.zip
  9. I will give this a try, thanks! And what about products on sale? What parameter would i use for those?
  10. Hi there, I am trying to modify the RSS Feeder module to display either products on sale or new products instead of Home Featured products. Anyone have an idea of how to do that? Thanks in advance
  11. One thing you can check, do you have many problems in the "Home" category? I made the mistake of putting a few hundred products in the home category once, slowed the frontpage of my site wayyyyyyyy down.
  12. Ok so this section? : if (is_array($image) AND sizeof($image)) { $imageObj = new Image($image[0]['id_image']); echo "<![CDATA[<img src='".$link->getImageLink($product['link_rewrite'], $image[0]['id_image'], 'atmn_normal')."' title='".str_replace('&', '', $product['name'])."' alt='thumb' />"; $cdata = false; } I would echo $image[0] and iterate i.e. $image[1], $image[2] etc? Also, how would i modify the same file to display sale items instead of new products. $id_category = ((int)(Tools::getValue('id_category')) ? (int)(Tools::getValue('id_category')) : Configuration::get('PS_HOME_CATEGORY')); I assume that PS_HOME_CATEGORY neets to change, would it be PS_SALE_CATEGORY ?
  13. Hi, I was thinking about the RSS feeder module, by default it returns the default image for a product. Would it be possible to return all images for a product? Where would i begin modifying?
  14. I had the same problem one. What i found solved my problem was to disable filesystem caching. Found under: Advanced Parameters -> Performance Disabling cache completely took my website from 50s page loads to 4s (very counter intuitive i know)
×
×
  • Create New...