Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

sackling

Members
  • Posts

    304
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by sackling

  1. Also on 2.3.2 and getting the same error: atal error: Call to a member function query() on a non-object in /home/mysite/mysite.com/admin/advanced_statistics/general_functions.php on line 47
  2. And I just checked, Login.php is defined in filenames.php and there is also a login.php file in languages/english/ Login.php is not showing up in the page control admin page. If I rename login.php to login2.php then it shows up in the drop down, But if I change it back to just login.php it is gone again! EDIT: I just found your post. I made a stupid:
  3. on page control in admin. There are certain pages that are missing, I am guessing because I have not included the code on them as it says right on that page? But I don't see any mention of a specific code to include on pages in install_catalog.txt Further, I have looked at some of the pages that are included in the drop down on page control, and I don't see any code on them that would make them be included? What am I missing?
  4. Yea to be honest it was not such a problem for me since there are not many specifications at the moment so just inserting via sql was pretty easy. But I can see it being a big pain if in the future I would need to add a new language like that.
  5. Right that makes sense, The only thing that I think is a "bug" is that if I type a name in the second blank language box, It should then be added. So right now I have English and French, the English says color, the french is blank. If I add color to the french box, it should add it as language_id 2 but it just stays blank. I think that is buggy.
  6. I think I found a bug. If you defined a specification in 1 language, save it, and then edit it and add a second language the second language does not get added to the database. I am guessing because the form submits as an UPDATE query but since that specification does not exist in the database yet it is not being added. I am in the process of turning my store into a multi lingual one, That is why I am facing this issue. I can duplicate the entries in the database directly and change the language ID but that takes a lot of time, and is not the cleanest. So maybe I will look into fixing it in the code/
  7. @@geoffreywalton I ended up making the changes myself in the payment module, the redirect url was simply the payment page. Changed it to the confirmation page. I am actually trying to add the comments box to the checkout_confirmation page now with no success. (since it is skipped on the payment page). basically I have: if (!tep_session_is_registered('comments')) tep_session_register('comments'); if (isset($_POST['comments']) && tep_not_null($_POST['comments'])) { $comments = tep_db_prepare_input($_POST['comments']); } In the header and then in the form: <?php echo tep_draw_textarea_field('comments', 'soft', '60', '5', $comments, 'style="width:99%;"'); ?> I'm not sure where else to look. Any ideas? EDIT: done by changing comments in checkout_process to 'comments' => stripslashes($_POST['comments']));
  8. Hi Geoffrey, I'm looking to skip the payments page (since there is only 1 option). I would like the payment errors to be shown on checkout confirmation though. I don't think your addon would work for this would it? Also the total would never be 0 when getting to the payment page.
  9. Thanks Jeff for the error message code! As it turns out (I am in Canada) and even though my authorize.net account is in canadian funds it uses USD and the CAD was throwing it off. I think this is actually a problem with authrorize.net since I am a canadian account why would they show USD. Anyways works now
  10. I am getting an added fee at checkout_confirmation on deliveries to home addresses and I am not sure why. the rate on checkout shipping shows 10.47 for ex. then if the address has no company the amount on checkout confirmation shows 13.84 I have the home delivery fee set to 0 in the admin. If I add a company during checkout shipping, the rate remains 10.47. I am using a simple checkout addon so it very well could be that, and while I'm typing this I'm more confident it is that, but I was curious if there is any place you know I should look or if you ever experienced anything similar. Thanks
  11. Thanks for clearing that up roaddoctor, makes sense. So now everything is working. This addon has none of the label printing/ tracking capabilities of the older fedex module does it? and if not, is there one that is best to install that works with oscommerce 2.3? or should I start hacking away at: http://addons.oscommerce.com/info/2244 to try and get it to work?
  12. Hi, I just installed the module and all is working well. I have a couple questions: 1) how is the home delivery option calculated? I set it to 3 in the admin, but how does the module "know" when it is a home address? It would be great if it were automatic, but that does not seem to be the case. 2) is there a way to show ETA? If I keep all the options the users might not know the difference between all the options. Thanks
  13. I found it in my functions/general.php tep_get_all_get_params was not the same as in the contrib.
  14. I'm getting a problem with the X url for the filter. When I click the x the page just reloads. I did some digging and I echod the url of the X, and it looks as if it is encoded but not decoded: /products_filter.php?f4%5B0%5D=0-50&cPath=21 The URL of the page after clicking a filter (checkbox) is exactly that as well. If I remove the encoding from the url and just refresh the page to: /products_filter.php?f4=0-50&cPath=21 then clicking the X works. I also have a filter that is images (exact) and when clicked the url is fine and everything works. So it is related to the checkboxes. I've tried looking all over but can't seem to fix it. Any help is appreciated!
  15. aannnd I just realized I never checked out gv_send.php looks good!
  16. Just an addon to my last post. According to the add-on description it says the following: Customers can send GC Balances to friends via email Am I missing out on how this is done? I bought a test gift certificate and then approved in in the admin. But now I can only seem to apply it to my orders on checkout.
  17. I have the module installed and working. I have a question about gift cards though. Right now how it works is, someone pays for the gift card. then the card is approved and the amount is credited to their account. I'm not sure anyone will do this though? At least not for my store which is selling physical goods. The way I pictured it is people would have the ability to enter someone's email, and then the gift card would be emailed to them with the ability to create the account or use an already created account. Is this possible without further modification? Or do people use gift cards differently?
  18. Hey thanks for the post. You were right probably. I just had the same problem and it was because the weight of the items were all 0 (which I had because we use flat rate shipping and never bothered to change it.
  19. I am having the same "problem" with this add-on. It took me a while but I figured out what was going on. The "number of use" should really be renamed to: "number of use per user" So if it is 1, the same user can only use it 1 time, but anyone else can use it. This is not the functionality that I want per se.. I need the codes to sometimes act as gift codes. I will have to look into either another add- on or try to hack something in. but just a heads up for anyone else if it's hard to understand what is going on/ why it sometimes seems to work.
  20. ah ok thanks. I guess I changed them some time ago.
  21. Is it just me or shouldnt the new create_account.php be replacing login.php? As you have it now there is still a login page. and then when the user clicks create account from that page it brings them to the new page (obviously). Did you forget to include that in the instructions or am I missing something?
  22. Never mind figured it out by moving the delete to only delete if the product categories ==0 like so: if ($product_categories['total'] == '0') { tep_remove_product($product_id); /* Optional Related Products (ORP) */ tep_db_query("delete from " . TABLE_PRODUCTS_RELATED_PRODUCTS . " where pop_products_id_master = '" . (int)$product_id . "'"); tep_db_query("delete from " . TABLE_PRODUCTS_RELATED_PRODUCTS . " where pop_products_id_slave = '" . (int)$product_id . "'"); //ORP: end }
  23. Hey all, I have been using this contribution for a while quite successfully. One annoying thing I have found though is: I have the same product copied to a few different sections. So for example I have a necklace in a section called royal, Cool, and another section called new arrivals. when I delete the product from one of the categories oscommerce asks me if I want to delete it from the other 2 categories as well. I choose not to as I just want to remove it from new arrivals for instance. No matter which one I delete it also removes all the related products even if I still have the product in 2 other categories. This doesnt matter if it is the original product created or a copy it always deletes the related products for that item. Is there any way to fix this issue? Thanks for any help/tips.
  24. This seems to have happened out of nowhere. No changes were made to the site or my paypal account. All of the sudden after selecting paypal on the payment page and then being taken to the paypal portal the order summary is blank. It still lets me login and complete the transaction I believe but it does not seem to add the tax to the amount at the end. I am not sure what to even check?
×
×
  • Create New...