Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

upgrade

Pioneers
  • Posts

    16
  • Joined

  • Last visited

About upgrade

  • Birthday 09/21/1976

Profile Information

  • Real Name
    Razvan
  • Gender
    Male
  • Website

upgrade's Achievements

  1. Thank you. It works now, as you said. I'm still having problems with the manufacturer link, I mentioned in an earlier post: " 1. When I select a manufacturer (for example Akasa) from the drop-down, it gives me the link: www.mystore.com/akasa-m-46.html, but it shows all the products in the store from all the manufacturers, not only the products from Akasa. " In the previous working htaccess file, with USU 2.1, I had this line: RewriteCond %{QUERY_STRING} ^options\=(.*)$ RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING} and in the present htaccess file, I have: RewriteRule ^([a-z0-9/-]+)-m-([0-9]+).html$ index.php [NC,L,QSA] I read the instructions a few times, but I can't figure it out.
  2. I have another 2 little problems: 1. When I select a manufacturer (for example Akasa) from the drop-down, it gives me the link: www.mystore.com/akasa-m-46.html, but it shows all the products in the store from all the manufacturers, not only the products from Akasa. 2. It gives me an 404 error when I select links that have in the name of the product (and automatically in the link) characters like: ™ © ® ..etc. Thank you for your time.
  3. Hmmm, I think sqlite 3 is installed on most servers now. So what do you recommend for cache between file and mysql? Before USU5, I used USU 2.1 with Page speed, which I understand it's not recommended with USU5. Now I am on file cache system and I think it's a little bit slower. I have a lot of queries and I want to cache them. If you want I'll send you a link of my website to take a look as a second opinion. Thanks.
  4. I installed this contribution, very well documented and easy to install, thank you for your work. Everything is fine, except the sqlite cache system. The file and mysql cache system works fine, but I understand that you recommend sqlite. On my hosting server, I have: PDO Driver for SQLite 3.x enabled PECL Module version 1.0.1 $Id: pdo_sqlite.c,v 1.10.2.6 2006/01/01 12:50:12 sniper Exp $ SQLite Library 3.3.6 When I choose the sqlite cache system, all I get on the front store is a blank page. Thank you for your help.
  5. Great contribution. But I have a problem, when I click on a category, instead of showing me the products from that category, it shows all products from that manufacturer. It shows the categories that belongs to that manufacturer with the number of products, but it takes me to all products. Strange, because the link in the browser seems to be fine: h t t p://localhost/index.php?manufacturers_id=43&category_id=122 Any ideas?
  6. I have the same problem, but my domain is not moved to this new host. All emails sent from the contact_us form to [email protected] are not working, but if I change in admin interface, the email adress to [email protected] or yahoo.com..etc, is working fine. I think, in my case, the error is because I have not yet moved my domain to that host. But, strange, despite the fact that my domain is not yet moved, I receive emails at [email protected] when I make an order, when I send email from admin interface and when I create an account, but not from contact_us form. And, about my problem, with the fields not autocompleting with the info from the db?
  7. Great contribution ! Thnx, but I have a little problem: autocompleting input fields is not working on my page when the customer is logged in. If I replace <?php echo tep_draw_input_field('name'); ?> with <?php echo $name;?> it gives me the name of the customer pulled from the db, but obviously, there is no input field, so, I think the query is correct. <!-- BOF Super Contact us enhancement 1.41 //--> <?php } else { if (tep_session_is_registered('customer_id')) { $account_query = tep_db_query("select customers_firstname, customers_lastname, customers_email_address from " . TABLE_CUSTOMERS . " where customers_id = '" . (int)$customer_id . "'"); $account = tep_db_fetch_array($account_query); $name = $account['customers_firstname'] . ' ' . $account['customers_lastname']; $email = $account['customers_email_address']; } ?> Any ideas? Everything else is working.
  8. While clicking submit on my last post, I'm thinking of someth: if it's not possible to resolve this bug, maybe there is a workaround for this: 1. Setting to inactive status automatically this products (custom builds) when added into the db with a product_id, therefore, the custom builds not appearing anymore in the new products module. or 2. The custom builds that are inserted into the db are not belonging to any category and they are not appearing in admin catalog, so, we can write a code (or modify) in products_new.php to select only products that belongs to a category. Like that, the custom builds are not appearing anymore in the new products module. I'm not a programmer, so, if it's someone who could help us in this matter, we don't mind. :D
  9. Does anybody solved the problem with adding custom builds to db with a product_id and automatically added to new products page? I don't want the customers to see the custom builds as new products. In admin interface, the default status it's set to 0 to prevent the custom computers from showing up in the store, but when set to 0 it prevents the computer from showing up in the cart. I think this is the most important bug of this great contribution.
  10. Solved ! :thumbsup: Change code from scr.css: .tabcontent { padding:2em; /* acts little ike cellpadding, so dont touch this */ to .tabcontent { padding:5px; /* acts little ike cellpadding, so dont touch this */
  11. In addition to my last post: When i said display the next tab, I mean not clicking on it, but activate the tab from admin side by writing some info in it.
  12. Same here. When using IE everything is ok, but when using Firefox, a lot of white space apearrs after the products tabs and the footer. I notice that the white space is growing with every tab displayed. For example, if I have only first tab: Details, the white space is small, but after I display the next tab: Specifications, is growing and so on... Anybody knows how to make products tabs formatting compatible with Firefox?
  13. Great work! Thank you for your hard work. :thumbsup: I have installed this contribution and it's working fine, I have followed the steps from the instructions and I didn't encounter any problems. Very well written the instructions! I do have a question... Is it possible for this second, third, fourth and so on ... manufacturer to appear only in the categories where are the products that belong to that manufacturer? Let's say you have a computer store (my case..:D)... and you are in the category AMD, from CPU parent category. AMD have three types of sockets: 754, 939 and AM2. I want to sort the products by AM2 socket, but I want to appear only a box or a drop-down list with these three types, not all "manufacturers" defined in the admin. And the same thing in the other categories, filter by FSB, DDRI or II... Is that possible? Maybe there is other contribution we can merge with this one? Thank you for your response.
×
×
  • Create New...