Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

dan182skater

Archived
  • Posts

    106
  • Joined

  • Last visited

Everything posted by dan182skater

  1. Hello, when I put in my real credit card, it says: "There was an error; please check your card details The first four digits of the number entered are: <br>If that number is correct, we do not accept that type of credit card.<br>If it is wrong, please try again." But this is my real credit card and it is not on Test Mode. I have also tried another real credit card with the same results. I am using the BluePay module and called Bluepay to ask why it says that, but they said it is something wrong with osCommerce and not their part. What should I do? My store is ready to go live but I can't until this is solved. THANKS! -Daniel
  2. Nevermind, problem fixed...for those of you wondering what was wrong is when it says Headers already sent, most likely it is because of extra space at the end of the php file after the closing php marks. For more info, and how I found out the solution, go here..... http://www.oscommerce.info/kb/osCommerce/G...mon_Problems/15 As for you, Dynamoeffects, thank you!!!! Daniel
  3. Thanks, but it still says: Warning: Cannot modify header information - headers already sent by (output started at /home/onlyzipp/public_html/shop/includes/modules/payment/odcbp.php:418) in /home/onlyzipp/public_html/shop/includes/functions/general.php on line 29 The other message went away though, but how do I get rid of this one? Thanks!
  4. Hello, I really need help with this ASAP. Basically, I have an account with BluePay, and when I type in a credit card number for testing, it says: Warning: Missing argument 5 for validate() in /home/onlyzipp/public_html/shop/includes/classes/cc_validation.php on line 17 Warning: Cannot modify header information - headers already sent by (output started at /home/onlyzipp/public_html/shop/includes/modules/payment/odcbp.php:418) in /home/onlyzipp/public_html/shop/includes/functions/general.php on line 29 Why on earth does it say this? Also, when i try to configure the BluePay module in the admin section, it says: Warning: Cannot modify header information - headers already sent by (output started at /home/onlyzipp/public_html/shop/includes/modules/payment/odcbp.php:418) in /home/onlyzipp/public_html/shop/admin/includes/functions/general.php on line 85 What should I do??? Any help is appreciated. Thanks! -Daniel
  5. Hello, I have the module for Blue Pay 2.0, but it doesn't say how to install it. It just says to upload the files to the specific directories, which I did. But I know I need to do something with the code so that it shows in the payment modules of the Admin section. What should I do? Thanks! -Daniel
  6. Hello everyone! I am having the same problem a few people had on this contribution, when I go to http://www.compshop4u.com/googlesitemap/index.php this is what I see: Warning: fopen(/public_html/sitemapproducts.xml): failed to open stream: No such file or directory in /home/web/compshop4u.com/public_html/googlesitemap/sitemap.class.php on line 291 ERROR: Google Product Sitemap Generation FAILED! Warning: fopen(/public_html/sitemapcategories.xml): failed to open stream: No such file or directory in /home/web/compshop4u.com/public_html/googlesitemap/sitemap.class.php on line 291 ERROR: Google Category Sitemap Generation FAILED! Warning: fopen(/public_html/sitemapindex.xml): failed to open stream: No such file or directory in /home/web/compshop4u.com/public_html/googlesitemap/sitemap.class.php on line 291 ERROR: Google Sitemap Index Generation FAILED! Array ( [QUERY] => Array ( [PRODUCTS] => Array ( [STATUS] => success [NUM_ROWS] => 120 ) [CATEOGRY] => Array ( [STATUS] => success [NUM_ROWS] => 26 ) ) [SAVE_FILE_XML] => Array ( [0] => Array ( [file] => /public_html/sitemapproducts.xml [status] => failure [file_exists] => false ) [1] => Array ( [file] => /public_html/sitemapcategories.xml [status] => failure [file_exists] => false ) [2] => Array ( [file] => /public_html/sitemapindex.xml [status] => failure [file_exists] => false ) ) ) The three dummy files are in my site's root directory and are "777" The googlesitemap directory is also in the root of my site. What should I do??? Any help is appreciated. THANK YOU!
  7. Hello, I just installed this GREAT contribution but have a problem. My entire website gets disproportional. You can see what I mean when you go here The header no longer goes across the entire page because of the Additional Image Module. This module seemed to of extended my product info page so that this happens. Any ideas on how to fix this? THANK YOU IN ADVANCE!! -Daniel
  8. Well I don't have many changes on my product info page, just some seperate tables to put the price in, the picture in, the product name in, etc. But I am using the sts product info template because I do not know how else I would modify the product info page to make it how it looks now. You can see my site at here. Thanks, -Daniel
  9. Hello everyone, I already have Ultrapics installed in my admin section but now I need to figure out how to combine ultrapics with sts in the catalog side. I already did this without success: 1. I put this in the bottom of sts_product_info.php: // BOF MaxiDVD: Modified For Ultimate Images Pack! $product_info_query = tep_db_query("select p.products_id, pd.products_name, pd.products_description, p.products_model, p.products_quantity, p.products_image, p.products_image_med, p.products_image_lrg, p.products_image_sm_1, p.products_image_xl_1, p.products_image_sm_2, p.products_image_xl_2, p.products_image_sm_3, p.products_image_xl_3, p.products_image_sm_4, p.products_image_xl_4, p.products_image_sm_5, p.products_image_xl_5, p.products_image_sm_6, p.products_image_xl_6, pd.products_url, p.products_price, p.products_tax_class_id, p.products_date_added, p.products_date_available, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = '" . (int)$HTTP_GET_VARS['products_id'] . "' and pd.products_id = p.products_id and pd.language_id = '" . (int)$languages_id . "'"); // EOF MaxiDVD: Modified For Ultimate Images Pack! 2. Then I put this in the bottom of sts_user_code.php: $sts_block_name = 'morepixbox'; require(STS_START_CAPTURE); require(DIR_WS_BOXES . 'morepix.php'); require(STS_STOP_CAPTURE); $template['morepixbox'] = strip_unwanted_tags($sts_block['morepixbox'], 'morepixbox'); 3. Finally I made a box called morepix.php and put this in it: <?php // BOF MaxiDVD: Modified For Ultimate Images Pack! if (ULTIMATE_ADDITIONAL_IMAGES == 'Enable') { include(DIR_WS_MODULES . 'additional_images.php'); } // BOF MaxiDVD: Modified For Ultimate Images Pack! ?> But my product info does not display the extra images. How come? My site is here Any help is appreciated. THANKS IN ADVANCE! -Daniel
  10. Can someone please help me with this..... When I type in $reviewsbutton in the sts_product_info.php.html file, it shows the button, but the button does not link to anything. Any ideas why? My site is www.mp3shop4u.com. Also, I already know how to add extra commands such as $content, etc in the html_display_output file for the normal sts template site, but how do I add things like that in the sts_product_info.php? I have a wishlist button I need to add to the file so that in sts_product_info.php.html I can type in something like $addtowishlistbutton. ANY HELP IS APPRECIATED, THANKS IN ADVANCE! -Daniel
  11. Do you have AIM Messenger or MSN Messenger Peter? My AIM is dan182skater and my msn messenger is [email protected]. Thanks
  12. Well, it's not working again. :( Everyone I asked to test it said they can register no matter hwat they put down for the email address. So the validation dosn't work. So what I decided to do was to reinstall the contribution on the catalog side (I left the admin side alone) but now it says this again and I don't rmeember what I did last time (even though I wrote it in this topic but wasn't sopecific enough): Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/mp3shop4/public_html/includes/languages/english/newsletters.php on line 31 Line 31 of that file says: define('CLOSING_BLOCK1', 'This email was sent to:'); Any ideas...again? THANKS, Daniel
  13. Well, I guess it works! THANK YOU FOR YOUR HELP!!!! I really appreciated the fast replies. -Daniel
  14. When did you try it?, because on my computer it accepts anything.
  15. One more problem now............ it doesnt check for if you entered an invalid email address or didn't put the "@" or the like. Try it for yourself at the bottom of www.mp3shop4u.com and you will see. I think that is my last problem Thanks, Daniel
  16. I fixed that but it ws doing the same problem, but this time on line 29, but now i tihnk i fixed it myself! I got rid of . "\n\n"' on line 29 and I think it works now. What is that for anyways?
  17. Here is line 21-54 (end) for newsletters.php in the language directory: . 'Sincerely' . "\n" . 'Customer Care Service ' . "\n" . STORE_NAME . "\n" . STORE_NAME_ADDRESS. "\n" . 'web: ' . HTTP_SERVER . DIR_WS_CATALOG . "\n" . STORE_OWNER_EMAIL_ADDRESS . "\n\n" ); define('EMAIL_WELCOME1', 'We welcome you to ' . STORE_NAME . '! You will now receive on a monthly basis our newsletter and we will share with you more discoveries about .... Some of these services include:' . "\n\n" . '* Palm Culture ' . "\n" . '* Special offers..' . "\n" . '* Palm culture advices' . "\n" . '* If you would like to contribute or write an article for one of our newsletters, do not hesitate to contact us . You can as well use the online form in order to submit your article and pictures. (The newsletter online form link is located in the section Newsletter of our site).' . "\n\n" . 'For help with any of our online services, please email our Service Center : ' . STORE_OWNER_EMAIL_ADDRESS . ' or use our online feedback forms (under the Contact Us icon).' . "\n\n" . 'We are happy to have you as a member of our community. Your email address and interest preferences have been recorded on our site. In the future, you will receive periodic emails specific to your interests.' . "\n\n" . 'Privacy is important to us; therefore, we will not sell, rent, or give away your name or address to anyone. At any point, you can select the link at the bottom of every email to unsubscribe, or to receive less or more information.' . "\n\n" . 'Thanks again for registering, and please visit ' . STORE_NAME . ' soon! If you have any questions or comments, feel free to contact us.' . "\n\n"'); define('CLOSING_BLOCK1', 'This email was sent to:''); define('CLOSING_BLOCK2', "\n" . 'at your request, by MY STORE.' . "\n" . 'Visit our Subscription Center to edit your interests at: ' . HTTP_SERVER . DIR_WS_CATALOG . 'subscription_center.php?action=view&email='); define('CLOSING_BLOCK3', "\n\n" . 'or unsubscribe at:' . HTTP_SERVER . DIR_WS_CATALOG . 'newsletters_unsubscribe.php?action=view&email='); define('CLOSING_BLOCK4', "\n\n" . 'View our privacy policy at: ' . HTTP_SERVER . DIR_WS_CATALOG . 'privacy.php' . '.'); define('TEXT_ORIGIN_LOGIN', '<font color="#FF0000"><small><b>NOTE:</b></font></small>Registering to receive our newsletter is a different process than registering when placing an order. To receive our newsletters, you only need to enter your name, email and country. (however you will not have access to the Club area and the online Customer Service Center.)</font>'); define('TEXT_ORIGIN_LOGIN1', '<font color="#FF0000"><small><b>NOTE2:</b></font></small>' . STORE_NAME . ' respects very strongly your privacy. We will never resell the information entered or use it in a way which was not originally explained : read our privacy page for all details.</font>'); define('EMAIL_GREET_MR', 'Dear Mr. '); define('EMAIL_GREET_MS', 'Dear Ms. '); define('EMAIL_GREET_NONE', 'Dear '); define('TEXT_EMAIL', 'E Mail'); define('TEXT_EMAIL_FORMAT', 'Format'); define('TEXT_GENDER', 'Gender'); define('TEXT_FIRST_NAME', 'First Name'); define('TEXT_LAST_NAME', 'Last Name'); define('TEXT_ZIP_INFO', 'By entering your Zip Code below (USA only), we can define....'); define('TEXT_ZIP_CODE', 'Zip Code'); define('TEXT_ORIGIN_EXPLAIN_BOTTOM', ''); define('TEXT_ORIGIN_EXPLAIN_TOP', ''); define('TEXT_EMAIL_HTML', 'HTML'); define('TEXT_EMAIL_TXT', 'Text'); define('TEXT_GENDER_MR', 'Mr'); define('TEXT_GENDER_MRS', 'Mrs'); ?>
  18. Line 31 says: define('CLOSING_BLOCK1', 'This email was sent to:');
  19. Hello, in my catalog section, I see Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/mp3shop4/public_html/includes/languages/english/newsletters.php on line 31 when I try to subscribe to my own newsletter, how can I make it work? Thanks in advance! -Daniel P.S. My site is www.mp3shop4u.com Thanks!
  20. Hello everyone, I really need help with the contribution "How did you hear about us" found here: http://www.oscommerce.com/community/contri...all/search,hear First of all, just to let all of you know, I am using STS. I installed the how did you hear abuot us contribution it by going into each of the files that came with the contribution and looking for the edited tags. Then I put them into my current files. The contribution seems to work fine, its just that my site shows this at the top: Warning: session_start(): Cannot send session cookie - headers already sent by (output started at /home/mp3shop4/public_html/includes/functions/html_output.php:754) in /home/mp3shop4/public_html/includes/functions/sessions.php on line 67 Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /home/mp3shop4/public_html/includes/functions/html_output.php:754) in /home/mp3shop4/public_html/includes/functions/sessions.php on line 67 My site is http://mp3shop4u.com/. Anyone have any ideas as to what I should do? THANK YOU IN ADVANCE!!!! You can also instant message me using AIM with my screen name dan182skater or msn with my email address being [email protected]. Thank you.
  21. Is there a way for a customer to view their invoice just like I can in the admin section? I want them to be able to print their invoice after checking out and also in case they lose it, I want them to be able to print their invoice by logging into my site. THANK YOU IN ADVANCE! -Daniel Pollack
  22. Hey, I am trying to install the All Manufacturers contribution, but I am using BTS and it comes out all weird. Anyone know how to integrate it with BTS? Or does anyone know of another contribution that shows all the manufacturers on one page? Thank you. -Daniel My site is www.magicalcomputers.com
  23. Hey, I am using BTS and I want to make my header be so that when you click on "Company", the grey part right below it changes to the subcategories under "Company", when you click on "Products", the grey part shows the subcategories for "Products" and so on. How do I do this? My website is: http://server71.totalchoicehosting.com/~qztiagv/ (I am waiting for the domain name DNS to change so that I can use magicalcomputers.com) Thank you in advance! -Daniel
  24. No, I downloaded everything and looked at the full english install text file over and over again and didn't see anything. Any other ideas? (Thank you for responding so quickly)
  25. I'm really confused. How come it wasn't in the install instructions?
×
×
  • Create New...