Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

ScooterProShop.com

Archived
  • Posts

    93
  • Joined

  • Last visited

Everything posted by ScooterProShop.com

  1. Another informative site for PayPal issues is: Link I have been using PayPal for almost a year now ... they have frozen my account several times, created issues with customers and I have also been ripped off several times by fraudulent charges. (Frozen acct = No Transactions incoming or outgoing for over 90 days.) - This will PISS you off royaly if it is your only Payment gateway. - It stops your business. This all comes with using PayPal as a paypment gateway, so the money you save not using an actual merchant account ends up being spent to resolve PayPal scams and chargebacks, and monies lost while your account is frozen. I still use PayPal, but wish I could use a Merchant Service instead. My business is not yet profitable enough to take that step, so I live with the BS from PayPal.
  2. There is no link between your computer / Internet and your CC machine. Never will be a link, or a need for one. That would also be a HUGE security issue. Just process the orders manually. Get the Credit Card # from the Orders page / Email and process them manually. That simple. If you want to process them automatically .. you will need an eCommerce solution as well .. that CC machine won't help in that case. Call your Merchant services rep and they will direct you to the additional services. (not free by the way.) Hope this helps.
  3. Non users are allowed to pay ?!?!?! What a nightmare! Scammers and fraudulent users are going to have fun with this one. OMG NO! I am glad I don't use PayPal anymore. Oh and if you haven't seen the PayPal Horror stories .. go to: PayPal Sucks Link Good Luck!
  4. PayPal Sucks Good Luck with PayPal! I hope you have a good lawyer for them!
  5. VirtualPAYsm module for OScommerce ms2.2 National Processing Company (NPC) Anyone working on a module for this one ? I should have my VirtualPaySM account in <2 weeks. Any help is much appreciated. TIA !
  6. I am setting that up as well. I do not see a module for NPC at all ... anywhere. I do not yet have my NPC account setup, but isn't there a way to manually process the Credit card information from a secure NPC website account ? If so, you can just use the Accept Credit Cards option (Using SSL) and manually enter the information. (Maybe better this way anyways - may catch errors or frauded cards.) If you want to avoid having to use SSL ... then maybe a redirecting module (like paypal) can be used ... I will have to dig into this one.
  7. I got it fixed. I forgot that I had added a BUY NOW button. IT appears that the code for the BUY NOW button does not work with this contrib. I removed the code and it is working as expected. I suppose I will have to look into adding that to the code at a later date.
  8. Trying to correct an issue with this contrib. http://www.oscommerce.com/community/contributions,651 If I put a product on special, it doesn't show up in the rotation. Sometimes a blank space shows in the space where it should show up. Sometimes it only lists 6 products instead of 9. Anyone know how to fix this ? Hit my WWW and see for yourself. I have 1 product on special. This product is listed as a featured product.
  9. It does, but no BUY NOW button. I was told in a previous post that this code may have to added elsewhere. Currently if a product is on special it has no Buy Now button. I would like to show the BUY NOW button on the products on special also.
  10. Ok here is the next step. Getting the Code to work for items on "special". The code I have is working great [in my previous post]. This I am told needs to be added to a seperate file for items on special. Anyone care to takle this one? What code and Where do I put it? I think this code: 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $featured_products['products_image'], $featured_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . $featured_products['products_name'] . '</a><br>' . $currencies->display_price($featured_products['products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '<br><a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $featured_products['products_id']) . '">' . tep_image_button('button_buy_now.gif', IMAGE_BUTTON_BUY_NOW) . '</a>'); But am not sure what file to put it in, or where it goes.
  11. And the same on my site. When you go to buy a Main product it has attributes for the customer to select. Perhaps it is better to leave it the way it is then. When I go to buy a product on my site (parts) that does not have attributes, it goes to shopping cart as it should. I am happy the way the code is. Agreed? Here is the code I have: <?php /* ?osCommerce, Open Source E-Commerce Solutions ?http://www.oscommerce.com ?Copyright (c) 2002 osCommerce ?Released under the GNU General Public License ? ?Featured Products V1.5 - Updated w/buy now - add to cart ?Displays a list of featured products, selected from admin ?For use as an Infobox instead of the "New Products" Infobox ? */ ?> <!-- featured_products //--> <?php if(FEATURED_PRODUCTS_DISPLAY == 'true') { ?$featured_products_category_id = $new_products_category_id; ?$cat_name_query = tep_db_query("select categories_name from categories_description where categories_id = '" . $featured_products_category_id . "' limit 1"); ?$cat_name_fetch = tep_db_fetch_array($cat_name_query); ?$cat_name = $cat_name_fetch['categories_name']; ?$info_box_contents = array(); ?if ( (!isset($featured_products_category_id)) || ($featured_products_category_id == '0') ) { ? ?$info_box_contents[] = array('align' => 'left', 'text' => '<a class="headerNavigation" href="' . tep_href_link(FILENAME_SPECIALS) . '">' . TABLE_HEADING_FEATURED_PRODUCTS . '</a>'); ?list($usec, $sec) = explode(' ', microtime()); ?srand( (float) $sec + ((float) $usec * 100000) ); ?$mtm= rand(); ? ?$featured_products_query = tep_db_query("select p.products_id, p.products_image, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_status = '1' and f.status = '1' order by rand($mtm) DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS); ?} else { ? ?$info_box_contents[] = array('align' => 'left', 'text' => sprintf(TABLE_HEADING_FEATURED_PRODUCTS_CATEGORY, $cat_name)); ? ?$featured_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, s.status as specstat, s.specials_new_products_price, p.products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c left join " . TABLE_FEATURED . " f on p.products_id = f.products_id where p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and c.parent_id = '" . $featured_products_category_id . "' and p.products_status = '1' and f.status = '1' order by rand() DESC limit " . MAX_DISPLAY_FEATURED_PRODUCTS); ?} ?$row = 0; ?$col = 0; ?$num = 0; ?while ($featured_products = tep_db_fetch_array($featured_products_query)) { ? ?$num ++; if ($num == 1) { new contentBoxHeading($info_box_contents); } ? ?$featured_products['products_name'] = tep_get_products_name($featured_products['products_id']); ? ?if($featured_products['specstat']) { ? ? ?//$info_box_contents[$row][$col] = array('align' => 'center', ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //'params' => 'class="smallText" width="33%" valign="bottom"', ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $featured_products['products_image'], $featured_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . $featured_products['products_name'] . '</a><br><s>' . $currencies->display_price($featured_products['products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '</s><br><span class="productSpecialPrice">' . ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? //$currencies->display_price($featured_products['specials_new_products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '</span>' . '<br><a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $featured_products['products_id']) . '">' . tep_image_button('button_buy_now.gif', IMAGE_BUTTON_BUY_NOW) . '</a>'); ?} else { ? ?$info_box_contents[$row][$col] = array('align' => 'center', ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'params' => 'class="smallText" width="33%" valign="bottom"', ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $featured_products['products_image'], $featured_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $featured_products['products_id']) . '">' . $featured_products['products_name'] . '</a><br>' . $currencies->display_price($featured_products['products_price'], tep_get_tax_rate($featured_products['products_tax_class_id'])) . '<br><a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $featured_products['products_id']) . '">' . tep_image_button('button_buy_now.gif', IMAGE_BUTTON_BUY_NOW) . '</a>'); ?} ? ?$col ++; ? ?if ($col > 2) { ? ? ?$col = 0; ? ? ?$row ++; ? ?} ?} ?if($num) { ? ? ? ? ? ?new contentBox($info_box_contents); ?} } else // If it's disabled, then include the original New Products box { ? include (DIR_WS_MODULES . FILENAME_NEW_PRODUCTS); } ?> <!-- featured_products_eof //--> The way I see it, is that this code is suitable for buyer needs and will be compatible amoung all markets, making this contrib that much better.
  12. So is there actually no way to get a BUY NOW button to add a product to the cart from the featured products on the main page? There has got to be a script error of some sort causing this behavior. I don't think this is an actual bug, I think it is more/less an error in the code somewhere. I am not a programmer so my ability to sift through the code is nill to null. I will keep playing with the code to see if I can get it working also. The code will have to include the product attribute options as well. This will be tough. heh?
  13. This code is in place. It still does not add product id to cart. Just goes to Product info page. hmmm.
  14. Well this is getting even more complicated. I just ran a test and I have many products that have color options and such. Is there a way to also have it check for those options and make that selection available in the shopping cart also .. like duplicate the drop down on the product page for that product id "attributes". Continue will proceded as if they were on the product page ... err this is tricky. If I can't do that .. then this is a wash for me. I need to have the options selection "product attributes" in the shopping cart as well. Ohh I am not much of a programmer, but this sounds like a PITA.
  15. Nope ... no change at all. I see the code changes in the source .. but it does nothing different than the first code I tried. (above) It goes to cart, but doesnt add the product to it. Take a look at my WWW link ... the code is in place now.
  16. Ok .. if I can even find where that line is .. I will do that. (low priority I suppose) I would like to fix this BUY NOW code to act as a "Add to Cart" - That just makes more sense to me since a customer can click on the image to get to the product page. This Buyer that I am targeting wants to buy it NOW and doesnt need any more information! - lol Ok here is what I tried. Line 51 /includes/modules/featured.php Changing: 'action=buy_now&products_id=' To: 'action=add_product&products_id=' Gets me to the cart, but the product doesnt get added. I am trying at least ! - What do I need to add to that code to make it include the product ?
  17. Excellent work! That fixed the BUY NOW issue. It now goes to the product information page the same as if they click on the image. I suppose it would be nice to have the BUY NOW act as an ADD TO CART button but that may be a bit complicated. No? The issue with the "Specials" products still do not display the BUY NOW button. Is that an easy fix? I do like to give customers a break on pricing, but this is an all or nothing type of modification. I will post the entire code for featured.php as soon as this issue is resolved. That way perhaps the author can either add it to the contrib, or be an option for those like me that want to add it.
  18. A BUG! LOL! The Buy Now button appears but, when clicked it just goes to shopping_cart.php ?!?! Doesnt add onything to cart. The Buy Now button also won't display on products "On sale" or called "Specials" Can you fix that? Or is that a show stopper?
  19. OK I am looking for the code to replace or where to add it. A line # would be great ... I would like to add it just below the image, like you have it on your test site.
  20. What file do I add the code to and where ? Got the file: /includes/modules/featured.php Now where do I add it ?
  21. Ok, I have Featured Products installed. No Errors at all. Beautiful contrib. ty! Request: Can someone help me or PM me the code changes to add a BUY NOW button to each product?, or make the changes in the code and post it here ? I am sure many would like to add this. Any help is appreciated.
  22. 3rd Issue (moving along) This is after a customer subscribes to the newsletter and gets the confirmation email. In the email is a link for a customer to manage their subscription status through a subscription center page. Nice feature. I as the customer, follow the link and get a blank page when I try to access the Subscription Center to modify my subscription status. BOOO! I am not happy and feel SPAM coming on from this subscription I just signed up for. Not good. I panic and call the 800 # and tell them to piss off. (dramatized a bit, but who knows?) For testing reasons I will link that page HERE. That is all I get. Any ideas how to fix this up ?
  23. 2nd issue: Admin Location: /catalog/admin/newsletters_subscribers_view.php Action: In [subscrivers Admin] Click on Red or Green button light under the Subscribe Heading Error: Fatal error: Call to undefined function: tep_set_newsletter_status() in /home/haxor/scooterproshop.com-www/catalog/admin/newsletters_subscribers_view.php on line 21 <?php /* ?$Id: customers.php,v 1.71 2002/04/29 15:12:19 hpdl Exp $ ?osCommerce, Open Source E-Commerce Solutions ?http://www.oscommerce.com ?Copyright (c) 2002 osCommerce ?Released under the GNU General Public License */ ?require('includes/application_top.php'); ?if ($HTTP_GET_VARS['action']) { ? ?switch ($HTTP_GET_VARS['action']) { ? ? ?case 'setflag': ? ? ? ?if ( ($HTTP_GET_VARS['flag'] == '0') || ($HTTP_GET_VARS['flag'] == '1') ) { ? ? ? ?if ($HTTP_GET_VARS['cID']) { 21->? ?tep_set_newsletter_status($HTTP_GET_VARS['cID'], $HTTP_GET_VARS['flag']); ? ? ? ? ?} ? ? ? } ? ? ? ?tep_redirect(tep_href_link(FILENAME_NEWSLETTERS_SUBSCRIBERS_VIEW, tep_get_all_get_params(array('cID', 'action')) . 'cID=' . $cInfo->subscribers_id)); ? ? ? ?break; ? ? ? ? ?case 'setflag1': ? ? ? ?if ( ($HTTP_GET_VARS['flag1'] == '0') || ($HTTP_GET_VARS['flag1'] == '1') ) { ? ? ? ?if ($HTTP_GET_VARS['cID']) { ? ? ? ? ? ?tep_set_blacklist_status($HTTP_GET_VARS['cID'], $HTTP_GET_VARS['flag1']); ? ? ? ? ?} ? ? ? } Note: If I click on the Red or Green Light for Blacklist heading, it does nothing at all.
  24. 1st issue Resolved in previous thread: Admin Location: /catalog/admin/categories.php?selected_box=newsletter Action: clicked on [subscribers Admin] in the admin console for Newsletters. Error: Fatal error: Call to undefined function: tep_array_merge() in /home/haxor/scooterproshop.com-www/catalog/admin/newsletters_subscribers_view.php on line 469 Solution: change tep_array_merge to array_merge Before 469 $cInfo_array = tep_array_merge($subscribers, $customer_info); After 469 $cInfo_array = array_merge($subscribers, $customer_info); File: /catalog/admin/newsletters_subscribers_view.php Occurances: 1
  25. Newsletter Module v 0.2 Author: P&G developmment http://www.oscommerce.com/community/contributions,535 I won't go into great detail with all the errors and such, but this Contrib needs some rewrite done to it. I have found numerous lines of outdated code that no longer function correctly. Mostly tep_ functions and such. Fatal error: Call to undefined function: tep_set_newsletter_status() in /home/haxor/scooterproshop.com-www/catalog/admin/newsletters_subscribers_view.php on line 21 18 case 'setflag': 19 if ( ($HTTP_GET_VARS['flag'] == '0') || ($HTTP_GET_VARS['flag'] == '1') ) { 20 if ($HTTP_GET_VARS['cID']) { 21 tep_set_newsletter_status($HTTP_GET_VARS['cID'], $HTTP_GET_VARS['flag']); I also get a blank page when I try to access the Subscription Center to modify my subscription status. This is a great contribution, however it need to be updated and made "current" with the new code changes. I have seen numerous posts on this already scattered throughout the forum. I will add it here because I know this is where the author may look. If the Author of this contribution, or a qualified programmer can debug this I would greatly appreciate it.
×
×
  • Create New...