Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Wendy James

Archived
  • Posts

    4,011
  • Joined

  • Last visited

Posts posted by Wendy James

  1. 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.

  2. 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?

  3. 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!

  4. 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.

  5. I am having a small problem with this contribution, i've installed it and i believe everything should be working fine, but when i try to go to the add_gift.php page i get this error;

     

    1054 - Unknown column 'fg.products_id' in 'on clause'
    
    SELECT fg.*, p.products_id, pd.products_name FROM free_gifts fg, products p LEFT JOIN products_description pd ON (pd.products_id=fg.products_id) WHERE pd.language_id = '1' AND p.products_id = fg.products_id ORDER BY fg.threshold ASC
    
    [TEP STOP]

     

    It seems like its a problem with my database or so, but i dont know what.. does anyone have an idea?

     

     

    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");

  6. 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?

  7. 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 : )

  8. 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) . '"';

  9. 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.

  10. 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.

  11. 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!

     

     

     

    Hi,

     

    I've installed your contribution version 1.4 and in the admin panel seems to be working fine.

     

    it even looks the part on the home page of my site here

     

    However, when you click on the new articles or all articles links on the right i am presented with the following errors:

     

    New Articles:

    All Articles:

    Having done a bit of research i am of the opinion that this is due to the version of mysql that my server is running (5.0) and that a downgrade to say 4.1 would solve this issue straight away.

     

    I have spoken to my hosting company and as i am on a shared server it is not viable for this mysql downgrade to happen.

     

    So, what i am asking is if there is a 'patch' or 'fix' for this problem without having to go down the mysql version downgrade route???

     

    Any help on this matter will be greatly appreciated.

     

    Many Thanks

    D4

  12. Hi,

     

    I am trying to use this on a site that is using Arabic as one of the language choices. I have 3 problems that I know of and was hoping someone would know what to do.

     

    1. There is no way to add a second language to the meta tags. ie: Default title, Default Description, default keywords are in English. There is no way to choose a page to fill this out in Arabic. I realise you can just type it all out on the one page but the client is bugging about having 2 seperate pages plus...

     

    2. The Arabic language file is not updating when you go into Fill Tags. I have checked it has the propper permissions, even went as far as to chmod them 777 to see if that would help.

     

    3. The names of the products and categories have been added from admin in Arabic as well as English but when viewing the source code on a product or category page the code is messed up. ie: the page itself has the correct letters but the meta tag just has funky letters/code. Like الخرشوف comes out as ??????? which appears as square boxes in the browser window.

     

    I have never used this contribution on a multilingual site before so I am stuck, and have never done a site in Arabic so I have 2 strikes against me trying to figure this out. Any suggestions are welcome. : )

  13. Hi,

     

    I am trying to use this on a site that is using Arabic as one of the language choices. I have 3 problems that I know of and was hoping someone would know what to do.

     

    1. There is no way to add a second language to the meta tags. ie: Default title, Default Description, default keywords are in English. There is no way to choose a page to fill this out in Arabic. I realise you can just type it all out on the one page but the client is bugging about having 2 seperate pages plus...

     

    2. The Arabic language file is not updating when you go into Fill Tags. I have checked it has the propper permissions, even went as far as to chmod them 777 to see if that would help.

     

    3. The names of the products and categories have been added from admin in Arabic as well as English but when viewing the source code on a product or category page the code is messed up. ie: the page itself has the correct letters but the meta tag just has funky letters/code. Like الخرشوف comes out as ??????? which appears as square boxes in the browser window.

     

    I have never used this contribution on a multilingual site before so I am stuck, and have never done a site in Arabic so I have 2 strikes against me trying to figure this out. Any suggestions are welcome. : )

  14. I haven't been able to find that thread but how can it not be effected? You are being sent to a totally different url to get the shipping costs.

     

    I wish I knew coding more because this needs to be solved somehow. Lots of people are going to have problems if it isn't. I have one client now having issues because his pricing is off and USPS said it was due to the changes and he would need to change the code for the module.

  15. One option would be to set donation prices up as attribute/options.

    Then you could set them up as 5, 10, 15, 20, 50, 100... whatever.

     

    If you are using paypal, you could use the paypal donation option as a link somewhere on the site. I did that for a cancer organization I made an osCommerce store for.

     

    Maybe the Make An Offer contribution could be modified to fit your needs? http://www.oscommerce.com/community/contributions,3034

     

    Just my suggestions. : )

×
×
  • Create New...