Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

a8le

Pioneers
  • Posts

    28
  • Joined

  • Last visited

Everything posted by a8le

  1. hi chadduck, i noticed that you did some work on the virtual mall module.

    http://addons.oscommerce.com/info/577

    how is it working for you? have you updated it anymore? i read through the support forum for the module but it seems the original developer has dropped it. a few questions about the module please:

    is the multi-shop interface working?

    can shop owners sign up and ins...

  2. it's too bad that this contribution stop getting updates...
  3. hi playcraft,

    i am looking for a multiple shop addon, that'll make my planned shop like ebay or Amazon marketplace.

    will this add-on do that? anyone can sign on setup a shop. and others can come to buy. would i have to do a lot of tweaking?

    well there's alot to it. just a plan/thought. are you for hire? how much would you charge to modify osCommerce into...

  4. Hi all, Great contribution, we have it installed and it is working. What have it set-up to display 3 columns per row. Our problem... the product for the last row is always empty for the first page. For example Page 1 ------------- 01 02 03 04 05 06 07 08 XX <-- XX indicates the missing "empty" product Page 2 ------------ 09 10 11 12 13 14 15 16 For every category, it is like this. Please help, thanks in advance. -Thuan
  5. To confirm this... I ran into the same problem with the emailing. We don't have any register_globals mod installed, but by default our host has register_globals=off so we used the php.ini > register_globals=on fix. And what got everything working was uncommenting the line mentioned by Silverado05 (thank you!). -Thuan
  6. Hi all, Anyone else been having errors with your Paypal WPP? We have been getting this error: 10001 - Internal Error - The transaction could not be loaded After much research and Googling... I found this thread on the Paypal Developer site... http://www.paypaldeveloper.com/pdn/board/m...;thread.id=3899 But that wasn't any help... has anyone found an answer to this? -Thuan
  7. Hi JanZ, I just finished installing this contribution manually. WOW, you guys put a mess of work into it. Thank you. Problem: I have a "sort product attributes" contribution installed as well. The two conflict in product_info.php at product options I have a: . "' order by pa.attribute_sort" like such: $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "' order by pa.attribute_sort"); where would I add that to this?: $products_options_query = tep_db_query("select pov.products_options_values_id, pov.products_options_values_name, pa.options_values_price, pa.price_prefix, pa.products_attributes_id from " . TABLE_PRODUCTS_ATTRIBUTES . " pa, " . TABLE_PRODUCTS_OPTIONS_VALUES . " pov where pa.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pa.options_id = '" . (int)$products_options_name['products_options_id'] . "' and pa.options_values_id = pov.products_options_values_id and pov.language_id = '" . (int)$languages_id . "' and find_in_set('".$customer_group_id."', attributes_hide_from_groups) = 0"); $list_of_prdcts_attributes_id = ''; $products_options = array(); // makes sure this array is empty again while ($_products_options = tep_db_fetch_array($products_options_query)) { $products_options[] = $_products_options; $list_of_prdcts_attributes_id .= $_products_options['products_attributes_id'].","; } if (tep_not_null($list_of_prdcts_attributes_id) && $customer_group_id != '0') { $select_list_of_prdcts_attributes_ids = "(" . substr($list_of_prdcts_attributes_id, 0 , -1) . ")"; $pag_query = tep_db_query("select products_attributes_id, options_values_price, price_prefix from " . TABLE_PRODUCTS_ATTRIBUTES_GROUPS . " where products_attributes_id IN " . $select_list_of_prdcts_attributes_ids . " AND customers_group_id = '" . $customer_group_id . "'"); while ($pag_array = tep_db_fetch_array($pag_query)) { $cg_attr_prices[] = $pag_array; } // substitute options_values_price and prefix for those for the customer group (if available) if ($customer_group_id != '0' && tep_not_null($cg_attr_prices)) { for ($n = 0; $n < count($products_options); $n++) { for ($i = 0; $i < count($cg_attr_prices); $i++) { if ($cg_attr_prices[$i]['products_attributes_id'] == $products_options[$n]['products_attributes_id']) { $products_options[$n]['price_prefix'] = $cg_attr_prices[$i]['price_prefix']; $products_options[$n]['options_values_price'] = $cg_attr_prices[$i]['options_values_price']; } } // end for ($i = 0; $i < count($cg_att_prices); $i++) } } // end if ($customer_group_id != '0' && (tep_not_null($cg_attr_prices)) } // end if (tep_not_null($list_of_prdcts_attributes_id) && $customer_group_id != '0') for ($n = 0; $n < count($products_options); $n++) { $products_options_array[] = array('id' => $products_options[$n]['products_options_values_id'], 'text' => $products_options[$n]['products_options_values_name']); if ($products_options[$n]['options_values_price'] != '0') { $products_options_array[sizeof($products_options_array)-1]['text'] .= ' (' . $products_options[$n]['price_prefix'] . $currencies->display_price($products_options[$n]['options_values_price'], tep_get_tax_rate($product_info['products_tax_class_id'])) .') '; } } // EOF SPPC attributes mod Thank you again. -a8le
  8. Hi JanZ, Thank you for the good news and thank you for the contribution. -a8le
  9. I like this module... but have a question. This might actually be a general osCommerce question though... Is there a way to make so customers can have seperate payment methods? For example, we have retail and wholesale customers... our wholesale customers, are allowed to pay by check so we would like it so that they get the option to "pay by check" when they go to check out, retail cusomers shouldn't have the same option. I want to start coding up such a module, but want to know if others have tried it yet... Is this even possible? Have others tried this? Thank you in advance, a8le.
  10. Hi Frank (and all), 1st, GREAT CONTRIBUTION... now... As of right now my client has installed PWA (payapl version), Paypal Website Payment Pro (for CCs), and shipdate. And all I am trying to do is install the first part of the module. From reading the forum, I know people have successfully installed the first part after uninstalling PWA, which we can do. That still leaves me with the Paypal Website Payment Pro and shipdate. The shipdate code isn't much, but the Paypal Website Payment Pro is on many pages. Has anyone installed just the first part with Paypal WPP? What challenging is our checkout_shipping is heavily modified... instead of replacing the whole checkout_shipping, I would like to edit code similar to the remaining pages of the module first part. How do I approach this? I would appreciate any help. -a8le
  11. Hi all, Has anyone come up with this sort of bug as well?... Sort order: discount before the subtotal Display subtotal with applied discount?: true Everything else default and if any one product in my cart has a quantity of more than 1 the total amount is always wrong... I got everything to work right using these setting but would like to use the above settings: Sort order: subtotal before the discount Display subtotal with applied discount?: false Everything else default I would appreciate any feedback, Thanks in advance, a8le
  12. Hi all, I installed the shipdate module and it worked fine for about a week. Now, I am getting this error: Rating and Service 1.0001 0 An unknown error occured while attempting to contact the UPS gateway : Rating and Service 1.0001 0 An unknown error occured while attempting to contact the UPS gateway Its a part of the UPS XML module, but that has been working for a while and is also installed on another site which is still working fine. And the last thing I installed for the non-functional site is this shipdate contribution. Please suggest anything, its a live site. Thanks in advance, a8le
  13. Hi Glenn, You are the man! Thank you so much. Luckily my problems were easy fixes. Anyways everything is working fine and dandy. I was going crazy for a while; happy now... :) Oh, by the way, the code for the comments was in my paypal_wpp_base.php file. Thanks again, a8le
  14. Okay, One more thing... the contribution attached the transaction detail to the first comment of the order. This is okay, but I would be nice two leave a few line breaks between the two. Can someone tell me where the code for this is? Thanks, a8le.
  15. It seems that the "low order fee" module is not working with this paypal contribution as well. Is this a drawback to this contribution? Is there a work around?
  16. hi all, i installed this contribution and it works as expected. thnx :)... but i had installed a handling fee contribution, adding a fee to the order total. the fee shows up in all of osCommerce, but not paypal. what am i over looking? thanks in advance, a8le.
  17. ah, i see... so sorry, didn't realize it wasn't your up... -a8le
  18. Hi, thnx for the fast reply. I am not using auto thumb. Only two things I have done to mod osCommerce are: force customer login and customer approval/denied through admin. Any ideas as to what I should be looking for? or Can you explain why I might be having the errors? I would really like to get this working properly. Thanx again, a8le.
  19. hi surfalot, have a problem... nothing worked when i initially installed it. i kept at it for a while to no end, then started troubleshooting. the backend admin section of the code works, that incudes uploading, deleting, displaying and config settings. So I assumed it was my product_info page but it wasn't that, it was actually the html_output page. when i apply the "needed" changes to the html_output page, all of the products in a number of categories dissappear along with the footer. as for the categories with items, once i click on an item, the products_info page comes up but blank. any suggestions as to why this could be happening? -a8le
×
×
  • Create New...