Search the Community
Showing results for tags 'clear'.
-
after a clean installation in the start page of the store there is a problem that can not be quit ... it sends me to the zip installation archive, although it has succeeded .... source code is so .... how can solve this problem ???? <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>PrestaShop installation</title> <link rel="stylesheet" type="text/css" href="index.php?element=css"> </head> <body> <div id="content"> <div> <img id="spinner" src="index.php?element=gif"/> <div id="progressContainer"> <div class="progressNumber">0 %</div> <div class="progress"> <div class="current"> </div> </div> </div> <div id="error"></div> </div> </div> <script type="text/javascript" src="index.php?element=jquery"></script> <script type="text/javascript"> function extractFiles(startId) { if (typeof startId === 'undefined') { startId = 0; } var request = $.ajax({ method: "POST", url: "index.php", data: { extract: true, startId: startId, } }); request.done(function(msg) { try { msg = JSON.parse(msg); } catch (e) { if (String(msg).match("<tittle>PrestaShop")) { msg = "Invalid server response"; } msg = { message: msg }; } if ( msg.error || typeof msg.lastId === 'undefined' || typeof msg.numFiles === 'undefined' ) { $('#error').html('An error has occured: <br />' + msg.message); $('#spinner').remove(); } else { if (msg.lastId > msg.numFiles) { // end window.location.href = 'install/'; } else { $("#progressContainer") .find(".current") .width((msg.lastId / msg.numFiles * 100)+'%'); $("#progressContainer") .find(".progressNumber") .css({left: Math.round((msg.lastId / msg.numFiles * 100))+'%'}) .html(Math.round((msg.lastId / msg.numFiles * 100))+'%'); extractFiles(msg.lastId); } } }); request.fail(function(jqXHR, textStatus, errorThrown) { $('#error').html('An error has occurred' + textStatus); $('#spinner').remove(); }); } $(function() { extractFiles(); }); </script> </body> </html>
-
Hola, Me gustaría saber si alguno tiene el módulo de prestashop: Módulo Eliminar Imágenes innecesarias de productos ¿Qué tal funciona? Estoy pensado en comprarlo, ya que tengo problemas de espacio. Tengo contratados 2GB de disco, y actualmente tengo ocupado 1'73GB. La carpeta de imágenes ocupa: 1306.67 MB Los que probasteis el módulo, ¿notasteis una gran diferencia en el espacio ocupado? Un saludo.
-
While testing we detected that clearing the smarty cache only seems to take effect partially. From this two folders ... /cache/smarty/cache /cache/smarty/compile Only the latter one /smary/compile is empty after hitting the clear cache in the backoffice settings. The folder /smarty/cache remains with all data like ... drwxrwx--x 3 myuser psacln 4096 Jul 31 12:45 blockbestsellers_tab drwxrwx--x 3 myuser psacln 4096 Jul 31 12:45 homefeatured drwxrwx--x 3 myuser psacln 4096 Jul 31 12:45 blockbestsellers_home drwxrwx--x 3 myuser psacln 4096 Jul 31 12:45 blocksocial drwxrwx--x 3 myuser psacln 4096 Jul 31 12:45 blockcategories drwxrwx--x 3 myuser psacln 4096 Jul 31 12:45 blockmyaccountfooter drwxrwx--x 3 myuser psacln 4096 Jul 31 12:45 blockcontactinfos ... Anyone has seem similar effects or knows a work around without deleting the files manually? Feedback is very appreciated.
- 4 replies
-
- incomplete
- delete
-
(and 4 more)
Tagged with:
-
Supprimer les fichiers créés par Smarty compilé. Utile lorsque vous modifiez un modèle et ne reflètent pas les mises à jour.<br/><br/>Télécharger: v1.4 - delete js/css cache v1.5 - compatible PS 1.5.4 - Vous pouvez sélectionner les fichiers à supprimer v1.6- update clear code Visitez notre site pour la dernière version du module et plus modules libre clearsmarty.zip 123.83K 0 downloads V-1.2
-
I have an account with First Data, installed and configured the First Data Module, and entered my credit card info at checkout. When I hit the "validate order" button, my credit card info is cleared, and nothing is submitted to the payment gateway. The following is appended to the url: ?step=3&cgv=1&firstdataError=#firstdata-anchor I called First Data's support line to make sure I was doing everything correctly. They went so far as to successfully submit a test transaction with all my credentials. I found this topic of the same issue, but it's zero help. http://www.prestashop.com/forums/topic/265447-problems-whit-firsdata-gateway-module/ Just like that topic, First Data claimed it's a PrestaShop problem. I understand that thousands are using this module with no issue, so is there a scenario where a unrelated parameter is interfering?
-
Could anybody tell me what happens when clearing cache? Actually I would like to know where the WYSIWYG css is saved (you could edit some css in backoffice for products and cms pages). A normal CMS page is plain text. So if you want to customize it, you have to use the WYSIWYG editor. After clearing cache your css would be gone!!! Maybe it easy to create your own cms.tpl???