Jump to content

eliasRafa18

Members
  • Posts

    6
  • Joined

  • Last visited

Contact Methods

Profile Information

  • First Name
    Elias Rafael
  • Last Name
    Rodelo

Recent Profile Visitors

165 profile views

eliasRafa18's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hi people; I do have a simple question: Why there is many tables for a single object?. I mean, for example; for the products there are more than 3 tables that contain info about a single product. Why don't just mess it at only one table. I know that there is information that for good practice doesn't should be in the same table, it doesn't must be mixed with the other like the attributes of the product. It´s not a critic to Prestashop, because I think that Prestashop is the best CMS of online store for little and medium merchants. I just wanna know why.
  2. Hello, everyone! Well, I think that I'm very explicit on my title... I want to know if my installation of Prestashop is working with PHP7, but than know that also want to know how to prove that it is really working. PD: it's on localhost! so, I don't have how to show de site.
  3. Hola! @Bomberkael, ¿ya pudiste solucionar el problema con tu sitio?, yo tengo ese problema ahora con mi sitio y ya he intentado de todo y el problema aún persiste. @tuk66, aún con la configuración de .htaccess, mi sitio sigue igual, ¿que más puedo hacer?, ¿que otra configuración tengo que mirar? @ruk66, still with your .htaccess file my site is the same. ¿What else can I do?, ¿What other set uo do I have to look? Como dato adicional, esto solo sucede con el home, con el resto del sitio no tiene problemas. Este es es el enlace a mi sitio. PD: Uso PS 1.6.1.4 y este mi archivo .htaccess # ~~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 RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] 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] 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] 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] 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] 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] 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] RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] 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/x-font-woff .woff <IfModule mod_headers.c> <FilesMatch "\.(ttf|ttc|otf|eot|woff|svg)$"> Header add 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
  4. Buena tarde Comunidad; Hoy estuve tratando de configurar el NO-www a WWW, es decir, midominio.com a www.midominio.com y para eso estuve buscando en la Red par ver como lo hacía, entonces encontré que esto se podía realizar con el archivo .htaccess y unas cuántas instrucciones, pero vaya sorpresa me encontré cuando veo que ese archivo tenía un poco de lineas y vi que eran generadas por PS, luego puse mis tres lineas debajo de RewriteEngine on, por que en mi ejemplo vi que también tenía esa instrucción: # ~~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 #Mi linea 1 #Mi linea 2 #mi linea 3 #Domain: digitalcenter.com.co RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api$ api/ [L] RewriteRule ^api/(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteRule ^([0-9])([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$2/$1$2$3$4.jpg [L] 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] 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] 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] 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] 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] 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] RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] 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/x-font-woff .woff <IfModule mod_headers.c> <FilesMatch "\.(ttf|ttc|otf|eot|woff|svg)$"> Header add 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 Luego guardé el archivo, lo subí al servidor, y recargué la página, y he aquí el problema; el navegador me dice: Bueno, me dije a mi mismo, no todo está perdido, aún puedo regenerar el archivo .htacces, lo regeneré y luego volví a abrir el sitio, y aún sigue con el mismo problema. Lo más extraño es que es sólo en el index del sitio, es decir, en https://digitalcenter.com.co, por que por ejemplo si voy https://digitalcenter.com.co/content/20-terminos-y-condiciones- entra sin problemas. He buscado más en la Red acerca de este problema, y todos dicen lo mismo, que hay que regenerar el archivo .htaccess y ya eso lo he hecho, en multitienda, sin multitienda, he eliminado el .htaccess lo he creado en blanco, lo he subido y lo he vuelto a regenerar y aún el problema persiste. Por favor, ¿hay alguien que me pueda ayudar con este problema?. De antemano, agradezco que se hayan tomado el tiempo de leer esto y si tienen alguna respuesta les agradezco muchísimo.
  5. Buenas noches; Este es mi primer topic en la comunidad, me parece espectacular este espacio. Espero me puedan ayudar. Hay que aclarar que esto es válido sólo para Colombia. Necesito habilitar el campo de CC (Cédula de Ciudadanía o en o que en España se conoce como DNI, creo) en el Formulario de Registro de Usuarios, ¿cómo lo hago?. He intentado en Zonas -> Países -> Editar: Colombia y modificar el formato de dirección, activar la opción de que me pida el NIT en la dirección, pero no es lo que necesito. He modificado en Preferencias -> Clientes y le he agregado B2B pero me agrega, en el formulario de registro, campos que no son necesarios, y además con identificaciones de otros países. Realmente es necesario para mi tienda poder agregar este campo en el formulario de registro. De antemano, agradezco cualquier sugerencia o instrucciones que me puedan dar. Quedo atento.
×
×
  • Create New...