Jump to content

chetwyn

Members
  • Posts

    96
  • Joined

  • Last visited

Profile Information

  • Activity
    Agency

chetwyn's Achievements

Newbie

Newbie (1/14)

7

Reputation

  1. Dear Prestashop. I’ve been using the tool for many many years now. The one thing the platform significantly lacks this the ability to import and export products without getting random errors, bugs, products not appearing after import and a swag of other things. Big Commerce for example has this nailed. I’m considering opening another store next year, given 1.6 is a major release. Could you PLEASE provide a solution for this capability. It’s a gamer changer for non-technical people, it could also draw people from other platform to this one. Chetwyn.
  2. Hello everyone, thought it might be a good idea to start a topic on "getting Presta running on Amazon Elastic Beanstalk" I'm currently going through the pain of trying to get it working. Has anyone done this yet which we can document?
  3. HI Guys.. been banging my head against the wall. I'm trying to run a query to find: how many new customers per week how many return customers order per week please help totally stuck aaahhhhh!!!
  4. wow, im really interested in this. Is it fast, can you give me the shop url please ?
  5. I've installed it but it I keep getting this error: The Mobile Theme has been disabled, click here to re-enable it Anyone know why?
  6. Hi Muad'Dib, hey - thanks for all your help. Really appreciate it dude! I've ended up doing this (it's probably the worst solution known to man but seems to work): rewritecond %{https} =off RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} iconhomeware\.com\.au [nc] rewriterule ^(.*)$ http://www.iconhomeware.com.au%{REQUEST_URI} [r=301,nc] rewritecond %{https} =off RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} iconhomeware\.com [nc] rewriterule ^(.*)$ http://www.iconhomeware.com.au%{REQUEST_URI} [r=301,nc] rewritecond %{https} =off RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} www\.iconhomeware\.com [nc] rewriterule ^(.*)$ http://www.iconhomeware.com.au%{REQUEST_URI} [r=301,nc] rewritecond %{https} =on RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} ^iconhomeware\.com\.au [nc] rewriterule ^(.*)$ https://www.iconhomeware\.com\.au/$1 [r=301,nc] RewriteCond %{HTTPS} !=on RewriteRule ^admin836/.* https://%{SERVER_NAME}%{REQUEST_URI} [R,L] RewriteCond %{QUERY_STRING} ^(%2d|-)[^=]+$ [NC] RewriteRule ^(.*) $1? [L]
  7. Seems to be working ok now. I probably did it the worst possible way RewriteEngine on # URL rewriting rules rewritecond %{https} =off RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} iconhomeware\.com\.au [nc] rewriterule ^(.*)$ http://www.iconhomeware.com.au/ [r=301,nc] rewritecond %{https} =off RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} iconhomeware\.com [nc] rewriterule ^(.*)$ http://www.iconhomeware.com.au/ [r=301,nc] rewritecond %{https} =off RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} www\.iconhomeware\.com [nc] rewriterule ^(.*)$ http://www.iconhomeware.com.au/ [r=301,nc] rewritecond %{https} =on RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} ^iconhomeware\.com\.au [nc] rewriterule ^(.*)$ https://www.iconhomeware\.com\.au/$1 [r=301,nc] RewriteCond %{HTTPS} !=on RewriteRule ^admin836/.* https://%{SERVER_NAME}%{REQUEST_URI} [R,L] RewriteCond %{QUERY_STRING} ^(%2d|-)[^=]+$ [NC] RewriteRule ^(.*) $1? [L]
  8. Hi Muad'Dib I tried it out but I put me in a loop when I typed in www.iconhomeware.com ?
  9. Hi Everyone. We have 2 domains. 1. iconhomeware.com 2. iconhomeware.com.au We would like all requests to be 301 redirect to www.iconhomeware.com.au So far we've been able to figure out how to redirect iconhomeware.com.au to www.iconhomeware.com.au but for the life of us we cannot figure out how to do the other redirects. How to: direct www.iconhomeware.com to www.iconhomeware.com.au and direct iconhomeware.com to www.iconhomeware.com.au This is what we currently have which redirect iconhomeware.com.au to www.iconhomeware.com.au rewritecond %{https} =off RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} iconhomeware\.com\.au [nc] rewriterule ^(.*)$ http://www.iconhomeware.com.au/ [r=301,nc] rewritecond %{https} =on RewriteCond %{HTTP_HOST} !^www\.iconhomeware\.com\.au [nc] rewritecond %{http_host} ^iconhomeware\.com\.au [nc] rewriterule ^(.*)$ https://www.iconhomeware\.com\.au/$1 [r=301,nc] Could someone please help.. we are SO stuck
×
×
  • Create New...