Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

mr_absinthe

Pioneers
  • Posts

    494
  • Joined

  • Last visited

Everything posted by mr_absinthe

  1. That was quick! :thumbsup: The file size that I tried to email is 9.28MB and I'm receiving the following error: Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 13150833 bytes) in /home/xxx/zzz/admin/includes/classes/class.smtp.php on line 368
  2. Either way, it would be cool and useful, any plans on doing it by any chance?
  3. Yes, there are existing backups, there is a cron that does backup on hourly basis. I've deleted the backup, played with the backup interval and all seems to be fine now, thanks! :thumbsup: It would be great if the backup file could be sent by email :shifty:
  4. It is running fine on php 5.3.10, no issues so far. However on my other store with php 5.2.9, it does nothing. I've tried changing settings and still, nothing. Any idea please?
  5. The backup was created just fine, we'll see about deleted files.
  6. After deleting the reference file, it's working again, not quite sure what was causing it....
  7. Jack, I've noticed that the SiteMonitor might not be monitoring files - any idea what might be the reason? I've uploaded new file checkout_success_backup1.php in the root of the shop and it is not being picked up - No mismatches found. Any ideas please?
  8. No, this time it removed the correct items. It even works with the echo commented out - it is removing correct items, no idea why it didn't work yesterday. The calculation output is not showing the removed items however: Store database has been optimized. Customers tables were trimmed. Initial size was 49209454. Final, optimized, size is 49209454. With about five years data the initial figure should be higher I guess.
  9. It is and the same date is the oldest record in the table now - 20120104. delete from customers_basket_attributes WHERE (`products_id`, `customers_id`) in (select `products_id`, `customers_id` from customers_basket where customers_basket_date_added < '20120104')
  10. OK, it works now, however since I have 30 days set as value in settings, I was expecting to see one month old data in table customers_basket. After running the optimizer, there are only records from yesterday (oldest date_added is 20120201). Is there something I've missed?
  11. Hi Jack, it appears that the customer basket is not being cleaned. Despite the fact that I have 30 days set as value in settings, I can still see records there from 2005. Same for the customers_basket_attributes, nothing is being deleted.
  12. Thank you. I've found it and I've changed the following in sitemonitor_admin.php, from: $invalidFiles = array_merge((array)glob(DIR_FS_CATALOG . DIR_WS_IMAGES . '*.php'),(array)glob(DIR_FS_CATALOG . DIR_WS_IMAGES . '*.txt')); if (!empty($invalidFiles)) { $messageStack->add(ERROR_IMAGES_HAS_PHP, 'error'); foreach ($invalidFiles as $filename) { echo $messageStack->add($filename); } } to: $invalidFiles = glob(DIR_FS_CATALOG . DIR_WS_IMAGES . '*.php'); if(is_array($invalidFiles) && count($invalidFiles) > 0) { $messageStack->add(ERROR_IMAGES_HAS_PHP, 'error'); foreach($invalidFiles as $filename) { echo $messageStack->add($filename); } } $invalidFiles = glob(DIR_FS_CATALOG . DIR_WS_IMAGES . '*.txt'); if(is_array($invalidFiles) && count($invalidFiles) > 0) { $messageStack->add(ERROR_IMAGES_HAS_PHP, 'error'); foreach($invalidFiles as $filename) { echo $messageStack->add($filename); } } All is fine now, the message is gone, running fine on php 5.3.6
  13. Jack, I've installed the latest version and this is what I see at the top: I've double checked both image directories including subdirectories and found no non-image type files there.
  14. Yes, I've noticed that, however changing it to a real email doesn't help, still no emails.
  15. Robert, I'm now unable to receive emails generated by the cron simply because they've contained the following in the header: Received: from nobody by p15.xxxxxxx.com with local (Exim 4.69) (envelope-from <[email protected]>) My host have blocked user nobody from sending email from their server to prevent the server IP gets blacklisted. Is there a possibility to change it so the email doesn't contain "nobody" in the header?
  16. I understand that the link might not be found due to server settings, php version or bad weather and I accept that. But why the link that IS correctly found on the Links Status page as shown above (the webtender) is being shown as Not Found with "disable" button on the Links page? Are those pages not using the very same script from admin/includes/functions/links.php file?
  17. That works for the Links Status page only and for one of those links: However it doesn't seem to work for the Links page (same link after refresh), clicking check link button shows Link Check Result: Not Found
  18. With regards to link checking algorithm, it is probably still not fully reliable. There are two web sites with my link and when I check the link status in admin, it is showing as not found. I have double checked that my phrase match with text on their sites, manually visited and compared and still, my admin link status is showing not found.
  19. Thank you Jack, that did the trick! And as far as I can tell, only one email is being sent.
  20. I've edited the links_status table and changed all language_id 2 to 5 to make it corresponding with languages table. However it did not help and those two links remain impossible to change from Links Status page.
  21. Also, the links_status table above shows 1,2,3 and 4 as language_id but it doesn't match the languages table: English = 1 Español = 3 Français = 4 Deutsch = 5 And that could explain one of those links mentioned above - German. The link's language_id is 5 in links_description table and 5 doesn't exist in links_status table. However the other unchangable link's language_id is 3...
  22. That links_status table seems to be OK: But... there is something that I've noticed. Those two links that I'm unable to change... one of them has been submitted in German (and Deutsch Language is selected under Options in Links -> edit) and the other link is Spanish (Espanol Language selected under Options). But, I should still be able to edit them from English admin shouldn't I?
  23. OK, I've just tested and the email is sent, however no status change. The link was Disabled and I changed its status to Waiting. No change and the email message reads: Dear Czeka, The status of your link at Absinthe Original has been updated. New status: Disabled
×
×
  • Create New...