Jump to content

Pieter

Members
  • Posts

    49
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Pieter's Achievements

Newbie

Newbie (1/14)

3

Reputation

3

Community Answers

  1. Hi I deleted cache\class_index.php from the server. Prestashop then automatically makes a new one. If this is not the right way, please let me know. regards Pieter
  2. Hi Bellini, Installed and cache cleared, but no bcc copy in my mailbox...
  3. hi i fixed this in 1.6.0 with adding $list->addBcc('[email protected]'); on line 352 of tools/swift/swift.php but 1.6.1.7 has different files in swift. Where tot change this? thanks! Pieter
  4. Hi I tried this: go to controllers/admin/AdminOrdersController.php find an delete (line464 in my case) // Send mail to customer $customer = new Customer((int)$order->id_customer); $carrier = new Carrier((int)$order->id_carrier, $order->id_lang); if (!Validate::isLoadedObject($customer)) throw new PrestaShopException('Can\'t load Customer object'); if (!Validate::isLoadedObject($carrier)) throw new PrestaShopException('Can\'t load Carrier object'); $templateVars = array( '{followup}' => str_replace('@', $order->shipping_number, $carrier->url), '{firstname}' => $customer->firstname, '{lastname}' => $customer->lastname, '{id_order}' => $order->id, '{shipping_number}' => $order->shipping_number, '{order_name}' => $order->getUniqReference() ); if (@Mail::Send((int)$order->id_lang, 'in_transit', Mail::l('Package in transit', (int)$order->id_lang), $templateVars, $customer->email, $customer->firstname.' '.$customer->lastname, null, null, null, null, _PS_MAIL_DIR_, true, (int)$order->id_shop)) { Hook::exec('actionAdminOrdersTrackingNumberUpdate', array('order' => $order, 'customer' => $customer, 'carrier' => $carrier), null, false, true, false, $order->id_shop); Tools::redirectAdmin(self::$currentIndex.'&id_order='.$order->id.'&vieworder&conf=4&token='.$this->token); } else $this->errors[] = Tools::displayError('An error occurred while sending an email to the customer.'); and it works
  5. Hi, No, no solution yet. So if you find it, please post it here as well! regards, Pieter
  6. Hi having the same problem PS 1.6.0.14 with xtendify express cache and media server there are more posts on this problem, none with a working solution....
  7. Hi I'm having exactly the same issue. Did you find any solution in the mean time? thanks! Pieter
  8. Hi looking for the rewrite rule for /123-456-large/imagenaam.jpg to /456-large_default/imagenaam.jpg how to get th 123 off but keep the 456 and add the _default to the directory name reason:after upgrade i want some external image links to keep working Thanks!
  9. This is probably in the templates of your theme In PS 1.6 standard theme default-bootstrap it is in website/theme/themename/product.tpl in my version on line 408 but you can also search on "you save"
  10. found it: RewriteCond %$1 ^(.*)awstats(.*)$ RewriteRule ^http://www.mydomain.nl.server.host.nl/webstats/awstats.cgi$ [R=301,L]
  11. Hi, I upgraded to presta 1.6.0.14 from 1.4 .htaccess is made in a different way than before if domain is www.mydomain.nl, my server webstats is on www.mydomain.nl.server.host.nl/webstats/.... since 1.6 i get redirected to www.mydomain.nl/index.php when trying to access this. What to add manually before the start or after the end marker in .htaccess to fix this? Thanks for your tips! Pieter
×
×
  • Create New...