Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

choosealogin

Pioneers
  • Posts

    1,104
  • Joined

  • Last visited

Everything posted by choosealogin

  1. I think your columns are off in your EP file. Also, maybe you already know this but there are quite a few products in your catalog, they just aren't assigned to a category...probably because of the column problem. There are several pages at yoursite.com/catalog/products_new.php The default colums for ep are v_products_model v_products_image v_products_name_1 v_products_description_1 v_products_url_1 v_products_price v_products_weight v_date_avail v_date_added v_products_quantity v_manufacturers_name v_categories_name_1 v_categories_name_2 ---this one depends on how many sublevels you put in the ep configuration v_categories_name_3 ---so does this v_tax_class_title v_status EOREOR ----this column is not optional. Needs to be filled in as EOREOR all the way down your ep file. Can you tell if any of those columns are empty on the file you're uploading? it's ok for some of them to be empty, but not others.
  2. What does the list look like that it spits out? Can you paste the first 10 lines here.
  3. Maybe that was a typo, but the buttons are one level deeper, They go in: catalog/includes/languages/english/images/buttons/ If you put your new buttons there, they should show up.
  4. Yes, Jack's right... and I'm fairly sure your problem is Aroma'S 4 Delicious Flavors apostrophes don't do well in product names and cateogory names
  5. I guess from Sallypointer's other posts we know it's zone rate shipping, so... includes\languages\english\modules\shipping\zones.php(16): define('MODULE_SHIPPING_ZONES_TEXT_UNITS', 'lb(s)');
  6. admin>configuration>images> adjust the heading image width and height to accomodate your welcome picture, or others that were squished but that's the only one I noticed.
  7. Yes, I think I understand. You just want a different button for out of stock items (that would open the customer's e-mail program). In the example below I used the "continue" button, but you can make a new button to match your others, with the relevant text on it ('email us', or whatever you choose). If you're using the stock osc buttons, you can find a button template in the "extras" folder of the download package. It's in extras/button_template/button_template.psd. Then you can make a new button in photoshop, dreamweaver, or anything else that will allow you to edit a psd file. But here is the code, <td align="right" valign="middle" class="main"><?php if($products_new['products_quantity'] > 0){echo '<a href="' . tep_href_link(FILENAME_PRODUCTS_NEW, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $products_new['products_id']) . '">' . tep_image_button('button_in_cart.gif', IMAGE_BUTTON_IN_CART) . '</a>'; }else{ echo '<a href="mailto:'. STORE_OWNER_EMAIL_ADDRESS .'?subject='. $products_new['products_name'] .'">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>';} ?></td> Put your new button in catalog/includes/languages/english/images/buttons/your_button.gif Then put a language define for the hover text in catalog/includes/languages/english.php, example: define('IMAGE_BUTTON_EMAIL_US', 'Email us for more info'); So the code with 'email us' as an example would be <td align="right" valign="middle" class="main"><?php if($products_new['products_quantity'] > 0){echo '<a href="' . tep_href_link(FILENAME_PRODUCTS_NEW, tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $products_new['products_id']) . '">' . tep_image_button('button_in_cart.gif', IMAGE_BUTTON_IN_CART) . '</a>'; }else{ echo '<a href="mailto:'. STORE_OWNER_EMAIL_ADDRESS .'?subject='. $products_new['products_name'] .'">' . tep_image_button('button_email_us.gif', IMAGE_BUTTON_EMAIL_US) . '</a>';} ?></td> then name your new button email_us.gif...or whatever you choose. :)
  8. I haven't checked into myself, so I'm not sure...but have you looked at 'order editor'. It's a popular contribution, maybe you can make an order from scratch with it? Worth looking at. At the very least, I'm sure you could probably use phpmyadmin to enter an order directly into the database.
  9. It depends on which short description contribution you used. Could you post a link to the one you used? I know that with this one... http://www.oscommerce.com/community/contri...ort+description you can adjust the length up to 200 characters in admin...but the one you used may be different.
  10. Did you do the "further steps required" that is in this post: http://www.oscommerce.com/forums/index.php?sho...50entry872850
  11. As far as I know, it's not truly 'auto' return if you're using the stock pp module. To my knowledge, if they don't click the 'magic button' (return to merchant) ...then the order doesn't get finalized. I don't think it has anything to do w/having or not having a pp account. What contribution does ipn conflict with?
  12. Well I'm not sure what's causing your error, but it looks like that function (add_html) is defined in admin/includes/classes/email.php (and catalog/includes/classes/email.php) around line 158 function add_html($html, $text = NULL, $images_dir = NULL) { $this->html = tep_convert_linefeeds(array("\r\n", "\n", "\r"), '<br>', $html); $this->html_text = tep_convert_linefeeds(array("\r\n", "\n", "\r"), $this->lf, $text); if (isset($images_dir)) $this->find_html_images($images_dir); } I don't think that contribution modifies the email.php file, though...but I guess the first step would be to confirm that the email.php file is present and has those lines in it.
  13. After a search of the contributions for "admin mail" ...I got 13 pages of results. Which contribution are you working on?
  14. What 2 files did you add and where did you add them?
  15. The best solution is to use the osc paypal IPN http://www.oscommerce.com/community/contri...,oscommerce+ipn It's a very very quick and easy install. It will help you capture the order data regardless of the situation. I think you can set a "return" URL at Paypal, in which case the correct one would be http://yoursite.com/checkout_process.php By far the best thing is the IPN, though.
  16. You can fix the order of those items (subtotal tax shipping etc) in admin-->modules-->order total
  17. If you post both configure.php files I'm sure someone could help. (with the database user/pass xxxxx'd out, like you've done already :))
  18. Ok, well...I didn't mean for you to set them to 777. Something I read indicated having them set that 'freely' might cause the 500 error. Put the permission settings back down :)
  19. I just finally noticed something. On your internal server error page, it says contact ... [email protected] Where's the stellarreviews part coming from? Is that in your paths somewhere in your configure files?
  20. Are any of the files (especially the ones causing errors) set to 777 permission? or are they 755? I'm about out of ideas :'( Might be time to contact your host. Or if you have access to the error log, see what it's logging.
  21. If you don't have an SSL certificate, the line I quoted above in configure.php needs to be false. check both configure.php files (one in catalog/includes and one in catalog/admin/includes), and set SSL to false...then see where we are.
  22. I don't know if this will fix it, but try renaming it...to anything. See if that makes the error go away
  23. do you have an htaccess file in your catalog directory? And if so, why? Such as, for the SEO urls contribution, or to turn 'register globals' on, etc ??
  24. What you see there on the cpanel is probably a set up for a self signed certificate which is not worth the trouble What error did you get, exactly?
  25. In catalog/includes/configure.php The third line down define('ENABLE_SSL', false); // secure webserver for checkout procedure? check and see if it's true or false there
×
×
  • Create New...