Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Justin WFCOMICS

Archived
  • Posts

    49
  • Joined

  • Last visited

Profile Information

Justin WFCOMICS's Achievements

  1. I'm glad you've found this contribution useful :). I hadn't had a chance to try getting it to work with Autologon. Maybe someone who has will chime in? Justin =)
  2. Oops, in the above two statements, I meant to say... "Find the file: includes/languages/english/loginbox.php" and "2) Upload it to includes/languages/YOURLANGUAGE/loginbox.php" I neglected to mention that all the languages directories you need to work with are in includes/. Justin =)
  3. And actually, if you login in with the other languages you'll find more of the same problem, it's not just with the "Password Forgotten?" text. However, Matt is basically correct with what he said above. You need a language file for each language you use this contribution with. Specifically, in my contribution... Find the file: languages/english/loginbox.php *NOT* the one in: includes/boxes/loginbox.php Make a copy of that file for each of the different languages you are using osCommerce with, then: 1) Open the file and define all the variable definitions to the appropriate language. They all look like "define ('VARIABLE', 'VALUE')" and just change where you see "VALUE" to the language you are working with. Leave "VARIABLE" alone. 2) Upload it to languages/YOURLANGUAGE/loginbox.php 3) Done B)! I hope this helps!! Justin =)
  4. I've gotten farther with the OrderCheck contribution :). 1) The reason my admin wasn't rendering was becuase it was choking on this from admin/orders_check.php (around line 455): <?php echo HEADING_TITLE_STATUS . ' ' . tep_draw_pull_down_menu('status', tep_array_merge(array(array('id' => '', 'text' => TEXT_ALL_ORDERS)), $orders_statuses), '', 'onChange="this.form.submit();"'); ?> I had to change "tep_array_merge" to "array_merge" for the admin to work. So now the line looks like: <?php echo HEADING_TITLE_STATUS . ' ' . tep_draw_pull_down_menu('status', array_merge(array(array('id' => '', 'text' => TEXT_ALL_ORDERS)), $orders_statuses), '', 'onChange="this.form.submit();"'); ?> 2) After that, like a lot of you, I had duplicate totals so I had to comment out one of these redundant lines: $order_total_modules->process(); 3) But NOW, I have another problem. Whenever I (actings as a test customer) tried to finish my checkout (when getting to the checkout_process.php page) I would get the following error... 1062 - Duplicate entry '1' for key 1 Then if I tried again... 1062 - Duplicate entry '2' for key 1 ...where the problem was the checkout process was trying to use the highest (or max) orders_id from the holding table as the value to complete the order by trying to write an order with that order_id in the regular orders table. In the above example "1" and "2" already existed in key 1 (order_id), or in other words, I already had orders stored as Order Number:1 and 2. What is the best solution? Justin =)
  5. Are you talking about this? http://www.oscommerce.com/community/contributions,1153 Does it work with MS2 okay? I might give it a try. I can't seem to get OrderCheck v1.3 to work :(. Justin =)
  6. That's a bummer :(, have you, by chance, found a fix for this? Justin =)
  7. I haven't actually tried it, but, unforutunately, I don't think it will :(. The fixes I had to make to the original contribution (before adding my enhancements to it) for it to work in MS2 probably made it incompatible with MS1 as the issues I had fixed didn't look like typos, but the result of upgrades to osC (i.e. renamed variables and definitions). Here's the original contribution that I believe will work in MS1... http://www.oscommerce.com/community/contributions,590 ...you can try adding the same enhancements I did to it but keep it compatible with MS1. I hope this was informative! Justin =)
  8. Thanks for chiming in. I hope this helps some people :). Unfortunately, it didn't help with the problem I have :( (see previous post for description). If *anyone* can help with my problem of not being able to view the database (so I can move/delete/etc the held orders) in the ordercheck admin, please let me know. Justin =)
  9. Hey, thanks for chiming in :). I was a little confused on the installation process, so thanks for clarifying that. I was thinking of installing it too. Has anyone else installed this? Can you share with us your experience? Likes? Dislikes? Any bugs? Thanks!! Justin =)
  10. It's official :). http://www.oscommerce.com/community/contributions,1469 I've taken the copy off my server so the link in my first post no longer works. If you are interested in this contribution, you can download it from the above link. I hope this is helpful! Justin =)
  11. I am having the exact problem above. I tried a couple tests where I left osC (one to PayPal and one to 2Checkout) and the orders do appear in the tables as I verified that there was data in them, but on the OrderCheck page (Admin --> Customers -> OrderCheck) the page stops rendering right before displaying the held orders. In other words, when I view the HTML source on this page, it stops right before rendering the held orders. In the admin it creates the top menu bar, left nav. bar, the order ID search function (which works) and stops right after this... <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <form name="orders" action="https://XXXXXXXXXXXXXX.com/catalog/admin/orders_check.php" method="get"> <td class="smallText" align="right">Order ID: <input type="text" name="ocID" size="12"><input type="hidden" name="action" value="edit"></td> </form> </tr> <tr> <form name="status" action="https://XXXXXXXXXXXXXX.com/catalog/admin/orders_check.php" method="get"> <td class="smallText" align="right"> I am using osC 2.2ms2, MySQL 3.22.26a and php 4.3.0. *ANY* help would be greatly appreciated. Thanks in advance! Justin =)
  12. If you're still look'n to using LoginBox, check out :)... http://www.oscommerce.com/forums/viewtopic.php?t=55328 Justin =)
  13. Hey gang, Before I make this into an official contribution, I want to see what you all thought. If you have any additional suggestions for me regarding the documentation, let me know. This contribution originally started as LoginBox 5.0 by Aubrey Kilian and then was modified by Linda McGrath to be both a Login Box and a My Account Box once you were logged in. I made the following fixes, changes and additions.... 1) Fixed Product Notification link (stopped working as of 2.2ms2, now works) 2) Added "Secure Login" link 3) Added "Password Forgotten" link 4) Instead of defining seperate in /catalog/includes/languages/english/loginbox.php, LoginBox now simply uses from catalog/includes/languages/english.php: a) HEADER_TITLE_LOGIN for box title b) ENTRY_EMAIL_ADDRESS for email field label c) ENTRY_PASSWORD for password field label d) HEADER_TITLE_LOGOFF for logoff button when signed in 5) Renamed some defaults in /catalog/includes/languages/english/loginbox.php 6) Reordered My Account Info links to match order in main body 7) Fixed problem where formatting defined in catalog/styleseet.css for boxText (the "E-Mail" and "Password" text) was not applying 8) Other very minor editting and formatting of code Yes, I know that when using SSL with osCommerce the FORM call in the LoginBox *is* secure (FORM is called via HTTPS) and that using the LoginBox on any of the pages is secure, but some site visitors want to see the lock icon on their browser before typing in their password. The "Secure Login" link was put in for those people. http://www.worldfamouscomics.com/oscdownlo...x5_2_wfc1_0.zip I hope this helps and let me know what you think!! Justin =)
  14. I'm still having a problem with the contribution myself (see my previous post), but to answer your question. Yes those assumptions are true. However, to address your set of problems, change "Use cURL" to "False", despite it being detected on your system. When I did this, as stated in my above post, I stopped having the problem of orders still saying "PayPal Processing" and having nothing in my PayPal IPN transactions. I hope this helps. Good luck to both of us. Justin =)
×
×
  • Create New...