Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

quicklyshop

Archived
  • Posts

    68
  • Joined

  • Last visited

Profile Information

quicklyshop's Achievements

  1. Is there any oscommerce module for AMAZON Affiliates
  2. Oscommerce take cares all selling process. The pain starts when you needed combine your sales data with your other business data. Some of you use Quickbooks or Sage etc to handle the rest. But i believe We could get oscommerce to handle that side of business too. Biggest problem i have is Purchase orders. I dont only have to enter the Purchase order to an accounting software i also have to update Oscommerce stock level manually. But i realised we could add a module to oscommerce to handle the Purchase orders. This module should let you enter any invoice item by item with purchase price and shipping and administeration costs and should be able to save the data on seperate table in oscommerce database. Purchase order module can get product names from database and let you choose with drop down menu. And it should let you enter cost of the product excluding tax and including tax manually. But only problem is finding time to write the PHP script to do the job.
  3. For most of you who didnt upgrade their version of oscommerce to 2.2MS1. Ship in cart was really usefull module and it was only working MS1. Below code should work with any shipping method and tax options. So no headaches.(That is what i assume ofcource) So save below code as ship_in_cart.php and upload it to catalog/includes/modules/. open catalog/shopping_cart.php and add below lines <tr> <td><?php require(DIR_WS_MODULES . 'ship_in_cart.php'); ?></td> </tr> before <tr> <td><br><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><?php echo tep_image_submit('button_update_cart.gif', IMAGE_BUTTON_UPDATE_CART); ?></td> <?php // Check if there is something in the cart ?if ($cart->count_contents() == 0) { ? ?tep_redirect(tep_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL')); ?} // Stock Check ?if ( (STOCK_CHECK == 'true') && (STOCK_ALLOW_CHECKOUT != 'true') ) { ? ?$products = $cart->get_products(); ? ?$any_out_of_stock = 0; ? ?for ($i=0; $i<sizeof($products); $i++) { ? ? ?if (tep_check_stock($products[$i]['id'], $products[$i]['quantity'])) { ? ? ? ?$any_out_of_stock = 1; ? ? ?} ? ?} ? ?if ($any_out_of_stock) { ? ? ?tep_redirect(tep_href_link(FILENAME_SHOPPING_CART)); ? ?} ?} // Register needed checkout variables ?if (!tep_session_is_registered('sendto')) { ? ?$sendto = $customer_default_address_id; ? ?tep_session_register('sendto'); ?} ?if ($HTTP_POST_VARS['sendto']) { ? ?$sendto = $HTTP_POST_VARS['sendto']; ?} ?if ($HTTP_POST_VARS['shipping_quote_all'] == '0') { ? ?$shipping_quote_all = '0'; ?} else { ? ?$shipping_quote_all = '1'; ?} ?if ($HTTP_POST_VARS['comments']) { ? ?$comments = stripslashes($HTTP_POST_VARS['comments']); ?} ?if ($HTTP_POST_VARS['payment']) { ? ?$payment = stripslashes($HTTP_POST_VARS['payment']); ?} ?if ($HTTP_POST_VARS['shipping_selected']) { ? ?$shipping_selected = stripslashes($HTTP_POST_VARS['shipping_selected']); ?} ?if (!tep_session_is_registered('comments')) { ? ?tep_session_register('comments'); ?} ?if (!tep_session_is_registered('payment')) { ? ?tep_session_register('payment'); ?} ?if (!tep_session_is_registered('shipping_selected')) { ? ?tep_session_register('shipping_selected'); ?} ?if (!tep_session_is_registered('shipping_cost')) { ? ?tep_session_register('shipping_cost'); ?} ?if (!tep_session_is_registered('shipping_method')) { ? ?tep_session_register('shipping_method'); ?} require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_CHECKOUT_CONFIRMATION); ?$breadcrumb->add(NAVBAR_TITLE_1, tep_href_link(FILENAME_CHECKOUT_ADDRESS, '', 'SSL')); ?$breadcrumb->add(NAVBAR_TITLE_2); ?$address = tep_db_query("select entry_postcode as postcode, entry_country_id as country_id from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . $customer_id . "' and address_book_id = '" . $sendto . "'"); ?$address_values = tep_db_fetch_array($address); ?$total_weight = $cart->show_weight(); ?$total_count = $cart->count_contents(); // load shipping modules as objects ?require(DIR_WS_CLASSES . 'shipping.php'); ?$shipping_modules = new shipping; ?$shipping_modules->quote(); ?if ( ($shipping_quoted == '') && (MODULE_SHIPPING_INSTALLED) ) { // Null if no quotes selected ? ?tep_redirect(tep_href_link(FILENAME_CHECKOUT_ADDRESS, '' , 'SSL')); ?} // load payment modules as objects ?require(DIR_WS_CLASSES . 'payment.php'); ?$payment_modules = new payment; ?require(DIR_WS_CLASSES . 'order_total.php'); ?require(DIR_WS_CLASSES . 'order.php'); ?$order = new order; ?$order_total_modules = new order_total; ?> ? ? ?<tr> ? ? ? ? ? ?<td ><br><table border="0" width="100%" cellspacing="0" cellpadding="0" > ? ? ? ? ? ? ?<tr> ? ? ? ? ? ? ? ?<td colspan=2 class="infoBoxHeading"><?php echo TABLE_HEADING_SHIPPING_INFO; ?></td> ? ? ? ? ? ? ? ?<td ?class="infoBoxContents" align="right"><?php if (tep_count_shipping_modules() > 1) echo TABLE_HEADING_SHIPPING_QUOTE; ?></td> ? ? ? ? ? ? ?</tr> ? ? ? ? ? ? ? ? ? ? <tr> ? ? ? ? ? ?<td colspan=2><?php echo $shipping_modules->display(); ?></td> ? ? ? ? ?</tr> ? ? ? ? ? ? ? <tr> ? ? ? ? ? ? ? ? ? ? ?<td colspan=2 class="infoBoxHeading"> Total cost if you order today:</td> ? ? ? ? ?</tr> ? ? ? ? <?php ?if (MODULE_ORDER_TOTAL_INSTALLED) { ? ?$order_total_modules->process(); ? ?echo $order_total_modules->output(); ?} ?> </table></td> ? ? ? ? ?</tr>
  4. Is there any contribution would help me to backup oscommerce images directory. As i couldnot download it with my FTP program it is saying permison denied specificly for images nothing else?
  5. 65.214.36.117 1217 customers online. When i clicked on who is online. I ve been using oscommerce for about a year and this is getting worst everyday :cry:
  6. No success. Using robots.txt and baning all search engines did not simply work I am still under attack 65.214.36.117
  7. Thank you. It really helped. I am going to disallow all search engines
  8. This month my site spent 30 Gb of bandwith and it is costing me fortune as it is caused by search engines. What can i do. I dont know anyway to stop this bandwidth destruction. Please help me.
  9. The problem is the time. I have anline shop quicklyshop.com also i am trying to manage a a hosting site quicklyweb.co.uk. Also i work part time for an IT company. I only get 4-5 hours sleep daily. Otherwise i wouldn't mind to work on this project.
  10. Actually we don't really need hidden database contribution. We can keep everything simple as possible. We need start with adding 3 more columns in to the product description. First colums may be either yes or no. If yes list the item else do not list Second column Listing quantity Third column Listing price We can add cron jobs to automate the listings and on every listing the stock will be decreased. We will need to create another cron jobs to pull sold auctions from ebay send and winning bidder notifications to buyers. After that sold auctions will be added to a seperate mysql table. After this point we can create a special page for buyers to enter their auction number and user name and checkout. After checkout order will be added to oscommerce orders table.
  11. How can i use Customer specific pricing and Quantity price breaks contribution together? or are there any other contribution does this 2 things together?
  12. You could consider to use Worldpay. I currently use them and their customer service is great. :twisted:
  13. I assume there is no solution for people using older snapshots. The current worldpay module 1.4 or 1.3 is not working on noverber snapshot . How can we solve this?
  14. Is there any contribution for ANYPAY.COM . I want to use them as i just gave up on paypal because of high amount of chargebacks.
×
×
  • Create New...