Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

clarocque

Pioneers
  • Posts

    548
  • Joined

  • Last visited

Everything posted by clarocque

  1. To add meta data to index.php go to /includes/lanaguages/english/meta_tags.php Edit the fileds that look like: // Additional Text for ALL pages // Additional Title define('HEAD_TITLE_TAG_ALL',''); // will add to all if not truncated // Additional Description Text define('HEAD_DESC_TAG_ALL',''); // will add to all if not truncated // Additional Keywords define('HEAD_KEY_TAG_ALL',''); // will add to all if not truncated // Additional Title Text for index page (if no category or manufacturer info) // Additional Title define('HEAD_TITLE_TAG_INDEX',''); // will add to index.php if not truncated and // Additional Description Text define('HEAD_DESC_TAG_INDEX',''); // will add to index.php if not truncated // Additional Keywords define('HEAD_KEY_TAG_INDEX',''); // will add to index.php if not truncated Enter the meta datd you want between the ' and ' for example: define('HEAD_TITLE_TAG_INDEX','This will add to the index.php title'); // will add to index.php if not truncated and If I can find the time I wil lmake some changes to the files to make this clearer...
  2. Well to be honest I have only slkimmed the recent posts, so I am not sure even what your issues is, but change: define('HTTP_COOKIE_DOMAIN', 'mydomain.com'); to define('HTTP_COOKIE_DOMAIN', '.mydomain.com'); Chris
  3. The cache is for managing OSC stock cache not the cache class which is what SEO's use. If you want one to manage that download mine (in my signature). But if you installed it right it should reset when it needs to. The layout of your store... nothing to do with Ultimate SEO URLs :thumbsup: Chris
  4. I beleive Glob is not available until 4.3.0. a quick fix would be you use Chemo's Cache Class or dont cache the results and comment out: // foreach (glob($meta_cache_files_path."{*.meta-cache}", GLOB_BRACE) as $filename_page) { //unlink($filename_page); // } The correct answer to me would be have your host update PHP - that is really old.
  5. What version of PHP are you running? And what is your server info?
  6. It looks like you path is wrong for one... BUt to help your self update to the latest version and use cache classes then you dont have to mess with paths ;) If you have then you still have some old code :( Chris
  7. Sorry I have never even looked at STS, it does work with BTS... I would need more detail to help you .
  8. Turn off SEO URLS and see if you still get the SID.
  9. Please paste the other app top code for the view cart please.. (not that is it)
  10. Sorry forgot to add - Attributes requires the word create to be added, but it really does not affect SEO URLS (was thinking of page cache - sorry)
  11. Here is a tip for some of you... If you want to reset cache when you delete a product or category or if you have copy attributes installed you can add confirm to the eregi and that will reset cache for those function to. if ( eregi("(insert|update|setflag|confirm)", $action) ) include_once('includes/reset_seo_cache.php');
  12. Kathy, I think the reality is that most of the time (if not all), the SID issue was already there- just by using the SEO contribution they are now looking at the URL. Ultimate SEO's really has nothing to do with the SID's in the URL it is a matter of configuration / setup (or lack of). I am not saying it is not an issue, but unfair to say it is an issue because of this contribution. Chris
  13. As nick explained, the program will do it if you installed it right. If it is not then you should re-check the install.
  14. That is normal, but you should be resetting the cache whenever you do make a change.... That is what step 6 is: // Ultimate SEO URLs - by Chemo // If the action will affect the cache entries if ( eregi("(insert|update|setflag)", $action) ) include_once('includes/reset_seo_cache.php'); might want to recheck your install...
  15. For those of you not getting any description on the default page... I just tested again and it seems to be working fine.... You have to make sure you set the languages/english/meta_tags.php index file. If you have please post that page so I can see how you entered it - alos turn cache off at this point to help trouble shoot your issue. Chris
  16. Did you reset the meta cache? Has nothing to do with SEO? That should work unless we are talking about different pages... you cab add that to any query that is getting produccts... might have to add/remove p. Chris
  17. Bobby, Maybe it is time to start a sperate thread about SID as many questions are about that and the improper configuration.. Fact is most of the issues were probably there before U-SEO were installed... but this threas is getting really long and ALOT of it is not really anything to do with Ultimate SEO's????? Chris
  18. No the only path option is if you use the cache option. For the main index page you can specify the meta data in the languages file. Looks like it is working fine (http://overallbeauty.com/catalog/index.php/cPath/28 | http://overallbeauty.com/catalog/index.php/cPath/23) You do have some configuration settings that might be off as the SID is staying in the URL, but that should not affect this contribution.
  19. If you are capable go in with phpmyadmin and remove one of the groups and then filter for that group in configuration and remove them... If you cant do that go back to the install/uninstall page and remove them and start over....
  20. Check your configuration and make sure that is correct... make sure there is no http or https or www in the cookie domain.
  21. So disable and/or unistall one at a time and se when it gets fixed... or roll back to your back up and reinstall one at a time and se when it breaks...
  22. Donna, Yes you can modify the query by some code to the query... The query you are talking about is around 170 in the includes/meta_tags.php file. After the "where" statement add p.products_status='1' and If you want to filter the manufacturers you can do the same for that query but use manufactueres status and same for cats if you have that contribution.... Chris
  23. Kathy.... If you are sayoing all you did is change the comment tag from # to // Then yes it is coincidence...... They do the same thing.... Chris
×
×
  • Create New...