Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Wendy James

Archived
  • Posts

    4,011
  • Joined

  • Last visited

1 Follower

About Wendy James

  • Birthday 05/07/1969

Profile Information

  • Real Name
    Wendy James
  • Gender
    Female
  • Location
    Alabama USA
  • Interests
    Lots of interests but mainly my pets, spending time with my husband and just enjoying life. : )
  • Website

Wendy James's Achievements

  1. Happy Birthday!

  2. Wendy James

    Paypal Error

    They are not. It has something to do with the paypal module. I am trying to sort out the same exact problem using the paypal IPN contribution but haven't found any answers yet.
  3. Ok, another issue I am not sure what to do about. If someone enters an invalid code you get Fatal error: Call to a member function on a non-object in c:\program files\easyphp1-8\www\shop\checkout_confirmation.php on line 74 this is line 74 tep_redirect( tep_href_link( FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode( implode( ' ', $donation->get_messages() ) ), 'SSL' ) ); //redirect to the payment page if you remove that line everything works and takes you to the next page but no error is shown that the code they entered was invalid so I am trying to fix that. I changed the line to tep_redirect( tep_href_link( FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_INVALID), 'SSL' ) ); //redirect to the payment page that made the define in english.php define('ERROR_INVALID', 'The code you entered is not correct, please try again.'); and noticed most of the errors have wo defines for them so I made this as well define('JS_ERROR_INVALID', '* The code you entered is not correct, please try again.\n'); but not sure how to add that or where to add it to. As it stands now that part of the script works (no longer gives the fatal error) but does not give me back an error message, even with the defines. Anyone have a clue?
  4. Ok, I noticed no one said anything but even if you don't know how to fix it... has anyone installed this and had the same issue or was it installed and working ok? If I knew that I would at least know enough to check my work again. Maybe I goofed something, although I did go over everything about 100 times now. You never know though so I would love to know if anyone has this running. :) Thanks!
  5. Hello, This is a fantastic contribution and does just what my friend wants it to do but the reports page is not working and I am not sure why. Has anyone installed this and sorted it out? Sorry, I thought more information may help. It seems the information is not being passed to the database for the donations_to_order table. After placing several orders everything seems to work ok, and the information is on the invoices but it is not being added to the donations_to_order table which is where the report page is trying to get the information from.
  6. I saw a fix for the admin side but not the store side... I might have missed it but just in case, open shopping_cart.php and change $gift_query = tep_db_query("SELECT fg.*, p.products_id, p.products_model, p.products_price, p.products_image, p.products_status, pd.products_name FROM " . TABLE_CARROT . " fg, " . TABLE_PRODUCTS . " p LEFT JOIN " . TABLE_PRODUCTS_DESCRIPTION . " pd ON (pd.products_id=fg.products_id) WHERE pd.language_id = '".$languages_id."' AND p.products_id = fg.products_id AND p.products_status = '1' ORDER BY fg.threshold ASC"); to $gift_query = tep_db_query("SELECT fg.*, p.products_id, p.products_model, p.products_price, p.products_image, p.products_status, pd.products_name FROM (" . TABLE_CARROT . " fg, products p) LEFT JOIN products_description pd ON (pd.products_id=fg.products_id) WHERE pd.language_id = '".$languages_id."' AND p.products_id = fg.products_id ORDER BY fg.threshold ASC");
  7. I am trying to install this contribution for someone and I get this error Fatal error: Call to undefined function: display() in /home/waterbiz/public_html/admin/categories.php on line 617 The line of code it is talking about is echo Display($pInfo->products_id); I am confused by two things... 1. why is it asking to show the products ID? Shouldn't this be the field where you are entering the correct zone or fee or whatever it is that should be added on a per product basis and if not... 2. where is that field suposed to be? It doesn't show up anywhere... if I remove the line of code causing the error the page works fine but there is no place to fill in any info. Like the other people there are tax zones set up. Any ideas?
  8. I was not supporting a fork. I was suggesting contributions for someone to put in their store. I have a store I call my "superstore"... doesn't automattically mean someone wants to create a fork. I do not and will never support forks and refuse to work on them : )
  9. Guessing here because it is late but I think $image .= '>'; there like $image .= ' class="whatever">'; if that doesn't work you could try changing $image = '<img src="' . tep_output_string($src) . '" border="0" alt="' . tep_output_string($alt) . '"'; to $image = '<img src="' . tep_output_string($src) . '" class="whatever" border="0" alt="' . tep_output_string($alt) . '"';
  10. TinyMCE is a better editer if you ask me. : ) Define Content is also a great contribution to use and I put it in all of my stores. I used to use the extra infopages contributions and those are good if you will need lots of extra pages but most people don't. Personally I hate the template systems and will never use them, half of the contributions I use are a pain in the butt to install when you use templates. If you are going to use PayPal I would suggest the osCommerce paypal IPN module. Purchase without account is good, css buttons everywhere, infobox customizer and lots of other good ones for editing the layout... heck I could go on and on and never list one of the contributions you put up although I do use some of them. There are just so many contributions and each person I do sites for usually has different wants or needs and don't want to bother with sites that have tons of stuff they will never use.
  11. http://www.oscommerce.com/community/contributions,1540 it is on the product page like an option
  12. http://www.oscommerce.com/community/contributions,1852 or http://www.oscommerce.com/community/contributions,2980
  13. This is probably going to sound silly but do you have a merchant account on top of having authorize.net? A place for authorizenet to send the "money" or transaction info to. I know someone who had authorize but thought they handled everything and he did not have a merchant account and when he tried to make purchases it just kept sending him back to the payment info page. As soon as he got a merchant account and gave authorize.net the info everything worked as it should.
  14. I am having the same issue... Everything works ok except for the all articles or new articles. Anyone come up with a fix? I stink at this stuff. :) For right now I just have those options turned off in admin but it would be great if someone knew how to fix the problems for mysql5 Thanks!
×
×
  • Create New...