Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

homewetbar

Pioneers
  • Posts

    680
  • Joined

  • Last visited

Everything posted by homewetbar

  1. I got it fixed, FYI for those of you who either have problems with a sid being attached to your url or the & problem I suggest you go back to 2.0b and install redirect urls in the contrib page as well. I reverted back to that after installing the newest version and it fixed everything and it is a little faster too! :D
  2. I upgraded to the newer version of SEO URLs this week and I also installed the & fix listed on the contribution page. However now I'm getting two new problems: When a url is redirected say after you submit something and it has a '&' it is output as a url with '&;' causing the url to fail or information to be lost; leading me to believe that fix does not work, how can I fix the fix??? Also, when I enable page cache I start getting oSsids, disable it, no sids; I thought they were supposed to work together, what is causing this??? Thanks in advance for your time!
  3. Nice contrib! :thumbsup: However, I would like to make the popup image only resize once. On the initial open I would like it to open to the size of the biggest image and then not resize again like amazon.com does. For example: http://www.amazon.com/gp/product/B0007KQWG...5Fencoding=UTF8 has multiple images but the window just opens to the largest size on default. Its a little more professional that way I think, can you provide some insight on how to modify the code to do this? Thanks in advance!
  4. Right this is only one part of AVS, not the entire AVS as you said earlier: Click to deselect the checkbox labeled Address information for cardholder is unavailable (U) That is correct it needs to be disabled as well as oscommerce must recognize it as a valid cc and currently it does not always, which is why I started the thread. :thumbsup:
  5. I know yeah yeah yeahs fix worked for you but I had the same problem when I upgraded to a newer server and newer version of PHP and the first fix did not work. To fix it I had to change line 310 from a relative reference to an absolute reference like his second fix suggested. To fix the error I changed line 310 to: $fp = fopen(DIR_FS_ADMIN . 'images/fedex/post.txt', 'w');
  6. The reason why I said that had nothing to do with spite or me being mean to you. It had to do with you are basically telling people to disable a very important part of credit card verification leaving them wide open to fradulent orders not to mention unqualified transaction fees. But the fix I mentioned in my previous post is only part of the solution the other part is someone needs to figure out how to identify the new credit cards and allow them to be sent to the CC processor for verification, whereas currently osCommerce says they are invalid currently before even sending them to the CC company for verfication.
  7. Thanks biqiang and Amanda that fix worked to fix my: "Wrong datatype for second argument in..." Error too! It should be included in newer versions if there are any as the bug did not affect me until I upgraded my version of PHP, so it likely applies to everyone with newer versions of PHP.
  8. I'm trying to install this registered globals off contrib and I've run into a snag, the newer version of oscommerce modifies the includes/functions/sessions.php to include a necessary security fix changing the function tep_session_start() variable to: function tep_session_start() { global $HTTP_GET_VARS, $HTTP_POST_VARS, $HTTP_COOKIE_VARS; $sane_session_id = true; if (isset($HTTP_GET_VARS[tep_session_name()])) { if (preg_match('/^[a-zA-Z0-9]+$/', $HTTP_GET_VARS[tep_session_name()]) == false) { unset($HTTP_GET_VARS[tep_session_name()]); $sane_session_id = false; } } elseif (isset($HTTP_POST_VARS[tep_session_name()])) { if (preg_match('/^[a-zA-Z0-9]+$/', $HTTP_POST_VARS[tep_session_name()]) == false) { unset($HTTP_POST_VARS[tep_session_name()]); $sane_session_id = false; } } elseif (isset($HTTP_COOKIE_VARS[tep_session_name()])) { if (preg_match('/^[a-zA-Z0-9]+$/', $HTTP_COOKIE_VARS[tep_session_name()]) == false) { $session_data = session_get_cookie_params(); setcookie(tep_session_name(), '', time()-42000, $session_data['path'], $session_data['domain']); $sane_session_id = false; } } if ($sane_session_id == false) { tep_redirect(tep_href_link(FILENAME_DEFAULT, '', 'NONSSL', false)); } return session_start(); } The directions are for the old version and say to replace that with: function tep_session_start() { // >>> BEGIN REGISTER_GLOBALS $success = session_start(); // Work-around to allow disabling of register_globals - map all defined // session variables if ($success && count($_SESSION)) { $session_keys = array_keys($_SESSION); foreach($session_keys as $variable) { link_session_variable($variable, true); } } Which nullifies the security fix in the newer osCommerce I would think. How do I apply this contribution and still leave the osCommerce security fix intact??? Thanks in advance!
  9. No that is not the problem, don't tell people to do that. You have to just disable the part that says something like if AVS info is not available allow not the entire thing to fix that. This problem however relates to the #s used on the card they are different and hopefully someone can post a solution.
  10. ************* I think you posted in the wrong forum, that is not part of the contribution.
  11. You can set your own period just change the default months in the code near the top. Maybe you should add these on if you want them, I see you have over 300 posts and no contributions, osCommerce is supposed to be a give and take not just take...
  12. As far as your warnings you did not copy all the files you are missing includes/classes/returns.php thats why it is giving you a No such file or directory error or you have your oscommerce config file setup incorrectly, if the config is improperly setup though I would imagine almost everything would give you an error though...
  13. You have to be logged in as that user the RMA was for to view the RMA on the catalog side, otherwise everyone could view each others RMAs
  14. those files are not part of the contirubtion they were just included by accident by the original author and removed in later updates because they do not pertain to this contrib.
  15. I looked back over the thread for about 20 minutes but I cannot find anything about this there or by searching??? And there is no update to the contrib since your 3.5d version and the turkish version. Maybe I'm missing something?
  16. New Version Posted 2.02: - Reapplied 0 division error fix, apparently some people were still having a problem with this in 2.01 - Fixed the incorrect stock and 60 days estimate caused by the change of the year. - Added a new feature that filters out items that have more than 60 days stock and have inventory > 0.
  17. Quick fix on the year logic so the dates will calculate properly, this was not noticable until now because 2 months prior was not a different year as it currently is (january) CHANGE: $timestamp = mktime($hours,$minutes,$seconds,$month-$pastMonths,$day,$year-$pastYears); TO: $timestamp = mktime($hours,$minutes,$seconds,$pastMonths,$day,$year-$pastYears); This will fix the sales for the last 60 days, this does not completely fix the est 60 days sales I'll try to figure that out a post a solution later.
  18. I've come up with an idea that may fix the problem where when someone adds a product to their wishlist with attributes it is not deleted when the item is deleted in admin because the item # is stored with the attributes attached in the wishlist database. What I was thinking is what if we stripped the attributes from the wishlist id number and then created a field in the database where customers can add any comments about who they want to buy them the item or what size they want or whatever so then the attributes would not need to be saved and the wishlist would be able to be personalized more. Simular to what Amazon does in their wishlist: http://www.amazon.com/gp/registry/wishlist/ Good/bad idea? What do you all think?
  19. Someone needs to update the code so it pulls the price data from the order instead of the current prices that would fix that problem. Sorry but you guys are going to have to help, I don't have time to do it right now.
  20. Try Newsletter & Subscribers v053 that version should work.
  21. Sorry must have nuked them by accident when I was cleaning up the installation directories and directions. I've posted the repackaged version for those who requested it now.
  22. 2.5H Does contain all the files, what files are you talking about? Regarding your other error, that file (returns.php) really hasn't been messed with in a long time if it is the catalog file you are talking about, except one change I made but that change uses a command built into osCommerce so I doubt it is the file, your version of SQL is probably different then most people. What version of SQL are you using?
  23. Hello, I've been running an online store for about a year now and more recently I've had a few customers emailing me saying my site would not accept there Visa or Mastercard. At first I just thought it was the normal problem of people mistyping their credit cards but then I traced there actions and saw this happened to some of them many many times until they just quit. What happens is when they enter their credit card and the cc validation (cc_validation.php I think) refuses their cards saying they are invalid before processing them to see if they are really valid. I think it has something to do with the new gift credit cards or diners club/mastercard cards. Surely others have experienced this? Any ideas on how to fix the validation code for the newer cards? Thanks!
  24. I have ultimate SEO it seems to work fine, the only place where you can see the actual products pages view is in the products coverage report I think. Good fix, worked for me as well! :thumbsup:
×
×
  • Create New...