Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

blueline

Archived
  • Posts

    962
  • Joined

  • Last visited

Profile Information

  • Real Name
    Chris Sullivan
  • Location
    Atlanta, GA - USA
  • Website

blueline's Achievements

  1. Worldpay: http://www.oscommerce.com/community?contri...ay&category=all Fastpay: http://www.oscommerce.com/community?contri...ay&category=all PPPay: Never heard of it. Can you provide a little more info please? By the way, you'll find a link in the header of these forums that says Contributions. In the future, please use available resources before asking questions. Thanks.
  2. Check your database to ensure that the cost values are actually in the db. That would be the first step to troubleshooting this problem.
  3. The first thing I would tell you to do is make sure that you are referencing the application_top.php file at the top of that code. If your server is not local, you'll need to make sure that your configure files are referncing the proper file structure. For example, if your remote server is linux, setting the drive to C:/anything will not work. Check those out and get back to us.
  4. Where you have: opendir(DIR_FS_CATALOGDIR_WS_IMAGES): You should have: opendir(DIR_FS_CATALOG . DIR_WS_IMAGES):
  5. Unforunately the report doesn't accomidate for attributes. This is something that I think will have to come in the next version.
  6. This has been made available in the newest version of Family Products (along with some other nice features). A demo can be seen here: http://eclyptiq.bluelinehifi.com/fam_demo/ http://eclyptiq.bluelinehifi.com/fam_demo/admin Unfortunately I am under contract not to release this through the community. If you would like to purchase a license, you may do so by contacting me through the forums, or emailing me directly. Thanks. -Chris
  7. Hey newbie. Welcome. This is absolutely possible. Once you have the flash coded, it should be a pretty easy integration. HTH -Chris
  8. If you alter the tep_images function as I have advised people in the tips and tricks section, then yes you can. You should, however, rewrite some of the code in the categories.php page (in the admin folder) to ensure there are no complications with uploading swf files as images.
  9. I have heard that Service Pack 2 has caused some, otherwise non-existent, problems. That may be why you can't save. Unfortunately I don't have time to modify this contribution to everyone's needs, but with a little trial and error I am sure you can modify this for your specs. Otherwise, I hope there is someone available that has time to modify this contribution to fit your needs. Thanks -Chris
  10. I would suggest altering the code I have provided. You can try something like this: **UNTESTED if (customer_id != "Guest") { // This assumes you're buttons are inside of a movie clip. Your_Buttons_MC.gotoAndStop(2); } else { // This assumes you're buttons are inside of a movie clip. Your_Buttons_MC.gotoAndStop(1); } As the customer's first name is passed if they are logged in, an easy way to validate the session as a member/guest session would be to check the value of that variable. If the person is not logged in, the customer_id will return "Guest". Therefore, if the value is "Guest" show the log in button. If it is not, show the log out button. HTH, -Chris
  11. It uses a static xml file...but it very easily could use a php file which dynamically executes the xml. -Chris
  12. Kevin, Thanks for the response. Glad you are getting some use out of it. Thanks, -Chris
  13. Can you please tell me what URL is generated when you click on a link in the flash header? Also, are you sure that any changes you've made are actionscript compliant?
  14. Hey...don't do STS. I customize all my shops through direct code-editing. I would be interested in knowing the results of your "new" test install. Thanks -Chris
  15. Hey. It seems to me that you are not suing the right code. For example, you have this (no php brackets so $sid isn't being identified): <param name="movie" value="header.swf?osCsid=$sid;" /> you should have: <param name="movie" value="header_test.swf?osCsid=<?php echo $_GET['osCsid']; ?>" /> You need to define that you are using PHP in order to pass the PHP variable. HTH -Chris
×
×
  • Create New...