Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Ajeh

Archived
  • Posts

    5,997
  • Joined

  • Last visited

Everything posted by Ajeh

  1. Looks like you have a typo so you are getting the value of $0.00 on the price. It depends on what version of osCommerce you are working with and what you are using for the products_listing.php Check the name of the array being used and see if you have used the wrong name when you copied your code from product_info.php over to products_listing.php
  2. Jay, Did you get everything working now? I couldn't see any problems from a quick look around.
  3. And store your sessions in mysql or it won't work either
  4. Change your footer setting in the admin to: // require(DIR_WS_FUNCTIONS . 'user_tracking.php'); require(DIR_FS_CATALOG . DIR_WS_FUNCTIONS . 'user_tracking.php'); if ( ADMIN_CONFIG_USER_TRACKING == 'true') { tep_update_user_tracking(); }
  5. Can you give some additional examples on this ... I'd have to think about this one for awhile but may be able to come up with something ... maybe ...
  6. You would define them as: Option Name: Seats Bells Flags Tires etc. Option Values: Seats ... Bananna Seats ... Low Rider Bells ... Silver Bells ... Gold Tires ... Black Wall Tires ... White Wall Tires ... Mountain Then as Attributes ... Select the Option Name ... Select the Corresponding Option Value ... Enter Price if any
  7. If you add them as attributes they will get added in on the cart with their products_price + the individual options_values_price Or are you trying to make all products and be able to select those additional products from the same page?
  8. The Downloads Controller is based on the Payment Modules orders status. If you have Credit Cards set up to be Processing and Downloads Controller to be 2 (Processing) then the download is available right away. If you have Money Order set to be Pending and Downloads Controller is 2 then the download is not immediately available as Pending is orders_status 1
  9. Some is a slower server, some is the number of attributes. Configuring GZip for the Admin helps. I have some client's with 1000 attributes so I also built into SECv2.2 a way to turn off the Attributes on the categories.php but you still have all the features available. There is a new Option Name Sorter and Option Value Sorter These can be used to globably set the Attributes Sort Order by product, category or all products.
  10. I will pm a new /admin/includes/configure.php to you.
  11. Strange... nothing changed, I removed the "catalog/" and it was still the same. Click right on the area where the image should be ... I am assuming you have a broken picture there ... what is the path to the image?
  12. Try using instead: define('DIR_FS_DOCUMENT_ROOT', '/home/glasslin/public_html');
  13. No images is usually a configure.php error. Check if you are defining your root or using the script: define('DIR_FS_DOCUMENT_ROOT', $DOCUMENT_ROOT); I use: define('DIR_FS_DOCUMENT_ROOT', '/home2/webmakr2/public_html'); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) As to missing things ... when you installed everything ... what all did you use? Limited Products Display is only available in SEC. You can look at your categories.php and see if you see any IF statements with LPD_ in the code.
  14. Okay ... let's try this ... When you say all images have disappeared ... do you mean when editing you have no place to add images ... or when clicked on a product, the image does not show on the right side?
  15. Linda, Then something is missing from my Admen menu... I can not find "Limited Products Display" anywhere in any of the Categories. Look in your left column ... click on Configuration ... the 3rd link from the bottom reads: Limited Product Display There is a setting on there for: Limit Products Page Information - Current Status See if that is set to True or False
  16. Under the Configuration in Limited Products Display. You can configue various fields not to display when it is turned on.
  17. Did you turn on the Limited Products Display and have Images setup not to show when turned on?
  18. Sure thing ... :D When you see errors like that, look to see what field is missing from what table and then try to determin what add-on might have had that field in it. That one was easier to spot as I wrote that. 8)
  19. I am not having any trouble deleting individual sessions whether a bot or not. I have some bot sessions with just a couple entries and others with go some 60-200 links. The bots do not show the session ID which I set under Sessions to Prevent Spiders True I am not sure why you'd have such a hard time deleting sessions. The delete on the individual session should remove that one cleanly. The delete all sessions is based on after 72 hours old, example. Now displaying the latest 100 sessions of this 24 hour period. You can also purge all records past the last 72 hours of data The "purge all records" is a link to delete older sessions. The purge all records from IP address is more or less for convenience to remove your own IP address from the list. Meanwhile, I am not sure where your delete issues are steming from on this. You may need to contact the author or User Tracking and see if there is something specific that you need to do. I just cannot recreate your problems on this one.
  20. I am not aware of one off the top of my head. But you might be able to modify the products table to use something similar to the specials to manage the date for expiration. Perhaps if someone is already doing this they could make a contribution out of it.
  21. Will the specials work for you? They have an expiration date to them.
  22. There is a minor bug on the category/manufacture name display when coming from either the categories or the manufacture's drop down. Edit lines 335-337 and replace with: <?php /* WebMakers.com Added: Shoppe Enhancement Controller - include category name rather than HEADING_TITLE - Manufacturer */ ?> <td class="pageHeading_section"><?php echo ($HTTP_GET_VARS['manufacturers_id'] !='' ? tep_get_manufacturers_name_id($HTTP_GET_VARS['manufacturers_id']) . ' ' : ($filter_id != '' ? tep_get_manufacturers_name_id($filter_id) . ' ' : '')) . tep_get_categories_name($current_category_id) . ' ' . (!$current_category_id ? tep_get_categories_name($filter_id) : ''); ?></td> <?php
  23. These are the sql commands for Header Tags Controller: # #HEADER TAGS CONTROLLER ALTER TABLE products_description ADD products_head_title_tag varchar(64) NULL Default NULL AFTER products_viewed; ALTER TABLE products_description ADD products_head_desc_tag BLOB NULL Default NULL AFTER products_head_title_tag; ALTER TABLE products_description ADD products_head_keywords_tag BLOB NULL Default NULL AFTER products_head_desc_tag;
  24. That code has to do with the Header Tags ... when did you load Header Tags?
  25. I was kicking myself in the footer for a bit over that one too ... 8)
×
×
  • Create New...