Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

bprimm

Archived
  • Posts

    10
  • Joined

  • Last visited

Profile Information

  • Real Name
    Brad Primm
  • Location
    Ohio

bprimm's Achievements

  1. I have this MOD working good for all situations except when a user buys a product that is chargeable and also adds a free download. They are not given the download link untill the purchased product is shipped. If the buyer just orders the free download, they are immediately able to begin their download. Any ideas? Thanks, Brad
  2. the last 2: add to admin/filenames.php should be admin/includes/filenames.php add to admin/column_left.php should be admin/includes/column_left.php brad
  3. This is how I got this to work...by no means the best way... /admin/includes/boxes create new file easypopulate.php <?php /* $Id: easypopulate.php,v 1.5 2003/07/09 01:18:53 hpdl Exp $ Brad I Guess.... osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License */ ?> <!-- easypopulate //--> <tr> <td> <?php $heading = array(); $contents = array(); $heading[] = array('text' => BOX_HEADING_EASYPOPULATE, 'link' => tep_href_link(FILENAME_EASYPOPULATE, 'selected_box=easypopulate')); if ($selected_box == 'easypopulate') { $contents[] = array('text' => //Admin begin tep_admin_files_boxes(FILENAME_EASYPOPULATE, BOX_EASYPOPULATE_TEXT)); // tep_admin_files_boxes(FILENAME_STATS_PRODUCTS_PURCHASED, BOX_REPORTS_PRODUCTS_PURCHASED) . // tep_admin_files_boxes(FILENAME_STATS_CUSTOMERS, BOX_REPORTS_ORDERS_TOTAL)); //Admin end } $box = new box; echo $box->menuBox($heading, $contents); ?> </td> </tr> <!-- easypopulate_eof //--> it is reports.php modified a bit. add to admin/includes/languages/english.php (my language) //easypopulate test define('BOX_HEADING_EASYPOPULATE', 'Product Population'); define('BOX_EASYPOPULATE_TEXT', 'Easy Populate'); add to admin/filenames.php define('FILENAME_EASYPOPULATE', 'easypopulate.php'); add to admin/column_left.php if (tep_admin_check_boxes('easypopulate.php') == true) { require(DIR_WS_BOXES . 'easypopulate.php'); } I think thats it. tested ok so far... brad
  4. Does anyone know of a contribution that will work with Linda's 1.0a that will enable the use of radio buttons for attributes? Thank You, Brad
  5. I used winmerge to compare the files- I did notice that in product_info.php there was a <b> missing from the radio button 'products_options_name' so I added that. I re-compared each file again for changes/differences and and other than order.php having some diffs, (my version is 1.32 which has " $tax_address_query = tep_db_query("select ab.entry_country_id, ab.entry_zone_id from " . TABLE_ADDRESS_BOOK . " ab left join " . TABLE_ZONES . " z on (ab.entry_zone_id = z.zone_id) where ab.customers_id = '" . $customer_id . "' and ab.address_book_id = '" . ($this->content_type == 'virtual' ? $billto : $sendto) . "'"); $tax_address = tep_db_fetch_array($tax_address_query); ) The file supplied with the contribution does not have this, also when I view source on the ouput, i see (checked name ="id[]"), should there be a value in the id[]? I will keep checking for other changes. Thank you for your help, Brad
  6. In addidtion to above information, here is a link to the product in question on the site- http://www.internettoner.com/catalog/produ...?products_id=79 Thank You, Brad
  7. Attributes version installed :Version: 2.02.MS1 (18/02/2003) OSC Version is a snapshop from 4-26-2003 Which file should I inspect for the problem?- product_info.php. Thank You, Brad
  8. I have installed and I am testing the radio button options. I have products that will need 2 or 3 groups of options that have to be radio buttons (to limit the user from selecting conflicting options), but when i set this up, clicking on another groups radio button unselectes the previous groups. Is this by design or can someone point me in the direction to adjust this. Thank You, Brad
  9. When I create/delete a ticket on the customer side i recieve an error- Warning: mail() [function.mail]: SMTP server response: 550 Incomplete envelope information in D:Inetpubwwwrootcatalogincludesclassesemail.php on line 500 Warning: Cannot modify header information - headers already sent by (output started at D:Inetpubwwwrootcatalogincludesclassesemail.php:500) in D:Inetpubwwwrootcatalogincludesfunctionsgeneral.php on line 32 The email does complete though. When using the admin side, everything works fine. Thank You, Brad
×
×
  • Create New...