Jump to content

gra

Members
  • Posts

    7
  • Joined

  • Last visited

Recent Profile Visitors

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

gra's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. I've come across the same sort of issue. I'm using hostmonster and both at the initial shop setup and later through admin-->preferences-->email I've found that the headers and parameters sent to the mail function tools/swift/swift/plugins/sendmail.php include email addresses that have www added after the @. This causes the mail function not to work. (if I manually pass the correct headers / parameters with the www removed it does work). How can I get this www part removed?? Thanks.
  2. a possible part solution I've found that if I edit the MailSend.php from tools/swift/swift plugin and blank out the header & parameter bits from around line 160 to be: if (!ini_get("safe_mode")) $success = mail($to, $subject, $message, "", ""); else $success = mail($to, $subject, $message, ""); I can successfully get phpmail to work at shop setup (so assume it'll work at other times as well). Possibly this means the header info / params passed are creating the problem, or at least with my host (hostmonster). I don't know enough about php to see why but it seems similar to some posts saying to use params="".
  3. Does anyone know a way to apply a voucher that will give a discount (like 30%) to all products in a cart but not in a way that will give any one product more than 30% in the cases where it is already on sale? If I unselect the two cummulative options, I get the discount not being applied to any of the products in the cart if one is already discounted. Thanks.
  4. I'm using hostmonster without any issues. I see it up a few months ago and just today updated to 1.08. I recall seeing localhost as the server during this update. Can't remember exactly if I did anything but follow the install instructions. Sounds a bit like you need to check your database username/password details. - Graham
  5. You need to change the size of the field length checked. Do a search in files of the prestashop for short_description and you'll find the right place. Let me know if you can't find it and I'll search for the correct place for you. Can't do it right now however. - Graham
  6. Trying to set up a basic shopping cart. When in the Back Office I started getting this error when browsing to the 2nd page of products in a category. Error trying to retrieve the URL: http://www. my url and admin folder details/index.php?tab=AdminCatalog&id_category=6&token=9a686b7631c18eb407e6414923221f95 The following error was encountered: The request or reply is too large. If you are making a POST or PUT request, then your request body (the thing you are trying to upload) is too large. If you are making a GET request, then the reply body (what you are trying to download) is too large. Please contact TPG Helpdesk or the cache administrator and quote your dialup/ADSL location and IP address if you feel this error is incorrect. If you are reporting this error to the cache administrator you must include this entire error message in your email. Without the correct details we may be unable to resolve your issue. Your cache administrator is [email protected] Firefox 3 works however. - Graham
  7. I've been attempting to add the manufacturer to each product listing as follows: Line 9 of product-list.tpl of default theme: Added "by {$product.manufacturer_name}. " by {$product.manufacturer_name}.{product.description_short|strip_tags|truncate:360} This works fine for product listings displayed after clicking a category (category module), clicking a manufacturer (manufacturer module). I've also used similar code to add this to the featured products module, and the more detailed display when you view a product. The issue is it does not work (just the "by" gets added) when the products are listed by the search module, the specials module or the suppliers module. Other fields like $product.supplier_reference do work across all modules. Anyone know why this is? and how to fix it? Thanks.
×
×
  • Create New...