Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

kristal

Pioneers
  • Posts

    94
  • Joined

  • Last visited

Everything posted by kristal

  1. I sell a lot of download goods on my website, and was wondering if there is a contribution out there that would allow me to upload a file to my store/download folder right from where I'm creating the new product. Right now, I have to create the new product in osc, then open up my ftp program to go upload the file to my site manually.
  2. Sorry to be confusing; but that's not exactly what I need to do. The contrib I installed is using the dob field and changed it so the customers need to put in a preset word (authorization word) in that field. So, it is not in any date format; its a word. It works fine on the customer end when they use it to create an account, then when I view their account, the field is blank, and its asking for a date when I try to edit anything else on the account. I either need to make that field non-mandatory in the back end (while leaving it mandatory on the front end), OR change the admin so that the dob field can be filled in with my authorization word instead of a date. Here is PART of the changes I did on the front end to make it work (I posted a link to the contrib above): In create_account.php, find around line 81: if (ACCOUNT_DOB == 'true') $dob = tep_db_prepare_input($HTTP_POST_VARS['dob']); DELETE IT ---------------- FIND: if (ACCOUNT_DOB == 'true') { if (checkdate(substr(tep_date_raw($dob), 4, 2), substr(tep_date_raw($dob), 6, 2), substr(tep_date_raw($dob), 0, 4)) == false) { $error = true; --------------- REPLACE WITH (insert your own authorization word): if (ACCOUNT_DOB == 'true') { if (isset($HTTP_POST_VARS ['dob'])){ $dob = tep_db_prepare_input ($HTTP_POST_VARS['dob']); } else { $dob = false; } } if (ACCOUNT_DOB == 'true') { if ( ($dob != 'PutYourAuthorizationWordHere') ) { $error = true;
  3. How do I edit the required format for the DOB entry in the admin area? I have a wholesale website and I've been using the add-ons where you must be logged in to view prices, and the restricted_website so that new customers need an authorization word to create an account. (This one here: http://addons.oscommerce.com/info/4399) It's been working great, except one thing... if I want to edit an account in my admin area, it won't let me. When I try to edit an account, it is saying there is an error because the DOB entry must be in the form xx/xx/xxx. The restricted website add-on is using the DOB entry to collect the authorization word, but the format didn't get changed in the admin side. Although, I thought I had made all the same changes in the admin as I did in the front end. Any help?? I know this is an easy fix, but I'm not proficient in php, and I'm not too familiar with all of the different pages in oscommerce..
  4. lol, yeah but I think the non-secure item is my slideshow from photobucket that I have on my front page..
  5. I installed the "Require login to view site" mod successfully, but I see that when a user logs in, they are directed to the store front, which is what I want... but since the login page is located on a secure url, it directs to the home page using the secure url; this creates a pop-up that says "this page contains both secure and nonsecure items..." Is there a way to direct them to the www. version?
  6. I tried looking for a support forum for this mod, but can't find it. Can someone give me an overview on how I would make the Administration Access Level Accounts mod work with my existing mods? (http://addons.oscommerce.com/info/1359) I currently have header tags controller, Product Attributes, related products, discount coupons, Stats Products Notifications, Stats manufacturers, and Stats Low Stock installed. I went through the directions for the Administration Access Level Accounts; and there are only four areas where it asks me to write over coding that is used by my other mods (within these files: admin/includes/column_left.php, admin/includes/boxes/catalog.php, admin/includes/boxes/reports.php, and admin/categories.php). But I'm sure there is probably a new file within the mod itself that needs editing also? This is probably over my head at this point... lol if anyone is willing to do some work for me; that would be greatly appreciated!!! ;0)
  7. I saw that; but I'm not exactly sure which one I should use. I just need to be able to transfer my orders into the quickbooks program..
  8. Hi, I just purchased quickbooks 2008, and now I need an add-on for my oscommerce site so that I can transfer my orders into my quickbooks program. Which add-on should I use? Thanks! :)
  9. Is there a mod, or simple change I can make to add in a "Download Here" button underneath the e-good title after they pay? Right now, when someone purchases an e-good, they have to click on the e-good title in their receipt or the order confirmation page, and customers are just not seeing it. I just want a bold button for them to click on to get their e-good, placed under the e-good title; instead of having them to click on the actual e-good title. Please help! This has been an ongoing frustration for me and my customers!! You would not beleive how many emails I get from angry customers that cannot figure out how to get their e-good... even though I have directions posted all over the site.
  10. Anyone? I get sooo many emails everyday asking how they can get their e-goods. I've already put a huge page title on my checkout success page that says "Download your e-goods below", but that didn't seem to help much. There must be a way that I can add a Download button under the product title, instead of having the actual product title the link. People just don't see it...
  11. I have many "non-computer savy" (or whatever you'd like to call them!) shoppers on my site that email me every day asking me how they can download their e-goods they've purchased. Is there a mod (or is somebody willing to make one) that makes it super clear on how to download the e-goods? Perhaps a seperate large "download HERE" link under the product name (instead of having the actual product name be the download link)?
  12. I've searched the contributions; but I didn't find anything that adds just coupons. I've found CCGV (but I don't need gift vouchers and such), I've seen discounts per customer or order total.... but nothing to give out just coupon codes for a percentage off, free shipping, etc. Anyone know of one?
  13. Okay, I got the Actual Attribute Price contribute working just fine... but "Philip" posted an additional contribute to fix the actual attribute's weight which I'm not sure how to do... yah, seems simple enough, just change one line of code... but I dont' have that one line of code in my shopping_cart.php file! lol He states: "Before proceeding make sure you already have the Actual Attribute Price mod correctly installed, as this edits one of it's lines of code." But the code he is refering to to change wasn't added in with the Actual Attribute Price mod. The acutal attribute price mod is working just fine... only problem is that when a customer chooses an attribute, it doubles the weight for the product. I had this problem before I installed this mod, so it's either due to the CCGV(trad) mod, or it was an original error on os. ANYWHO... I would like to just use "Philip's" mod to fix this problem, but I'm not sure how to go about doing that! lol Any help would be appreciated!! :) Here is a link to the mod I'm referring to: http://www.oscommerce.com/community/contri...arch,attributes I installed the second one down (plus the top mod fix), and Philip's mod is the third one down.
  14. Where should I start? The shopping_cart.php file??
  15. Yes, I understand that; but couldn't you just tell me what you changed in the files so that the cart redirects to the payments page, instead of where it is originally supposed to go - the delivery page?
  16. Okay, so I tried that; and it didn't work. :( What is it that the CCGV files change to redirect to payments page instead of delivery page? I need to undo that. Thanks!
  17. Okay, well is it possible to go and intall the other contribution over the CCGV? For that one, it only updated the files: checkout_shipping.php includes>classes>shoppingcart.php Were those files just updated to include free shipping for CCGV, or were there other changes that need to be kept for the coupons to work? Thanks so much for your help. :)
  18. I have other tangible items that I don't want shipping added to, so for those items I have made the weight 0, and I would need the shipping page to come up.
  19. Hi, I have installed the CCGV(trad) version on my site now.. and it seems to be working out great so far. :) One question, before I installed this I was working with the Free Ship when Weight =0 contibution, and I know that CCGV has the same feature because the items that I have weight=0 are coming up with no shipping... BUT.. with the other contribution it directed the customer to the Delivery Information page, and it showed the customer there was $0.00 shipping, and they were able to edit their delivery address. But with the CCGV installed, it just directs them directly to Payment Information, completely skipping the Delivery page. What can I edit so that it goes to the Delivery page when you hit check out? TIA!
  20. Okay.. disregard my last ignorant post. lol I found the sql file and updated it, thanks for the tip! :) Everything seems to be working great now... one question though: The box that shows up in the shopping cart to enter a coupon, it says: TEXT_ENTER_GV_CODE instead of whatever it's supposed to say. Also, under Paypal payment option, it says: MODULE_PAYMENT_PAYPAL_CC_TEXT MODULE_PAYMENT_PAYPAL_CC_DESCRIPTION MODULE_PAYMENT_PAYPAL_CC_URL_TEXT What file(s) do I need to change to fix this? Thanks so much!
  21. I didn't see a sql file with it... so anyway, where do I get this version then?? I went to the contributions page, then clicked on "Credit Class + Gift Voucher"... there's a million files, so I just chose the most recent one. Which one should I have used?
  22. I did find another error... on my website, when I clicked on "check out", then logged in, it has another error in the shopping cart box: 1146 - Table 'myusername_osc1.coupon_gv_customer' doesn't exist select amount from coupon_gv_customer where customer_id = '2' [TEP STOP] Then, when I click on "continue" it brings me to a blank page. Also, I don't see where you would enter a coupon code..
×
×
  • Create New...