Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

safoo

Archived
  • Posts

    485
  • Joined

  • Last visited

Everything posted by safoo

  1. Which affiliate contribution are you talking about? OSC Affiliate has an install file included.
  2. real time quotes gets the rates by connecting to the FedEx servers. You would need a FedEx account and I believe it has to be enabled to work with FedEx.com. The real time quotes gives you the option of giving your customers your discounted rates plus any surcharges you specify or show them the published FedEx rates without discount. View the reamde for this contribution for more information. The FedEx zone rates uses a table to extract the rates that are shown to the customer. Both have pretty good instructions.
  3. Eric, I assume the error of is due to SEF URLs you are using, but I didn't think it would cause any problems. Just one thing you may want to check first is why there are 2 slashes : "/~erichoes//login.php". Hopefully that is fix to the problem. Otherwise, you can try removing the brackets in the link using %3
  4. P&G's shipping and order processing module is *very* old and was written for MS1. Some people say you can make changes to get it to work with MS2 but I have never seen that. You can pretty much assume that it wont work as that series of contributions is outdated. A lot of the functionality you should be able to add to your cart using various contributions available.
  5. JABevan, I guess you are correct. However changes need to be added to only : /catalog/checkout_process.php /catalog/checkout_success.php /catalog/login.php since the other files are new files. Are you using 'Beyond Compare'? Thats a pretty good tool to use and I suggest you compare the files given in the contribution with stock OSC files to see the changes and then add those changes to your files. If you still have any questions, try pasting your files here and I'll try to take a look at them. I have *many* contributions installed in my store, so I also had to be careful in looking through the code when applying the changes. Just be sure to backup your files.
  6. What problems are you having? I thought the instructions were pretty straight forward. Elliot, TerryK, and I were discussing some modifications to add some extra functionality to PWA. Let me know what problems you are having.
  7. oo...In that case I don't think there is a tool or addon like that...
  8. why not try the automated_auction_process contribution and post your auctions on ebay where the items will be exposed to millions of potential bidders?
  9. Mary Ann, Ignore the above post...It won't let me edit it. Check your installation and the changes made to /catalog/admin/includes/database_tables.php Did you make the proper changes to /catalog/admin/includes/database_tables.php (notice admin side)? There is separate instructions for changes to /catalog/includes/database_tables.php (notice its catalog and not admin)? Just for your information, these define statements are used throughout osc code. So whenever you have an error where your database or php file can not find a something called "FILENAME_SOMETHING" or "TABLE_SOMETHING" or "TEXT_SOMETHING" or anything similar to that (usually in all caps), 99% of the time it means you forgot to create the define statement which associates the "FILENAME_SOMETHING" to an actual filename or "TABLE_SOMETHING" to an actual database table name etc. In your case, the database is looking for a table called TABLE_LINKS_STATUS, which obviously doesn't exist. Once the define statement is correctly done, it will find the correct table name which is "links_status"
  10. Mary Ann, Check your installation and the changes made to /catalog/includes/database_tables.php The installation instructions might not be complete, but there should be a define for TABLE_LINKS_STATUS. Just create another define statement as shown below for whatever the name of the database is for TABLE_LINKS_STATUS: // VJ Links Manager v1.00 begin define('TABLE_LINK_CATEGORIES', 'link_categories'); define('TABLE_LINK_CATEGORIES_DESCRIPTION', 'link_categories_description'); define('TABLE_LINKS', 'links'); define('TABLE_LINKS_DESCRIPTION', 'links_description'); define('TABLE_LINKS_TO_LINK_CATEGORIES', 'links_to_link_categories'); // VJ Links Manager v1.00 end
  11. Why would you want 4 shipping options? Please explain further so that we can understand what you are trying to do. For example, if the 4 shipping options are for ground, 2day, 3day, and overnight shipment, then you could always try a USPS/FEDEX/UPS contribution that would provide those options based on the weight and destination of the order. Also, are you planning to enter 4 shipping options for each product?
  12. Mary-Ann, Do you have in your admin: Admin -> Administrator -> File Access? If so, you will need to add the files into the correct category.
  13. Rumbey, Check if you made the changes to databases.php. SQL is looking for a table called "TABLE_TEMPLATE", which obviously won't exist in your database. There should be some type of define ('TABLE_TEMPLATE', 'template'); code that should be in the instructions.
  14. Ivan, Thank you. Link works now. I'll try to look at it this weekend.
  15. Jonathan, That would definitely work. Thanks for the info.
  16. on the above links just remove the space after "http://"
  17. I think I found it....(google is my best friend) I read on yahoo search tips page that if you search for 'usps' and the tracking number, you will get a link to track the package. I did that and got the yahoo result with the link which seems to be: http:// trkcnfrm1.smi.usps.com/netdata-cgi/db2www/cbd_243.d2w/output?CAMEFROM=OK&strOrigTrackNum=01805213907170971234 http:// www.fedex.com/cgi-bin/tracking?action=track&language=english&last_action=alttrack&ascend_header=1&cntry_code=us&initial=x&mps=y&tracknumbers=169444865021234 2nd link is for fedex.
  18. I was wondering if anyone knew a link to track usps delivery confirmation numbers. I'm looking for a link in the form of "http://......=TRACKNUM" so that if I have the tracking number stored in my database, I can create the link to the usps page. I tried looking at the usps web tools, but the API uses XML and I thought there would be something like an http link available. Thanks in advance.
  19. kat2nz, You could edit your product_info.php where it displays that message or I think you should be able to just change the "define('TEXT_STOCK',..." to a blank message so it won't display that message anymore.
  20. Donovan Long, "the new files will be ready when they're ready" is understood and theres no need to restate the obvious. I was just asking a simple question with no tension or malice intended or implied in the message at all. I'm not sure what you read in the post but it was a simple question about the development of the contribution. Nevertheless, everyone has stated their appreciation to Matti for this contribution and the other work he has done for OSC. (don't reply to this message on the thread....lets keep the thread on topic. PM me if you have any more issues.)
  21. You probably did not apply the changes to database.php which would define "TABLE_USER_TRACKING" to the actual name of the database. The code right now is looking for a database names "TABLE_USER_TRACKING", which is incorrect.
  22. The default image directory is catalog/images. So you can upload all your images into that directory and make sure the image filenames match what you put in your easypopulate and they should show up.
  23. Just one more thing... What is wierd is that the code that checks for PWA users, which is : if (tep_session_is_registered('noaccount')) { tep_session_destroy(); tep_redirect(tep_href_link(FILENAME_DEFAULT, '', 'NONSSL')); } else { tep_redirect(tep_href_link(FILENAME_DEFAULT, $notify_string, 'SSL')); } Is put inside the if (isset($HTTP_GET_VARS['action']) && ($HTTP_GET_VARS['action'] == 'update')) statement, which does not make sense to me. Maybe move that check outside the if statement and after the customer_id check? Then you can have PWA users go to index.php and regular customers be redirected to the shopping cart. Either way, I don't think it should be much of an issue.
  24. TerryK, I just made it so that it always redirects the customer to the index.php page. I don't see how anyone could end up at checkout_success.php unless they went through the checkout process and completed it. if (!tep_session_is_registered('customer_id')) { tep_redirect(tep_href_link(FILENAME_DEFAULT)); }
  25. tlelliott77, If you find a solution to those do share. The install instructions do mention this code for not showing 'logoff' in the header: <?php if (!tep_session_is_registered('noaccount')) { echo HEADER_TITLE_LOGOFF; } ?> That should be a starting point...but it seems all 3 of us each accomplish 1 goal in different ways.
×
×
  • Create New...