Jump to content

tamara_gl

Members
  • Posts

    22
  • Joined

  • Last visited

Profile Information

  • Activity
    Other

tamara_gl's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. Hola, he leído todo el hilo y la guiía pero yo sigo con la web que va lenta: He conseguido que a veces me vaya un pelín mas rápida, pero solo a veces :S con todo desactivado, y activando solo cache por fichero y optimización de apache. Lo demás todo desactivado porque me genera problemas. El css se desmonta si activo su CCC y si activo la cache de smarty genera errores 500 q se solucionan haciendo f5, pero no es la solución :S Me gustaría saber vuestra opinión sobre: ¿Que opciones tenéis activadas y cuales desactivadas? ¿Cache con sistema de ficheros o memcache? Alguien nota mejora con memcache? ¿Habéis desarrollado algún sistema de optimización o cache por vuestra cuenta? ¿Habéis instalado un módulo para mejorar el rendimiento? Actualmente tengo un prestashop 1.5.3 y funciona en modo multishop y me va lentísima la web. Ahora mismo estoy valorando cambiar de servidor y pasarme a un VPS en lugar del servidor compartido que tengo actualmente. ¿Que tipo de servidor utilizáis? Que características tiene? Gracias por vuestra ayuda!
  2. Hola, he leído y comprobado que muchas de las opciones de Rendimiento de prestashop no son del todo compatibles o no funciona correctamente cuando usas ajax. Por ejemplo la cache de Smarty o la compresión de HTML, el css se vuelve loco... Con la cache de smarty las páginas que se recargan por primera vez siempre dan error, tienes que hacer f5 para que funcionen.. he leído sobre algunos temas y la solución que siempre se propone es desactivar las opciones. Entonces como optimizáis vuestras webs? Me gustaría saber vuestra opinión sobre: ¿Que opciones tenéis activadas y cuales desactivadas? ¿Cache con sistema de ficheros o memcache? ¿Habéis desarrollado algún sistema de optimización o cache por vuestra cuenta? ¿Habéis instalado un módulo para mejorar el rendimiento? Actualmente tengo un prestashop 1.5.3 y funciona en modo multishop y me va lentísima la web. Ahora mismo estoy valorando cambiar de servidor y pasarme a un VPS en lugar del servidor compartido que tengo actualmente. ¿Que tipo de servidor utilizáis? Que características tiene? Gracias por vuestra ayuda!
  3. Hi, I'm building a prestashop multi shop and I don't find how can I organize products into categories so that from a store productos can not see another store products. For example if I change the URL of a product, and change the ID of a product from another store shows me that product and this product is from other shop. You have to create a root category for each store? Currently, I have a root category and many categories. By store I select which categories form the store. But all these categories have in common the root category. Anyone have experience with prestashop Multishop option and can give me tips to prevent products can be viewed from other stores manipulating the ID of the URL? Thanks.
  4. He visto que tenéis varios productos, creo que el necesito yo es este: http://www.quixoteho...confproduct&i=1 El producto es de 11€ pero luego tiene un complemento "Instalación Módulo - Instalción y configuración de Módulos para Prestashop (17.00 € Una vez)". Pero que es exactamente? Con el módulo de 11€ no se podría instalar en Prestashop? Si una vez lo compro, luego no quedo satisfecha se devuelve el dinero?
  5. Hola, estoy interesada en comprar un módulo de CECA. Y he visto que hay muchos y de diferentes precios. Me ha interesado uno en especial por su descripción. Me gustaría saber si el tuyo tiene también estas opciones(http://addons.prestashop.com/es/pagos-prestashop-modulos/4907-virtual-pos-ceca.html): Opciones : Podrá decidir si desea que el formulario de pago se integre dentro de su tienda (modo incrustado) o si prefiero que se muestre en otra página (modo página nueva) Decida cuando quiera pasar de el entorno de pruebas a producción (o real) y viceversa Además dais soporte enn caso de dudas? o si se localiza un bug? Necesito el módulo para un prestashop 1.5.3.1 multitienda Puedo utilizar la TPV para todas mis tiendas? Gracias!
  6. Thanks, i found a solution in my theme: in shopping-cart.tpl of my theme I have to add this id in td tag. <td class="price" id="total_price"> {displayPrice price=$total_price} </td> And works!
  7. Can you explain how? I have the same problem.
  8. Ok, after studying the flow of how indexes prestashop products, I have the following conclusion: In classes / search.php We use the following method: protected static function getProductsToIndex($total_languages, $id_product = false, $limit = 50) { // Adjust the limit to get only "whole" products, in every languages (and at least one) $max_possibilities = $total_languages * count(Shop::getShops(true)); $limit = max($max_possibilities, floor($limit / $max_possibilities) * $max_possibilities); return Db::getInstance()->executeS(' SELECT p.id_product, pl.id_lang, pl.id_shop, pl.name pname, p.reference, p.ean13, p.upc, pl.description_short, pl.description, cl.name cname, m.name mname FROM '._DB_PREFIX_.'product p LEFT JOIN '._DB_PREFIX_.'product_lang pl ON p.id_product = pl.id_product '.Shop::addSqlAssociation('product', 'p').' LEFT JOIN '._DB_PREFIX_.'category_lang cl ON (cl.id_category = product_shop.id_category_default AND pl.id_lang = cl.id_lang AND cl.id_shop = product_shop.id_shop) LEFT JOIN '._DB_PREFIX_.'manufacturer m ON m.id_manufacturer = p.id_manufacturer WHERE product_shop.indexed = 0 AND product_shop.visibility IN ("both", "search") '.($id_product ? 'AND p.id_product = '.(int)$id_product : '').' LIMIT '.(int)$limit ); } In this method my variables have these values​​: $limit = 50; $max_possibilities = 112; After that: $limit = max($max_possibilities, floor($limit / $max_possibilities) * $max_possibilities); My $limit = 1. And then, the follow query have a LIMIT 1. And get a products only with first id_lang (id_lang = 1). If the limit is 4 get 4 a product with 4 languages. Is a bug? or something in my database is wrong?
  9. I think I found the error. I need the solution. The error is that ps_search_word table just have the id_lang = 1. Is there an option in prestashop indicating that indexes in all languages​​?
  10. Hi, I tried change patterns of url of prestashop in Preferences>SEO and URL in section "URL Format". And for example I want change format of CMS url: original:content/category/{id}-{rewrite} new format: contentblablabla/category/{id}-{rewrite} And yes, prestashop save this change but don't work with new url, only works with original url. And if i change dispacher file: 'cms_category_rule' => array( 'controller' => 'cms', 'rule' => 'content/category/{id}-{rewrite}', 'keywords' => array( 'id' => array('regexp' => '[0-9]+', 'param' => 'id_cms_category'), 'rewrite' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_keywords' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), 'meta_title' => array('regexp' => '[_a-zA-Z0-9-\pL]*'), ), ), then works! Is it a bug? Somebody can change pattern url from BackOffice? Thanks! UPDATE: Solution: http://www.4webs.es/blog/bug-prestashop-1-5-url-amigables-solucion-en-la-1-5-3-1
  11. Thanks Nemo1, I read this post looking for Google. But the idea of ​​creating a module not seen totally right. In addition to creating my page I want to assign a completely new URL without any pattern. This post was my plan B in case of not succeeding developing my controller. For now I solved it by creating a new controller and the dispatcher set up the url for that new controller. (I'm still developing all my controller options). If I'm not satisfied with my final solution, I'll use the solution posed in the articles. Thank you very much for the help Nemo1!
  12. Hello, I want to create a new page in prestashop. Exactly a new type page. This type of page will display a text and a list of specific products with specific feature. I have seen in "SEO and URL" page types exist and can create new pages from another page. I have also seen that in the database tables are related to these pages: ps_page ps_pagenotfound ps_page_type ps_page_viewed Someone has already created a new page? Can explain me that what files I have to create and what things I have to change in the database? Thanks!
  13. Yes, both tables have data search_index: ~20,827 rows search_word: ~2,811 rows
×
×
  • Create New...