Jump to content

heshkak

Members
  • Posts

    5
  • Joined

  • Last visited

Everything posted by heshkak

  1. Posting this solve again, just to make sure the next person looking is able to find it. Add the following to your httaccess: # Do not remove this line, otherwise mod_rewrite rules will stop working #RewriteBase / # URL rewriting module activation RewriteEngine on RewriteCond %{REQUEST_METHOD} !^(TRACE|TRACK|GET|POST|HEAD)$ RewriteRule .* - [F] RewriteBase / Options +FollowSymLinks # URL rewriting rules RewriteRule ^([a-z0-9]+)-([a-z0-9]+)(-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*).jpg$ /img/p/$1-$2$3.jpg [L,E] RewriteRule ^([0-9]+)-([0-9]+)/([_a-zA-Z0-9-]*).jpg$ /img/p/$1-$2.jpg [L,E] RewriteRule ^([0-9]+)(-[_a-zA-Z0-9-]*)/([_a-zA-Z0-9-]*).jpg$ /img/c/$1$2.jpg [L,E] RewriteRule ^lang-([a-z]{2})/([a-zA-Z0-9-]*)/([0-9]+)-([a-zA-Z0-9-]*).html(.*)$ /product.php?id_product=$3&isolang;=$1$5 [L,E] RewriteRule ^lang-([a-z]{2})/([0-9]+)-([a-zA-Z0-9-]*).html(.*)$ /product.php?id_product=$2&isolang;=$1$4 [L,E] RewriteRule ^lang-([a-z]{2})/([0-9]+)-([a-zA-Z0-9-]*)(.*)$ /category.php?id_category=$2&isolang;=$1 [QSA,L,E] RewriteRule ^([a-zA-Z0-9-]*)/([0-9]+)-([a-zA-Z0-9-]*).html(.*)$ /product.php?id_product=$2$4 [L,E] RewriteRule ^([0-9]+)-([a-zA-Z0-9-]*).html(.*)$ /product.php?id_product=$1$3 [L,E] RewriteRule ^([0-9]+)-([a-zA-Z0-9-]*)(.*)$ /category.php?id_category=$1 [QSA,L,E] RewriteRule ^content/([0-9]+)-([a-zA-Z0-9-]*)(.*)$ /cms.php?id_cms=$1 [QSA,L,E] RewriteRule ^([0-9]+)__([a-zA-Z0-9-]*)(.*)$ /supplier.php?id_supplier=$1$3 [QSA,L,E] RewriteRule ^([0-9]+)_([a-zA-Z0-9-]*)(.*)$ /manufacturer.php?id_manufacturer=$1$3 [QSA,L,E] RewriteRule ^lang-([a-z]{2})/(.*)$ /$2?isolang=$1 [QSA,L,E] # Catch 404 errors ErrorDocument 404 /404.php Options -MultiViews
  2. I had the same issue, and was able to solve with using this as my httaccess:
  3. Belini, Thanks for all your help on this. For some reason your first suggestion on changing a swift file rang a bell. I did a text search and found that some IDIOT (aka me) did modify the tools/swift/Swift/Message.php and set the "from" address. Thanks again for all your help. This one is SOLVED.
  4. Thanks for the responce bellini! Yes, that is the config setting I checked and I have not made any changes to the code in the swift folder. Prestashop version 1.4.4.0
  5. Hi, I'm having issues with the return address of all emails sent from my site. ALL emails have a return(from) address that IS NOT THE SAME as what is entered in the contact information tab in the back office. PS_CONFIGURATION [shop Email] contains the address that is in the contact information tab (which is correct). Again, this is not what the site is using as the from address in all emails. Any ideas guys? I'm not sure where the site is puling this email address from. Thanks, Hesh
×
×
  • Create New...