Jump to content

Wuisma

Members
  • Posts

    13
  • Joined

  • Last visited

Profile Information

  • Location
    Spain
  • Activity
    Developer

Wuisma's Achievements

Newbie

Newbie (1/14)

8

Reputation

  1. Hello, you can place the images wherever you want but they have to be accessible and you have to put the complete url. So if a manufacturer have the images of the products in his web you can copy the image url and paste it in the .csv file. If you have the images in your computer and it is not accessible from your server you will have to upload the images to your server or any other and paste the image url in the .csv file. I think once you import it will create thumbnails automatically but you can always generate the thumbnails in prestashop only clicking a button.
  2. Hello, try to activate the debug mode of prestashop so you can see ir there are errors. You can also inspect the page using the development tools of Chrome or Firefox.
  3. Hola, normalmente es en la misma carpeta donde se ponen los archivos para la web, de forma que si accedes a la página www.tudominio.com/archivo.html se vea el contenido del archivo de verificación. ¡Espero que esto te sirva de ayuda!
  4. I think that Prestashop 1.6.1 is yet in development so they have not a Beta version. You can download the git version from here https://github.com/PrestaShop/PrestaShop (that's the closest version to 1.6.1).
  5. Hello, try to select "Never clear cache files" on the clear cache option in Advanced Parameters->Performance (you will have to clear the cache manually to see the changes in the back office). I think the problem is that every time you modify something prestashop is clearing the cache... Regards
  6. I had indexing problems in a multishop and the patch I put fixed that. Of course if you have a lot of products you could need more memory and more execution time but that patch fixes a multishop indexing bug, speeds up the search, and reduce the memory usage of the indexing...
  7. Hello, I think you can fix the problem with this: https://github.com/PrestaShop/PrestaShop/pull/2649/files https://github.com/PrestaShop/PrestaShop/commit/88361b546e32ced674b617f1415dbbd53cdf52a3 That changes speed up search indexing, reduce memory usage and fix attribute indexing. Regards,
  8. Hello, I can't see nothing weird, maybe the problem is your browser cache, try to open it in another browser or recharge the page with ctrl+f5. If the problem persist upload a capture a mark the wrong things.
  9. Hello VertNautre, try to use the cleaner module to check the integrity and clean the database, if you have problems yet maybe you can try to truncate the ps_guest table, that worked for me. The other option is to do the update manually... Regards
  10. In .htaccess file you can see this: # ~~start~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again # .htaccess automaticaly generated by PrestaShop e-commerce open-source solution # http://www.prestashop.com - http://www.prestashop.com/forums <IfModule mod_rewrite.c> RewriteEngine on .... .... # ~~end~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again You have to write your added lines before the comments, like this: <IfModule mod_rewrite.c> RewriteCond %{HTTP_HOST} ^domain.com RewriteRule (.*) http://www.domain.com/$1 [R=301,L] </IfModule> # ~~start~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again # .htaccess automaticaly generated by PrestaShop e-commerce open-source solution # http://www.prestashop.com - http://www.prestashop.com/forums <IfModule mod_rewrite.c> RewriteEngine on .... .... # ~~end~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again
  11. Hello, try turning off the friendly urls and then turning on again, it works for me. After that i added the next code into .htacces file to redirect to canonical url: <IfModule mod_rewrite.c> # URL rewriting module activation RewriteEngine on RewriteCond %{HTTP_HOST} ^www.domain.com$ RewriteRule ^(.*)$ http://domain.com/$1 [R=301,L] </IfModule> Change domain.com to your domain.
  12. Hi, first of all sorry for my english, i think that, in some cases, is a problem whith the cookies and the domain configuration (in SEO & URLs). If you observe the cookies using the developer tools of chorme, for example, you can see cookies with two diferents domains with www and without www, so i tray to erase the www. in the domains in SEO & URLs. Now i have only one domian for the cookies and it seem to work without problems.
  13. Buenas, yo he tenido el mismo problema, el carrito no funciona, cuando borras las cookies funciona y al rato deja de funcionar otra vez. Al final observando con la inspección de código de crhome he podido ver que te creaba cookies con dos dominios distintos en mi caso: .dogar.com.es .www.dogar.com.es Si teneis en SEO & URLs el dominio de la forma www.dominio.xxx las cookies se hacen un lío (no sé si es por tema de la programación de las cookies o por problemas de donfiguración), el caso es que al poner el dominio como dominio.xxx parece que soluciona el problema. En resumen: En el backoffice ir a SEO & URLs y eliminar el www. de "Dominio de la tienda" y de "Dominio SSL". Regenerar las urls canonicas. Yo lo he hecho desactivandolas y guardando y luego volviendo a activarlas. (En mi caso he tenido que hacerlo, quizás no sea absolutamente necesario). Espero que sea de ayuda, un saludo.
×
×
  • Create New...