Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

keress

Pioneers
  • Posts

    155
  • Joined

  • Last visited

Everything posted by keress

  1. I'll email you privately and see if you can take a look. Thanks!
  2. Could it be a conflict with another contribution? I know my category.php has been hacked quite a bit with different ones I've installed.
  3. Thanks for responding on Christmas day! I'm on the 2-2.2d-5. I haven't tried installing an earlier version of this. What should I try?
  4. It's working . . . oddly. I just did an install of this contribution (Thanks by the way.) After uploading all the additions and edits I initially got a blank, white screen. I tried reversing the edits one doc at a time till by elimination I found that it worked by NOT using the changes to the general.php file and the application_top.php file. Can't use those. It works with only the html_output.php and .htaccess edits. As far as the categories.php edits, it can go either way. Doesn't help or doesn't break it. I did also experiment with turning the "Use Search-Engine Safe URLs (still in development)" in the Configuration admin page. I turn it on and the pretty urls work, but when I check up on it, I see that the value has reverted back to "False." I know, since it works I should probably not be trying to fix it, but this is curious and curiouser. Should I go deeper into this Wonderland, or just leave it alone and be glad it's working? "Alice" BTW, my store does have maybe half a dozen mod's already installed. I'm on MS2 and the Ultimate SEO I'm using is what's currently on top of the download list.
  5. I need to install a contribution that will allow my client to specify that certain of his products are to be sent flat rate, for other products they can choose between fedex and UPSP. Is this the best contribution to accomplish this? I see that you all have been working on this for an impressive length of time. Is it ready for "public consumption" by non-programmers like myself?
  6. We're testing our shipping modules. We've set the tare weight to 0, with a $3 handling fee. FedEx shipping is adding 1 pound to the item and not adding the handling charge. Anybody recognize this kind of problem?
  7. We are getting a message: We are using the standard USPS module included with basic installation. We've entered the username and password to our established USPS account. What can this error mean?
  8. I'm hoping there's a contribution that will display the main categories of the catalog, with pictures, in the space usually occupied by the "New Products" infobox, in other words the main, center column of the index.php page. I've looked in the Contributions and didn't see anything. Does anybody know of something like this?
  9. I've seen mention of a built-in free shipping module, but I can't find any such thing. Where is it? How do I access it?
  10. I'm sorry, could you explain a little more what's meant here?
  11. This contribution seems to be close to what we're looking for. We need to be able to set up some of our products with an option that will notify the customer that we will need to calculate freight charges manually, and get back to them with final price. We then need an email back to us with info on them and the product they want to order. For most of our products we can use existing shipping modules, but for the overweight items we need to quote several freight companies before we know what's best. Does anyone have any idea how much modification would be required of this contribution to work this way?
  12. I'm trying to install the All Products contribution and was trying to get some bugs out of the allprods.php. I made some formatting changes and now I can't call the page up. I get the index.php main page instead. I've been looking for a support thread for allprods, but can't find anything that isn't some years old, so I'm posting here. Can anybody give me a clue what's going on?
  13. Oh, I see. There must be a file I need to give write permissions to. I'd better re-read the instructions for this contrib. Sorry to bother you.
  14. I've installed a new store by duplicating an existing one (on different servers). I've tested it out pretty thoroughly and everything's working as it should, except for an error when I try to use the Header Tags Controller in Admin. I get the following error when I hit "submit" Thanks much for any help.
  15. Hello Jack, it's so good to see you're still supporting this invaluable contrib. I really appreciate that. I have a store that was running fine for months which inexplicably went down. I restored a backup of the catalog and the database. The error that's now occuring is near where there are "Header Tag" modifications so I thought I'd run it by you to see if anything rings a bell. The error occurs on the site listed as my home page, anytime you try to enter any catalog categories. The problem is also being discussed here: http://www.oscommerce.com/forums/index.php?sho...view=getnewpost
  16. I have "Register Globals" installed and when trying to access the "product attributes" page in the admin I received the following error: Anyone recognize this? Linda
  17. I've got it straight. I re-uploaded the header_tags.php, then played around with the header tags admin till I got a better idea how it all works. Thanks!
  18. By that do you mean do I have the following code in my allprods.php page? // BOF: WebMakers.com Changed: Header Tag Controller v1.0 // Replaced by header_tags.php if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { require(DIR_WS_INCLUDES . 'header_tags.php'); } else { ?> <title><?php echo TITLE ?></title> <?php } // EOF: WebMakers.com Changed: Header Tag Controller v1.0 ?> Yes, I do.
  19. I just did these two steps, the 7th I found confusing. In the header_tags.php file there were two, almost identical sequences of code. First I added the defining text to the sequence called for in the instructions, nothing changed. My meta tags were still just reading variables. Then I tried filling in the defining text for both sequences, still no change. I've included it here. // ALLPRODS.PHP case (strstr($_SERVER['PHP_SELF'],FILENAME_ALLPRODS) or strstr($PHP_SELF,FILENAME_ALLPRODS) ): $the_category_query = tep_db_query("select cd.categories_name from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . $current_category_id . "' and cd.categories_id = '" . $current_category_id . "' and cd.language_id = '" . $languages_id . "'"); $the_category = tep_db_fetch_array($the_category_query); $the_manufacturers_query= tep_db_query("select manufacturers_name from " . TABLE_MANUFACTURERS . " where manufacturers_id = '" . $HTTP_GET_VARS['manufacturers_id'] . "'"); $the_manufacturers = tep_db_fetch_array($the_manufacturers_query); if (HTDA_ALLPRODS_ON=='1') { $tags_array['desc']= HEAD_DESC_TAG_ALLPRODS . 'The finest in collectible, Art Deco, antique, vintage radios in catalin, bakelite and wood, clocks and more ' . HEAD_DESC_TAG_ALL; } else { $tags_array['desc']= HEAD_DESC_TAG_ALLPRODS; } if (HTKA_ALLPRODS_ON=='1') { $tags_array['keywords']= HEAD_KEY_TAG_ALL . 'collectible antique Art Deco vintage old radios catalin bakelite wood clocks ' . HEAD_KEY_TAG_ALLPRODS; } else { $tags_array['keywords']= HEAD_KEY_TAG_ALLPRODS; } if (HTTA_ALLPRODS_ON=='1') { $tags_array['title']= HEAD_TITLE_TAG_ALLPRODS . 'Antique, Art Deco, Vintage Radios, Clocks and more in Catalin, Bakelite and Wood' . HEAD_TITLE_TAG_ALL . " " . $the_category['categories_name'] . $the_manufacturers['manufacturers_name']; } else { $tags_array['title']= HEAD_TITLE_TAG_ALLPRODS; } break; // products_all.PHP case (strstr($_SERVER['PHP_SELF'],FILENAME_PRODUCTS_ALL) or strstr($PHP_SELF,FILENAME_PRODUCTS_ALL) ): $the_category_query = tep_db_query("select cd.categories_name from " . TABLE_CATEGORIES . " c, " . TABLE_CATEGORIES_DESCRIPTION . " cd where c.categories_id = '" . $current_category_id . "' and cd.categories_id = '" . $current_category_id . "' and cd.language_id = '" . $languages_id . "'"); $the_category = tep_db_fetch_array($the_category_query); $the_manufacturers_query= tep_db_query("select manufacturers_name from " . TABLE_MANUFACTURERS . " where manufacturers_id = '" . $HTTP_GET_VARS['manufacturers_id'] . "'"); $the_manufacturers = tep_db_fetch_array($the_manufacturers_query); if (HTDA_PRODUCTS_ALL_ON=='1') { $tags_array['desc']= HEAD_DESC_TAG_PRODUCTS_ALL . 'The finest in collectible, Art Deco, antique, vintage radios in catalin, bakelite and wood, clocks and more ' . HEAD_DESC_TAG_ALL; } else { $tags_array['desc']= HEAD_DESC_TAG_PRODUCTS_ALL; } if (HTKA_PRODUCTS_ALL_ON=='1') { $tags_array['keywords']= HEAD_KEY_TAG_ALL . 'collectible antique Art Deco vintage old radios catalin bakelite wood clocks ' . HEAD_KEY_TAG_PRODUCTS_ALL; } else { $tags_array['keywords']= HEAD_KEY_TAG_PRODUCTS_ALL; } if (HTTA_ALLPRODS_ON=='1') { $tags_array['title']= HEAD_TITLE_TAG_PRODUCTS_ALL . 'Antique, Art Deco, Vintage Radios, Clocks and more in Catalin, Bakelite and Wood' . HEAD_TITLE_TAG_ALL . " " . $the_category['categories_name'] . $the_manufacturers['manufacturers_name']; } else { $tags_array['title']= HEAD_TITLE_TAG_PRODUCTS_ALL; } break;
  20. Thanks a MILLION! Now, if I can get one more little thing fixed I'm done with this project. There's the same problem with the header tags. My source code for this page reads: <title>HEAD_TITLE_TAG_ALLPRODS</title> <META NAME="Description" Content="HEAD_DESC_TAG_ALLPRODS"> <META NAME="Keywords" CONTENT="HEAD_KEY_TAG_ALLPRODS"> Did I miss an update or something? How come these things aren't defined?
  21. I've just installed AllProds and it's working well, with the exception of the subheading, which is reading "HEAD_DESC_TAG_ALLPRODS." The meta tags are similarly worded. It looks like a define is missing, but I can't see what I could have missed. I've doubled checked and I don't seem to have left anything out. Thanks for any help.
  22. I installed this, the "define mainpage" is working, but in the product input area it does not appear that anything new has been installed. I see the WYSIWYG line in the config section, but no HTMLarea where it should be, except in the "Define Mainpage" addition I mentioned. Can anyone point me in the right direction?
  23. Thanks, Titch, that's the one I've been trying to install. I spent a good part of yesterday reading threads, trying to decide what to use, but couldn't find anything that had people answering questions lately. I decided to take a chance on this one. It's working for the "main page" define on the admin panel, though there's a ERROR_FILE_NOT_WRITEABLE message. Someone reported that opening the read/write permissions on the mainpage.php file will fix that, so I have that to try. The REAL problem is that for the product content input areas there is no difference. It's the same old input screen as ever, as if I had not installed anything. I've checked and re-checked all my files to make sure I uploaded everything I needed to, but nothing's working.
  24. I've been struggling the last day and a half to get the HTMLarea WYSIWIG editor installed, to no avail, and with no support. What is it people are using these days that's supported?
×
×
  • Create New...