
gopeppy
Members-
Posts
19 -
Joined
-
Last visited
Profile Information
-
Activity
User/Merchant
gopeppy's Achievements
-
Hi everyone I would like sell, a certain number of products from a category at a fixed price. I see that discount by amount and percentage is possible in cart rules. But I want sell at a flat amount Say I have a category A, in which a user can buy 3 different products at a flat rate say $100. Is this possible in Prestashop or if any module available?
-
Domain Name Change - Page Not Found Error
gopeppy replied to garywright's topic in Configuring and using PrestaShop
I know this is an old thread. Might be helpful for someone search for solution. I had this similar problem when I upgraded my hosting to a new server with the same hosting provider. I had Friendly URL enabled earlier. So, I uploaded the .htaccess file from my backup and overwrote the newly generated one. This resolved the issue. I will give the contents of the .htaccess file below. Replace the DOMAIN. # ~~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: www.DOMAIN.com 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- 14 replies
-
- 404 error
- domain change
-
(and 1 more)
Tagged with:
-
I know this is an old thread. Might be helpful for someone search for solution. I had this similar problem when I upgraded my hosting to a new server with the same hosting provider. I had Friendly URL enabled earlier. So, I uploaded the .htaccess file from my backup and overwrote the newly generated one. This resolved the issue. I will give the contents of the .htaccess file below. Replace the DOMAIN. # ~~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: www.DOMAIN.com 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
-
I am also having the same issue.
-
Hi, I am using PS v1.6.1.8 for my website. For the last few days in the back office whenever I do some action as simple clicking on a menu, it automatically redirects to the login page. This is happening within few seconds of activity which rules out login expiration (480 hours) Please help me Thanks Sampath
-
Backoffice logging off automatically within seconds - 1.6.1.8
gopeppy replied to gopeppy's topic in General topics
Yes. I do check that. Also the cookie expiration time is 480 hours. But it logs off in minutes sometimes in seconds and redirected to the login page. -
Hi, I am using PS v1.6.17 for my website. From today, whenever I do some action as simple clicking on a menu, it automatically redirects to the login page. This is happening within few seconds of activity which rules out login expiration. Is anyone facing this issue?
- 1 reply
-
- cookies
- backoffice
-
(and 1 more)
Tagged with:
-
How to revert back to Default theme
gopeppy replied to gopeppy's topic in Configuring and using PrestaShop
Thanks a lot Mac -
Hi, I was testing a new theme for our website and now I want to get back to the default Prestashop theme. I checked Themes installator module and I couldn't find a way to revert back to the default theme. Someone please help me Thanks Sampath
-
Hi, I am trying to install Prestashop in my site. I was using Prestashop in the same site earlier, but did a clean delete of everything and decided to install the latest version. I am getting Internal server error. When I checked the Error logs, I can see the following lines. Someone please help me. [Mon Jan 18 03:17:24 2016] [error] [client 14.141.101.11] SoftException in Application.cpp:256: File "/home3/****/public_html/index.php" is writeable by group [Mon Jan 18 03:17:24 2016] [error] [client 14.141.101.11] Premature end of script headers: index.php [Mon Jan 18 03:17:24 2016] [error] [client 14.141.101.11] File does not exist: /home3/****/public_html/500.shtml Important: This happens only with Prestashop 1.6.1.4, installer works for version 1.6.1.3 Thanks Sampath
-
Hi I am trying to integrate PitchPrint to my Prestashop site using PitchPrint plugin. Prestashop version: v1.6.0.14 But When I click "Customize Now" button, the screen with just the text "Please Wait" appear. When I checked in Firebug, I can see errors in Javascript TypeError: b(...).css(...) is undefined forceIframeTransport: !1, in the line I checked the js file with the one they are using in their demo, its the same. I don't know whats happening there. Do anyone know how to fix this? I have mailed PitchPrint also, but no reply from them.
-
Hi everyone, I was wondering if any one is working on integrating Open Tshirts (opentshirts.com) with Prestashop. OpenTShirt is a custom T shirt design software that lets your customer to design their own T shirt and place order. A standalone application can be installed in the sub domain. But, without integration, you cannot see the custom product in the Prestashop and follow up and also the user login will then be different. Opencart integration is available for this. But if someone do this for Prestashop, it would be great.
-
- opentshirt
- integration
-
(and 1 more)
Tagged with:
-
Integration of Prestashop with OpenTshirt
gopeppy replied to gopeppy's topic in Addons, modules and themes developers
Hi, Anyone working on this?- 1 reply
-
- opentshirts
- customtshirt
-
(and 1 more)
Tagged with: