Jump to content

moy2010

Members
  • Posts

    337
  • Joined

  • Last visited

  • Days Won

    1

moy2010 last won the day on October 28 2023

moy2010 had the most liked content!

3 Followers

Profile Information

  • Activity
    Agency

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

moy2010's Achievements

Newbie

Newbie (1/14)

92

Reputation

5

Community Answers

  1. Hi, PS community. I'm facing some performance issues due to the ammount of features that the product page loads on the backoffice. The issue is with all the data called for the features tab. I've done some research, and the function that makes all the SQL queries is initFormFeatures() from the AdminProductsControllerCore class. In previous versions of PS this function was called from features.tpl, but I can't see that call anymore in PS 1.6. Can anyone please guide me on where's this function called from and, if it's possible to call it with an event listener (click)? Thanks in advance.
  2. This issue is indeed affecting only newer versions of Prestashop. Will give 1.6.1.16 a try and let you know.
  3. You have quite some images, Justine. Try setting them as background images for your elements using CSS, and then combining them into a sprite. This will reduce the total number of requests done to your website and, hopefully, the total images' size.
  4. I just found these PHP functions for auto-cropping images' background: http://php.net/manual/en/function.imagecropauto.php These could help us save some KB in total pageload size and improve our prestashop stores.
  5. Hi, flo62134. Indeed there are multiple explanations for a miss with varnish cache as you said. Varnish cache works with objects and it's based on urls, so that if you call the same object from multiple urls you will have duplicated objects in your cache. In my case, I had to normalize all my urls prior to achieving a high hitrate in varnish. A common example is to redirect all www.yoursite.com traffic to yoursite.com or the other way around. If your varnish sits behind your web server, you'll have to make the redirections on varnish, otherwise it may always have a miss on the first request. In conclusion: Check the first request in terms of objects and urls. If you find what's different between the requested and the cached object you'll find what the problem is.
  6. If you want cheap hosting for prestashop, give it a try to One & One.
  7. I was reading that PHP 5.5 already has a webp image generator, and the code to do it is as follows: $imgName = "codingslover.jpg"; $webPName = "codingslover.webp"; Syntax: cwebp [quality qualitypercentage] [source image] -o [destination] exec("cwebp -q 0 ".$imgName." -o ".$webPName." "); Anthor Method: exec("convert -colorspace RGB ".$imgName." ".$webPName . " "); Could this be used to auto generate webp thumbnails using the function protected function _regenerateNewImages from AdminImagesController.php aside from the .png or .jpg default ones? Unfortunately it seems that webp support in prestashop is stagnated :/
  8. ¿Ya has visto el tema de crear un módulo para facturación, Cotoko?
  9. moy2010

    angry

    Did you get any help from prestashop, albarelys? I opened a support ticket since the developer is unsupportive, and they have not replied in almost a week: https://www.prestashop.com/forums/topic/549348-prestashop-addons-support-policy-is-a-lie/
  10. It just appeared. Previously this column was only available at the backoffice's home tab displaying prestashop news. NVM, just noticed an "X mark" button to close the help .
  11. Hi, Prestashop Community. There's a new annoying prestashop help column at the far right side of every page that suddenly appeared on my prestashop's backoffice. Does anybody know if there's a way to disable it? Thanks in advance.
  12. With the background css property: background: url ()...
  13. Right now Varnish isn't compatible with mod_pagespeed. You have to use plain apache/nginx or a mix of these as your server's backend.
  14. Then check the url of a static content such as an image with this website: http://www.isvarnishworking.com/ Also check that your expires or cache-control headers are properly set.
  15. I'm not using it, I use Advanced Search 4 instead and everything works fine .
×
×
  • Create New...