Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

surfalot

Pioneers
  • Posts

    2,312
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by surfalot

  1. if you are having timeout problems then my suggestion in post 8120 should take care of it. If it didn't, the appropriate thing to do is to reply to my post acknowledging you saw it and say it didn't help, rather then just ignoring it. If you just want to ignore the help, good luck.:P BTW, your links to your upload file don't work, so you haven't completed the list of item I would need to help.
  2. that contribution is not the extra fields contribution EP was setup for. This is the Extra Fields this contrib was setup to work with: http://www.oscommerc...y/contributions,2202. Having said that, the contrib you are using looks like it might be a better solution (if it works). I personally don't like contributions adding and removing fields from the database tables though. You should be able to setup support for your extra fields using the config time designed for custom fields in the products_description table. if that is a handy script for renaming columns headers, sharing would be a nice thing to do (in the EP downloads).
  3. lifeline: read your replies russalpcs: reread the how to ask for help (again).
  4. for the timeouts, see the docs and settings I just pointed lifeline to. for the rest, reread the how to ask for help section of the docs.
  5. have you seen this in the settings of easypopulate.php? //**** File Splitting Configuration **** // we attempt to set the timeout limit longer for this script to avoid having to split the files // NOTE: If your server is running in safe mode, this setting cannot override the timeout set in php.ini // uncomment this if you are not on a safe mode server and you are getting timeouts // set_time_limit(330); if that doesn't help, ask your host if you are able to do the same in a php.ini file. More info on this is available in step 6 of the install notes in the docs.
  6. in the /includes/classes/displayimages.php file you can add any CSS class needed to the follow table // start building output if (tep_not_null($product['products_image'])) { $this->groupout .= '<table border="0" cellspacing="0" cellpadding="4" align="'.$this->tablealignment.'" style="position: relative;">'."\n"; }
  7. well, since you only spent 2 minutes installing it, a safe bet would be that you give the full docs and settings a read as requested by the install help. now would be a good time for that. :thumbsup:
  8. currently only send to the customer. but that can change. in the standard version (non-MVS), in /admin/orders.php find: tep_mail($order->customer['firstname'] . ' ' . $order->customer['lastname'], $order->customer['email_address'], EMAIL_TEXT_RESEND_CONFIRM_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); add after: tep_mail(STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS, EMAIL_TEXT_RESEND_CONFIRM_SUBJECT, $email_order, STORE_OWNER, STORE_OWNER_EMAIL_ADDRESS); copy the line and change the first STORE_OWNER_EMAIL_ADDRESS with any email address in quotes and you can send it any where you want.
  9. search and replace would be a good tool for that. The only difficulty will be if you want to rename any column that ends in a _1 or some other number. Those digits are added by the code and would be good job to correct as you need.
  10. this line of easypopulate_functions.php should get you started. echo " | " . substr(strip_tags($item2), 0, 10);
  11. I see the problem now. I added one more instruction to the bottom: find: var $config_disable_imagecopyresampled = false; add after: var $skip_watermark = false; find: if (!empty($maxheight)) { $this->max_height = $maxheight; } add after: $this->skip_watermark = (ADDIMAGES_ADD_WATERMARK == 'false' ? true : $skip_watermark); find: if (!$skip_watermark) { $this->addWatermark(ADDIMAGES_WATERMARK_TRANSPARENCY); } remove the line. find: $this->ApplyBackground(); add after: if (!$this->skip_watermark) { $this->addWatermark(ADDIMAGES_WATERMARK_TRANSPARENCY); } find (near line 450): $this->outImageResourceID = $t_outImageResourceID; add after: $this->out_width = $this->max_width; $this->out_height = $this->max_height;
  12. if you don't remove the line suggested in the update instructions, it will continue to add the watermark at the wrong time in the script. That is causing the issue you reported.
  13. theoretically yes, but always backup before, then verify things after to make sure no other data is changed or mysteriously disappears.
  14. I don't understand what warranties have to do with the availability messages.
  15. OK, try these changes to \admin\includes\classes\alterimage.php find: var $config_disable_imagecopyresampled = false; add after: var $skip_watermark = false; find: if (!empty($maxheight)) { $this->max_height = $maxheight; } add after: $this->skip_watermark = (ADDIMAGES_ADD_WATERMARK == 'false' ? true : $skip_watermark); find: if (!$skip_watermark) { $this->addWatermark(ADDIMAGES_WATERMARK_TRANSPARENCY); } remove the line. find: $this->ApplyBackground(); add after: if (!$this->skip_watermark) { $this->addWatermark(ADDIMAGES_WATERMARK_TRANSPARENCY); }
  16. not at this time. the licensing for any package to be included in contributions here must be GPL. Although Creative Commons Attribution 2.5 allows you to use it in a similar way, it may not be a compatible licensing. See "contributions" under the forum rules link above.
  17. The easiest way would be to use phpMyAdmin if your host offers it. They are in the "configuration" table. Probably at the end of it. With phpMyAdmin you can browse the entries in the table, page to the end of it and remove any that have a duplicate name in the configuration_key. hope that help. There should never be a duplicate configuration_key in that table
  18. should look like this: Small Image Width 100 Small Image Height Heading Image Width 57 Heading Image Height 40 Subcategory Image Width 100 Subcategory Image Height 57 Calculate Image Size true Image Required true Display Image Width 200 Display Image Height Popup Image Width 400 Popup Image Height
  19. how many products in the store? how long have you waited? depending on the number of products and options, a complete download may take a very long time. If you use the on the fly download it should start streaming the file quicker.
  20. 1) no. You have to reprocess the images using the utility. This contribution processes images upon your request ONLY through the image upload on the products edit page and the utility. Reasons given in the readme. 2) original images are under the original names for reprocessing at a later time. please do see the notes and info in the readme.
×
×
  • Create New...