Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

softvoice

Archived
  • Posts

    30
  • Joined

  • Last visited

Profile Information

  • Real Name
    James

softvoice's Achievements

  1. hi, I'm just re-posting the previous message I wrote.. Please answer this if anyone knows or has any comments.
  2. todd, thanks for your help. As you said, Can you be more specific? For instance, when a particular product that a customer ordered is currently out of stock. So I have to refund that amount to my customer. In this case, I might use a partial refund function in paypal page and edit an invoice using Order Editor which you refer. On the other hand, what if they want to buy more stuffs after palced order altough there's no fuction like that(they might contact me and ask about it..whether it's possible to change it or not..)? You said customers have to pay the difference seperately... then for those who do not have a paypal account, how do they pay me seperately? If they place another order or so, they have to pay additional shipping charge... so they won't go this way.. I believe..What do you think? If there is a contribution to make this a lot easier.. besides Order Edittor, please let me know... thanks.
  3. gregbaboolal, thanks for your help. All of the sudden.... I wondered if a customer wants to cancel the order or change their order... or sometimes the product he ordered is out of stock ... then.. I gotto do something... hmm... is there a way I can handle this kind of situation? and do you know any other contributions which might be used in this particular case... without interruptting paypal ipn coding? this should have been the same issue that lots of paypal ipn users face... how do you take care of this kind of matter? did you install any contributions like order editing? hmm.. how about if my customer wants to add more products after they paid..already? I have to think of all possible situations for assisting my customers better... please give me your advice. thank you.
  4. I also just finished IPN Test Panel successfully..though.. I have a question for you. In the IPN Test Panel, there are boxes called MC Gross and MC Fee. What are thoese values exactly? I guess MC Gross means the toal amount that a customer should pay. How about MC Fee? Is that money that paypal charges on my account? According to Bussiness account the rate fee is 2.9% + $0.30(for standard rate fee). When my store goes live, do I have to fill something like IPN Panel? Or simply I can find every order that was placed by my customers in the admin page or by the debug email notification? I think the beauty of your contribution is that sellers get notified even if buyers did come back to the store at the last stage. Please let me know how it works... and thank you for your wonderful contrib. softvoice
  5. I recently installed products short description v1.02 but something does not function properly. According to the install.txt file, it has updated products_info.php so that short description text which has been typed in admin page can be seen in that products_info.php. Based on the txt file, I added <p><b><?php echo stripslashes($product_info['products_info']); ?></b></p> right before <p><?php echo stripslashes($product_info['products_description']); ?></p> However, only $product_info['products_description'] is displayed.. I can see the short description in all other pages... except product_info.php.. Can anyone have any ideas? Please help !! Softvoice
  6. Thanks for your advice, Stevel. I seems working now.. but I did modify my includes/configure.php file. Please take a look at this. define('HTTP_SERVER', 'http://relyonyou.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://host180.ipowerweb.com/~relyonyo'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', '/'); define('HTTPS_COOKIE_DOMAIN', '/'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/relyonyo/public_html/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); Right now, the main login problem with "Login Box" on the right column seems to be solved by chaning configure.php above. However, After the address such as https://host180.ipowerweb.com/~relyonyo/account.php doesn't show me encrypted code like osCsid=ebd69960e659e295943b3ac134cacc7e. Do you have any idea about that and does will it cause a serous security problem? By the way, your problem works fine on my website Thank you.
  7. Thanks Stevel. I just installed Amazon login. I didn't use name such as long2.php You can just try relyonyou.com Once you click My Account and try to create an account, you will see the same error that I've mentioned above.. Can this happen because of wrong configure.php setting? HTTP 404 error. If you need additional info, just let me know. Thanks
  8. Hi, Stevel First of all, thanks for your contributions. I've already installed one of your contributions, Country-State Selector. It really works well on my site.. I also tried to install Login Page a la Amazon, but doesn't work on my site. The page shows me http 404 error. I think I have a probelm with my configure.php file setting. Currently I've removed Login Page a la Amazon, but I'll load it after fixing this problem first.. This is my /include/configure.php define('HTTP_SERVER', 'http://relyonyou.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://host180.ipowerweb.com'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'relyonyou.com'); define('HTTPS_COOKIE_DOMAIN', 'host180.ipowerweb.com'); define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/~relyonyo/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/~relyonyo/'); define('DIR_WS_IMAGES', 'images/'); define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/'); define('DIR_WS_INCLUDES', 'includes/'); define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/'); define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/'); define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/'); define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/'); define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/relyonyo/public_html/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'removed for post'); define('DB_SERVER_PASSWORD', 'removed for post'); define('DB_DATABASE', 'removed for post'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' my root folder is pub_html I'll appreciate any help. Thank you
×
×
  • Create New...