Jump to content

dariovine

Members
  • Posts

    12
  • Joined

  • Last visited

Profile Information

  • Location
    Australia
  • Activity
    User/Merchant

dariovine's Achievements

Newbie

Newbie (1/14)

7

Reputation

  1. Hello All, i really need your help here. I've done a fresh install of Prestashop 1.6.1.17 and i'm getting crazy since i can't see in the module list the "mail alets" module. I've checked every single module, manually, but i'm not able to find it. If I browse the modules folder on the server i can see the mailalerts folder however the addon seems to be hidden or disabled. Is there a way to possibly reinstall it? Can anyone help me here please? Many thanks
  2. Thanks you soooo much mate!! I suddently had this issue after ive updated prestashop modules and clearing the cache fixed it!!
  3. Hello, im setting up my store with PS 1.6.0.9 and i'm try to offer free regular shipping for orders over $150 I first tried configuring the "Free shipping starts at" option in shipping preferences however free shipping was applying for every courier which is not really what i wanted since the express couriers are more expensive than regular post. I cancelled this option. I then did some research and found out that i can set up a cart rule for orders of minimum $150 inclusive of tax which applies to all users and selected couriers. I tested it and it worked great! Exactly what i wanted. However i tested it with an order of $30 and the rule still applies!!! How is it possible if the minimum price is set to $150?? Am i doing anything wrong? I have attached a pic with the configuration Can you please help?
  4. Thanks mate for the head up, your indeed saved me a lot a time i changed mine like below since i moved the store to a sub-domain: location /shop { index index.php; rewrite ^/shop/api/?(.*)$ /webservice/dispatcher.php?url=$1 last; rewrite ^/shop/([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /shop/img/p/$1/$1$2.jpg last; rewrite ^/shop/([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /shop/img/p/$1/$2/$1$2$3.jpg last; rewrite ^/shop/([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /shop/img/p/$1/$2/$3/$1$2$3$4.jpg last; rewrite ^/shop/([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /shop/img/p/$1/$2/$3/$4/$1$2$3$4$5.jpg last; rewrite ^/shop/([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /shop/img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6.jpg last; rewrite ^/shop/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /shop/img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7.jpg last; rewrite ^/shop/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /shop/img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8.jpg last; rewrite ^/shop/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /shop/img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9.jpg last; rewrite ^/shop/c/([0-9]+)(-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*.jpg$ /shop/img/c/$1$2.jpg last; rewrite ^/shop/c/([a-zA-Z-]+)/[a-zA-Z0-9-]+.jpg$ /shop/img/c/$1.jpg last; rewrite ^/shop/([0-9]+)(-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*.jpg$ /shop/img/c/$1$2.jpg last; try_files $uri $uri/ /shop/index.php?$args; } All working good now
  5. If you read in the official google documentation here https://support.google.com/analytics/answer/2819948?hl=en right at the bottom it says: Click Validate tracking code. Analytics then checks to see whether you made the correct change to your code. If the validation fails, then you see this same page again. Analytics may be unable to validate your code changes under the following circumstances: You are using Google Tag Manager or a third-party tag manager to include the Analytics tracking code on your pages. You have included comments in your tracking code. You are hosting dc.js on your own servers, or including it from an external script. If you are certain that you’ve made the correct change, you can click Skip validation. With the reports enabled and the tracking-code modification in place, you should see data in your reports within 24 hours. I hope it helps to clarify
  6. I resolved the issue! I realized that i couldnt access the admin page directy after i recently added the following code for friendly URL to the nginx configuration file as in the documentation here http://doc.prestashop.com/display/PS16/System+Administrator+Guide location / { index /index.php; rewrite ^/api/?(.*)$ /webservice/dispatcher.php?url=$1 last; rewrite ^/([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /img/p/$1/$1$2.jpg last; rewrite ^/([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /img/p/$1/$2/$1$2$3.jpg last; rewrite ^/([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /img/p/$1/$2/$3/$1$2$3$4.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /img/p/$1/$2/$3/$4/$1$2$3$4$5.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /img/p/$1/$2/$3/$4/$5/$1$2$3$4$5$6.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$1$2$3$4$5$6$7.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$1$2$3$4$5$6$7$8.jpg last; rewrite ^/([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])([0-9])(-[_a-zA-Z0-9-]*)?/[_a-zA-Z0-9-]*.jpg$ /img/p/$1/$2/$3/$4/$5/$6/$7/$8/$1$2$3$4$5$6$7$8$9.jpg last; rewrite ^/c/([0-9]+)(-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*.jpg$ /img/c/$1$2.jpg last; rewrite ^/c/([a-zA-Z-]+)/[a-zA-Z0-9-]+.jpg$ /img/c/$1.jpg last; rewrite ^/([0-9]+)(-[_a-zA-Z0-9-]*)/[_a-zA-Z0-9-]*.jpg$ /img/c/$1$2.jpg last; try_files $uri $uri/ /index.php?$args; } I fixed the issue removing the / before index.php at the top, I changed it to: location / { index index.php; and it works fine I'm not an expert of code but now im not sure if the documentation is actually correct? Cheers!!
  7. Hello yes i did and also restarted php5 service but still it isnt working im going to try to update to version 1.6.0.9 to see if it fixes the isse ill keep you updated thanks
  8. Hello Everyone, i have been experiencing a weird problem since yesterday I was trying to fix the issue with google analytics api where you get the message cannot retrieve test results Reading solutions in the forum here i have added the allow_url_fopen = On to my php.ini Since then i cannot access my admin page. if i type www.website.com/admin1234 i get a prestashop 404 error. the only way to access it is to add index.php like so: www.website.com/admin1234/index.php Whats weird is that even if i delete or comment the allow_url_fopen line the problem remains Im on a nginx server with prestashop 1.6.0.8 can anyone help me please? thanks
  9. I tried to change this setting but the problems are all still there do you know what changes did GoDaddy do to make prestashop unusable? I'm just trying to understand so i can call them and ask to change them back Thanks
  10. Hello yes its go daddy is there anything that can be done from my side? thanks
  11. Hello All, i have recently installed prestashop 1.6.0.8 on a godaddy host without any problem When i log in to the back end and try to add or modify products the server keeps on crashing. It happens so often that its barely usable. For example: i go to catalog and then products and i try to edit the only product ive added or the existing ones. First of all i keep getting this pop-up saying "some tabs was not loaded correctly, do you want to reload them?" i then click OK but it keeps on coming so up so i click cancel Second, when i click on some of the options like features, i see two arrows rotating in the top left of the screen saying loading but then the page remains blank. after i try for four of five times it works. Third, when i change a parameter and i click on Save the browser comes back saying "no data received" The result is a totally unusable platform which makes me very frustrated!! Please can you help me? Thanks in advance
×
×
  • Create New...