Jump to content

jaloise

Members
  • Posts

    1,567
  • Joined

  • Last visited

  • Days Won

    2

jaloise last won the day on April 4 2013

jaloise had the most liked content!

5 Followers

About jaloise

  • Birthday 09/16/1992

Contact Methods

Profile Information

  • Location
    Buenos Aires, Argentina
  • Activity
    Freelancer

Recent Profile Visitors

6,314,343 profile views

jaloise's Achievements

Newbie

Newbie (1/14)

113

Reputation

  1. Me alegro que lo hayas podido solucionar. Recorda cambiar el titulo a SOLUCIONADO Gracias.
  2. You have to edit a TPL. themes\classic\templates\catalog\_partials\miniatures\product.tpl - line 45. {block name='product_name'} {if $page.page_name == 'index'} <h3 class="h3 product-title" itemprop="name"><a href="{$product.url}">{$product.name|truncate:30:'...'}</a></h3> {else} <h2 class="h3 product-title" itemprop="name"><a href="{$product.url}">{$product.name|truncate:30:'...'}</a></h2> {/if} {/block} You have to edit truncate: 30, to the number of characters that you desire.
  3. Buenisimo! Sabia que era algo directamente del servidor. Me alegro que hayas encontrado la respuesta en el VirtualHost. Saludos!
  4. Tal vez este modulo te sirva: https://victor-rodenas.com/2017/04/09/cuanto-falta-para-que-los-gastos-de-envio-sean-gratuitos-en-prestashop/
  5. Muy raro. Si queres por privado pasame el sitio, el acceso al administrador y creame un usuario para ver si puedo ayudarte.
  6. Lo pusiste entre tags de php? <?php $isEnabled = in_array('mod_rewrite', apache_get_modules()); echo ($isEnabled) ? 'Enabled' : 'Not enabled'; ?>
  7. Si, esa respuesta es muy rara. En cualquier servidor esta activo, es una funcionalidad basica y necesaria.
  8. Verifica unos comentarios anteriores que doy otro metodo para verificar si esta activo. Al parecer en tu host no lo esta.
  9. # ~~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> <IfModule mod_env.c> SetEnv HTTP_MOD_REWRITE On </IfModule> RewriteEngine on #Domain: local.prestashop1764.com RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api(?:/(.*))?$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$1$2$3$4$5.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$1$2$3$4$5$6.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6$7.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7$8.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8$9.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9$10.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^local.prestashop1764.com$ RewriteRule ^c/([a-zA-Z_-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # AlphaImageLoader for IE and fancybox RewriteRule ^images_ie/?([^/]+)\.(jpe?g|png|gif)$ js/jquery/plugins/fancybox/images/$1.$2 [L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^.*$ - [NC,L] RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </IfModule> AddType application/vnd.ms-fontobject .eot AddType font/ttf .ttf AddType font/otf .otf AddType application/font-woff .woff AddType font/woff2 .woff2 <IfModule mod_headers.c> <FilesMatch "\.(ttf|ttc|otf|eot|woff|woff2|svg)$"> Header set Access-Control-Allow-Origin "*" </FilesMatch> </IfModule> #If rewrite mod isn't enabled ErrorDocument 404 /index.php?controller=404 # ~~end~~ Do not remove this comment, Prestashop will keep automatically the code outside this comment when .htaccess will be generated again Aca te pongo un HTACCESS LIMPIO de Prestashop 1.7.6.4, lo unico que tenes que hacer es reemplazar local.prestashop1764.com por tu URL. @ivanson7
  10. Pareciera que esta habilitado y que no va por ahi el tema: Otra forma de comprobar si esta ok el rewrite, es crear un archivo PHP con esta informacion. $isEnabled = in_array('mod_rewrite', apache_get_modules()); echo ($isEnabled) ? 'Enabled' : 'Not enabled'; Si te dice ENABLE esta habilitado, caso contrario no. Saludos.
  11. Buenas. Estamos seguros que el rewrite del servidor esta activo? Podrias poner un phpinfo() para ver las variables del servidor.
  12. Buenas por lo que veo tenes algun modulo que te esta indicando las urls sin HTTPS:// Debes corregir eso para que google te empiece a tomar eso con https.
  13. Buenas, Probaste yendo a Parametros de la tienda > Configuracion . Ahi dentro deberias: - Activar SSL Y poner en Si la opcion "Activar SSL en todas las paginas" Espero que te sirva, Saludos.
×
×
  • Create New...