Jump to content

bector

Members
  • Posts

    19
  • Joined

  • Last visited

About bector

  • Birthday 06/21/1983

Contact Methods

Profile Information

  • Location
    India
  • Interests
    theme Development and implement
  • Activity
    Developer

bector's Achievements

Newbie

Newbie (1/14)

3

Reputation

  1. yesterday i call godaddy .... also share this forum url with them....first they want to see where is the error... i also share my admin login detail with them... after 45 min on hold ... they replay prestashop is third party application we not provide any support for that ....i told them i am not only facing this problem .......they reply you have to google to fix this issue... this is not our server issue...... meas they are not ready to understand this is the server issue... i think we all are complaint together to fix this issue... or move with other hosting provider.... Thanks
  2. hi vekia i see this problem from last 2 week.... but before that sites working perfect.... i means to say they have update with only "economy" hosting or some other hosting pack are also infected and showing error.. Thanks
  3. hi, i have 3 website in prestashop all are host on godaddy... but i got same problem in 2 websites...that use the godaddy ( Economy Web Hosting Linux ) but one is host on godaddy with (Ultimate Linux Hosting with cPanel) this is working perfect... so think issue may be with only (Economy Web Hosting Linux) please check all have this hosting plan Thanks
  4. i just run this sql i have to change the price form 1.66 to 2.25 in my shop http://fashionvogues.com and its work UPDATE `ps_product_shop` SET `wholesale_price` = 2.25 WHERE `wholesale_price` = 1.66 UPDATE `ps_product_shop` SET `price` = 2.25 WHERE `price` = 1.66 you can update in one sql and similar sql should be run for table ps_product
  5. Hi i try this now category url and other url working fine but frontend login problem come again # ~~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 RewriteCond %{HTTP_HOST} ^www.fashionvogues.com$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^www.fashionvogues.com$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^www.fashionvogues.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} ^www.fashionvogues.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} ^www.fashionvogues.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} ^www.fashionvogues.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} ^www.fashionvogues.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} ^www.fashionvogues.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} ^www.fashionvogues.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} ^www.fashionvogues.com$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^www.fashionvogues.com$ RewriteRule ^c/([a-zA-Z-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^www.fashionvogues.com$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^www.fashionvogues.com$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </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
  6. hi elpatron i try this but with this my cagegory url stop working also feature images not shown i want i site should open with http://www.fashionvogues.com without www its working fine and no issue of frontend login this is my .htaccess file # ~~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 # [url="http://www.prestashop.com"]http://www.prestashop.com[/url] - [url="http://www.prestashop.com/forums"]http://www.prestashop.com/forums[/url] <ifmodule mod_rewrite.c=""> RewriteEngine on RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L] RewriteCond %{HTTP_HOST} ^fashionvogues.com$ RewriteRule . - [E=REWRITEBASE:/] RewriteRule ^api/?(.*)$ %{ENV:REWRITEBASE}webservice/dispatcher.php?url=$1 [QSA,L] # Images RewriteCond %{HTTP_HOST} ^fashionvogues.com$ RewriteRule ^([0-9])(\-[_a-zA-Z0-9-]*)?(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/p/$1/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^fashionvogues.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} ^fashionvogues.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} ^fashionvogues.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} ^fashionvogues.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} ^fashionvogues.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} ^fashionvogues.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} ^fashionvogues.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} ^fashionvogues.com$ RewriteRule ^c/([0-9]+)(\-[\.*_a-zA-Z0-9-]*)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2$3.jpg [L] RewriteCond %{HTTP_HOST} ^fashionvogues.com$ RewriteRule ^c/([a-zA-Z-]+)(-[0-9]+)?/.+\.jpg$ %{ENV:REWRITEBASE}img/c/$1$2.jpg [L] # Dispatcher RewriteCond %{REQUEST_FILENAME} -s [OR] RewriteCond %{REQUEST_FILENAME} -l [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteCond %{HTTP_HOST} ^fashionvogues.com$ RewriteRule ^.*$ - [NC,L] RewriteCond %{HTTP_HOST} ^fashionvogues.com$ RewriteRule ^.*$ %{ENV:REWRITEBASE}index.php [NC,L] </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
  7. hi i have same issue with if i add www with my "Shop domain" then its stop login if i use without www then its work i need my site should open with www ie http://www.fashionvogues.com not like http://fashionvogues.com any suggestion how to do that ?
  8. I have same issue, you write about the cache clear i try that also but the problem still there , i also try some other borwser chrome, firefox and IE
  9. Thanx for the reply I have done all these steps but when i click on product the url is www.domainname.com/productname instead of www.domainname.com/categoryname/productname
  10. Hello, I want to create product urls with category name for example category name is Men 's wear and product name is T-shirt then url should be www.domainname.com/men'swear/t-shirt Any Help plz reply... Thanks
  11. Fatal error : Uncaught exception 'JSMinException' with message 'Unterminated string literal.' in /home/mcshop/public_html/tools/js_minify/jsmin.php:94 Stack trace: #0 /home/mcshop/public_html/tools/js_minify/jsmin.php(235): JSMin->action(1) #1 /home/mcshop/public_html/tools/js_minify/jsmin.php(64): JSMin->min() #2 /home/mcshop/public_html/classes/Tools.php(1436): JSMin::minify('// ???var order...') #3 /home/mcshop/public_html/classes/Tools.php(1423): ToolsCore::packJS('// ???var order...') #4 /home/mcshop/public_html/classes/Tools.php(1406): ToolsCore::packJSinHTMLpregCallback(Array) #5 /home/mcshop/public_html/config/smarty.config.inc.php(203): ToolsCore::packJSinHTML('/\s*(<script\b[...', Array, '<script type="t...') #6 /home/mcshop/public_html/tools/smarty/sysplugins/smarty_internal_filter_handler.php(57): smartyPackJSinHTML('<script type="t...') #7 /home/mcshop/public_html/tools/smarty/Smarty.class.php(337): Smarty_Internal_Filter_Handler::runFilter('<script type="t...', Object(Smarty_Internal_Template)) #8 /home/mcsho in /home/mcshop/public_html/tools/js_minify/jsmin.php on line 94 I have this error in my site when users click on checkout button but this error does not display for all users.Plz Reply
  12. Hi valerie_BelVG, Ok thank u valerie_BelVG , May u plz mention that how much time and cost it will take to develop.
  13. hello friends, I have a different need i want User tracking by IP address and show the different landing page when he login next time.for example i have a user who hits one category every time i want when he comes again that page which was most visited by a user opens automatically ....any suggestion?????
  14. hello, plz guide me to configure these settings which url have to give in carrier for bluedart shipping....
×
×
  • Create New...