Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. Sur la page de vente du module: https://addons.prestashop.com/fr/migration-donnees-sauvegarde/8934-migrationpro-mise-a-niveau-et-migration-prestashop.html?kw=migration pro prestashop&cpn=331862763&gad_source=1
  3. Et là on constate que le mélange Prestashop/Addons/Forum est complet. Pour info, Prestashop SA est une entreprise privée appartenant à MBE Logistics (Italienne) Addons est la plateforme "officielle" de Prestashop SA mais vous pouvez acheter des modules et des thèmes ailleurs, sur les sites des développeurs notamment. Le Forum appartient à Prestashop SA mais n'est animé que par des bénévoles (comme vous et moi), indépendants de l'entreprise Prestashop.
  4. Merci, Mais on les trouve où ces addons C'est affreux pour un néophyte comme moi. Soit disant cela va aller tout seul et c'est loin d'être le cas 1°En pièce jointe la saisie d’écran qui dit que j’ai téléchargé le module de votre addon 2° Puis le répertoire de ce téléchargement 3° L’ouverture de ce téléchargement 4° Le développement des fichiers contenus J’ai regardé dans tous les fichiers, il n’y a aucune url qui permet de faire le lien. Vous avez une idée ? Merci
  5. It's only an SEO issue if it returns that permanently. Yandex doesn't know your planned maintenance, so warns you just in case it's an unintentional event/error From the RFC
  6. It isn't an error, just a warning and it won't affect the working of your store. You can also get these where themes use other php functions such as in_array. Basically the smarty project is removing all the php function wrappers from their code and this is advanced notice that this will happen. If it *really* bothers you, then you can create a smarty modifier plugin as a wrapper, although you'll need to give the modifier a slightly different name and then search and replace them in your theme template files. For example for the php function is_array you can create a new modifier called isarray e.g. create the file <yourtheme>/plugins/modifier.isarray.php: <?php /** * Smarty plugin * * @package Smarty * @subpackage PluginsModifier */ /** * Smarty is_array php wrapper modifier plugin * Type: modifier * Name: isarray * Purpose: check whether input is an array or not and stop those pesky deprecation warnings * Input: * - Object|array: array or object to count * * @param mixed $$mixedInput input array/object * * @return bool */ function smarty_modifier_isarray($mixedInput) { /* * @see https://www.php.net/is_array * Returns true if value is an array, false otherwise. */ return is_array($mixedInput); } You would then search your theme and look for "is_array" e.g. a line like this: {if $product.customizations|is_array && $product.customizations|count} And you need to change it to the new modifier name which is: {if $product.customizations|isarray && $product.customizations|count} Then the warnings will stop (for that particular php function). Just need to repeat the process for any others, creating a modifier as appropriate.
  7. Hello, It is maybe late, but will help some users. In addition to "ps8modules.com" answer, you also need to change the function isCorrectImageFileExt on the "./classes/ImageManager.php" file: After this code: // Filter on file extension if ($authorizedExtensions === null) { $authorizedExtensions = ['gif', 'jpg', 'jpeg', 'jpe', 'png', 'webp']; } Add this: if(!in_array('webp', $authorizedExtensions)){ $authorizedExtensions[] = 'webp'; } Good luck
  8. Nagle przy niektórych stronach zaczął pojawiać mi się błąd HTTP ERROR 500. Z czego może to wynikać ? Pojawia się przy wyborze konkretnej kategorii lub marki na sklepie ?
  9. if ('update' !== $mode && $this->shouldAvailabilityErrorBeRaised($product, $qty_to_check)) { $this->{$ErrorKey}[] = $this->trans( 'The product is no longer available in this quantity.', [], 'Shop.Notifications.Error' ); } found a validation like this in cart controller processChangeProductInCart() function. how is it possible to add the validation for quantity above available quantity in block cart modal popup and checkout page ? any suggestion will be appreciable.
  10. Today
  11. Bonjour, Je souhaiterais afficher les caractéristiques en dessous du nom du produit dans la barre de recherche du module ps_searchbar. Actuellement juste l'image et le nom du produit sont affichés. Auriez-vous une solution ou une piste sur laquelle je pourrais appronfondir ? Merci d'avance
  12. https://yourdomain.ext/prices-drop or https://yourdomain.ext/lg/prices-drop and you don't put in in navigation menu
  13. Merci pour votre réponse. Ok, effectivement je réalise que c’est un tiers qui a empoché les euros. Mais comment le contacter ? Avez-vous une idée ? Merci.
  14. Bonjour, contactez le support du module acheté directement sur Addons, ils seront les plus à même de vous accompagner dans l'utilisation et la configuration de leur module.
  15. Bonjour, Je souhaiterais afficher les caractéristiques en dessous du nom du produit dans la barre de recherche du module ps_searchbar. Actuellement juste l'image et le nom du produit sont affichés. Auriez-vous une solution ou une piste sur laquelle je pourrais appronfondir ? Merci d'avance
  16. Vous êtes sur un projet open source où une communauté participe à sa diffusion et aide bénévolement les autres utilisateurs. Vous achetez un produit sur la plateforme Addons, le support et alors accessible par le biais de leur système de discussion avec le vendeur, ici, nous traitons des éléments de base du projet open source, pas des problèmes des éléments tiers, payants proposés par des veneurs, à eux d'assurer le support de leurs produits puisque ce sont eux qui empoche la monnaie.
  17. Hi Everyone, I am experiencing a File Manager issue where it refuses to open or load. See attached Screenshot. The site is using Prestashop 8.1.4 with PHP 8.1. We have another site using the same PS and PHP on a different host that is not experiencing this issue. I originally had the site on PHP 8.2 however I downgraded it to PHP 8.1 as there were significant speed issues and noticed that 8.2 is not supported. I have noticed that if I turn off the Prestashop Marketplace Backoffice module that it rmeedies the issue - But surely this be having the effect that it is? Any insight or fix is welcome to keep Prestashop Marketplace Back office active will be appreciated.
  18. Dziękuję za pomoc w informacji o aktualizacji sklepu. Sprawdzałem tę opcję, ale niestety nie mam tam możliwości edycji numeru konta bankowego. Wklejam załącznik co mam w panelu:
  19. J'ai une facture de PrestaShop et vous me dites que c'est module tiers que nous ne connaissons pas. Je ne comprends pas
  20. Je l'ai acheté directement chez Prestashop via les module proposé par Market place.
  21. Totally valid and reasonable. The beauty of docker is that you could test your modules/themes with different versions. I do find though that I prefer to exactly match the production site on a staging site (including database version, php version/type and server), even though in theory all the core files should be identical, when working on a single particular site. There are often glitches when say using litespeed on a production server and apache2 on a development site or even just fastcgi vs fpm etc. etc. so it's rare to have a one size fits all scenario! It depends on how "custom" your modules and themes are. Did the store work fine before you imported the database (assuming that you've installed a vanilla copy of 8.1.4 to start and then uploaded the database)? Also which prestashop image are you using? It might be worth just changing the image e.g. from prestashop/prestashop:8.1.4-8.1-fpm to prestashop/prestashop:8.1.4-8.1-apache in your docker-compose file and then restarting (i.e. docker-compose up -d if you're running detached in a terminal). If you've eliminated .htaccess and ssl then it likely comes down to server configuration. Might be worth logging in to the prestashop image on your virtual machine and checking the vhost settings are correct. I run docker on ubuntu server as a separate machine and then connect to it from my workstation with the remote extension for VSCode (plus the extensions for github, docker etc.). Works really well although you need to be careful with file permissions, owners etc. EDIT: Actually it might be worth checking the app/config directory and doing a diff with production. Another reason for redirects can be the language/locale settings but kind of clutching at straws with that.
  22. Là vous parlez d'un module tiers que nous ne connaissons pas. Si vous l'avez acheté il faut ouvrir un ticket auprès de son développeur.
  1. Load more activity
×
×
  • Create New...