Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

jailaxmi

♥Ambassador
  • Posts

    280
  • Joined

  • Last visited

Everything posted by jailaxmi

  1. Hi, I recently switched hosts and now I am getting the following (double) message above my products (on the product page): Warning: include_once(includes/modules/recently_viewed.php) [function.include-once]: failed to open stream: No such file or directory in /home/username/yolswan.com/product_info.php on line 412 Warning: include_once() [function.include]: Failed opening 'includes/modules/recently_viewed.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/username/yolswan.com/product_info.php on line 412 The 'recently viewed module' shows fine at the bottom of the page, though, so I don't know what the issue might be here... Thanks for any help!
  2. Ok, I think I am on the right track... It has to do with the cache function, because if I disable the cache in the Configuration the categories appear as they should. So I didn't need to remove STS (which I love!)... :blush: Sorry for my confusion!
  3. I'm actually going to have to remove this contribution until I figure this out, or someone sends me in the right direction... Yol
  4. Ok, I have been trying to figure this out by reinstalling osCommerce 2.2RC2a with the same database I had before to see which contribution may be creating this problem. So with a clean installation all my categories show up, but when I install STS 4.5.8 files some of the categories appear and others don't, or they appear and disappear randomly on different pages. This is on a completely clean installation with no other contributions, just STS 4.5.8 in a separate folder in my site (not the link I had previously posted). I still can't figure out what is wrong! :angry: Any ideas would be greatly appreciated!
  5. Are you talking to me?

  6. Hi, I have STS4.5.8 installed and have had it for a while now with everything working all right. Now, I tried to add a couple categories with a few sub-categories and none of the changes showed up on the site. I cleared the cache and they showed on the home page. The next time I opened the browser they weren't there anymore. You can see it in action here: http://www.sacred-jewelry.com. The categories not showing are Fine Silver Jewelry and Copper Jewelry. Actually, sometimes they show and sometimes they don't. Like they may show up on the home page, but if I go to the Chakra Jewelry category, they don't show up. If I go to an item from those categories, they are there, on the left menu. In other words, sometimes they show and sometimes they don't, which is so odd! Also, while I was trying to figure out if there was something on my template that was preventing these changes from showing, I realized that the 'tell a friend' box is not showing either, even though the $tellafriendbox marker is on the template. The template's left column is (in order): $categorybox, $shopbypricebox, $searchbox, $tellafriendbox and then a few images with either javascript of links (to Facebook, etc.) Any ideas/suggestions on how this can be fixed? Thanks!
  7. Yeah, isn't that odd? I will post on that support thread. I actually thought I had posted this there! Talk about spacing out... Thanks for your help, though! Yol
  8. Hey Jim, I just noticed that sometimes the new categories show and sometimes they don't. Would you mind clicking around the jewelry sections and see if you still see those everywhere? I don't see the “tell a friend” thingy either... When I go to the home page it shows the new categories, but if I click on say, “chakra jewelry,” I don't see the copper and fine silver jewelry categories on the left menu anymore. If I click on an item that belongs to the new categories, like the swirl ring, then the new categories show on the left menu. It's odd... I am wondering if it's the cache in my computer, not just the browser's... What do you think? Thanks again! Yol
  9. I am guessing I should place the image in my images folder to link to that site? I think I am just linking to that image directly from their site... I always forget because I don't get that security issue with Firefox. Let me know if I'm wrong! Thanks again, Jim. Yol
  10. Oh, wow! I hadn't even noticed! I am thinking now that it was a “cache” problem... :blush:
  11. Thanks for letting me know, Jim! I'll look into it... Any ideas about the categories not showing? Yol
  12. Hi, I have STS4.5.8 installed and have had it for a while now with everything working all right. This morning I tried to change a category name and add a new category with a few sub-categories and none of the changes showed up on the site. Also, while I was trying to figure out if there was something on my template that was preventing these changes from showing, I realized that the 'tell a friend' box is not showing either, even though the $tellafriendbox marker is on the template. The template's left column is (in order): $categorybox, $shopbypricebox, $searchbox, $tellafriendbox and then a few images with either javascript of links (to Facebook, etc.) The column on the right works fine. You can see it in action here: http://www.sacred-jewelry.com. There should be a category between 'Fashion Jewelry' and 'Gemstone Malas'. Any ideas/suggestions on how this can be fixed? Thanks!
  13. Yes, that's odd. The store used to be in the directory /yogajewelry/ but I just switched it to the root folder at http://www.sacred-jewelry.com. Not sure why it is redirecting the page instead of giving a 404 error! Anyway, I am on a Linux server. You can see that the categories don't have seo friendly urls, but if you click on any of the products, those look ok.
  14. I have removed it, but cannot see any difference... I am not sure what you are talking about when you say to get a proper certificate, since I have one that matches my site. What I need help with is figuring out why the categories do not show the seo friendly urls, instead of ?cPath=21, etc., while the products do show the seo friendly urls. :( Thanks anyway...
  15. Ok, let me try this. Maybe I messed something up when trying to integrate the SID killer contribution. Could you please look at the beginning of my includes/functions/html_output.php file, and tell me if it is right, or if I messed something up? Thanks! //// // Ultimate SEO URLs v2.1 // The HTML href link wrapper function function tep_href_link($page = '', $parameters = '', $connection = 'NONSSL', $add_session_id = true, $search_engine_safe = true) { global $kill_sid, $HTTP_GET_VARS; //SID killer global $seo_urls; if ( !is_object($seo_urls) ){ if ( !class_exists('SEO_URL') ){ include_once(DIR_WS_CLASSES . 'seo.class.php'); } global $languages_id; $seo_urls = new SEO_URL($languages_id); } return $seo_urls->href_link($page, $parameters, $connection, $add_session_id); } ////////////////////////////////////////////////////////////// SID killer if ($HTTP_GET_VARS['language'] && $kill_sid) { $l = ereg('[&\?/]?language[=/][a-z][a-z]', $parameters, $m); if ($l) { $parameters = ereg_replace("[&\?/]?language[=/][a-z][a-z]", "", $parameters); $HTTP_GET_VARS['language'] = substr($m[0],-2); } if (tep_not_null($parameters)) { $parameters .= "&language=" . $HTTP_GET_VARS['language']; } else { $parameters = "language=" . $HTTP_GET_VARS['language']; } } ////////////////////////////////////////////////////////////// eoc SID //// ////////////////////////////////////////////////////////////// if (isset($_sid) && ( !$kill_sid ) ) { $link .= $separator . $_sid; } ////////////////////////////////////////////////////////////// // The HTML image wrapper function function tep_image($src, $alt = '', $width = '', $height = '', $parameters = '') {
  16. Thanks for your reply, but I am not sure I follow you... I don't have a php file redirecting, just the redirect in the .htaccess file. As far as the categories are concerned, I don't understand why the site wouldn't generate urls for the categories when it does it without any problem for the products. I use STS, so there is a bit of html in there (not necessarily mine), but the template simply “frames” the content, so to speak, and everything works like any other osc site. Any ideas on where to look, and for what? I have the same version of this contribution on another site and it has no problems at all. Thanks again!
  17. Yes, that is the version I have (sorry, I forgot to add the “original” part). It shows the URLs for products no problem, for example: http://www.sacred-jewelry.com/buddha-eyes-necklace-p-28.html, but if I click on any category, the URL becomes http://.../?cPath=21 What do you mean my redirect php script? Could you please guide a little more here? I tried removing the index.php redirect from the .htaccess file, but it didn't make any difference. Thanks!
  18. I use an index.php rewrite, too, and now I am wondering if this is causing the categories not to show up in the URLs? The URLs for the product pages work fine, but the categories just show something like ?cpath=32, etc. I use USU v2.1d Updated, STS 4.5.8 with os 2.2Rc2a (php 5.2.9 and Mysql 5.0.51). Any ideas on how to make the categories work on the URLs? Thanks in advance!
  19. I use Lightbox on my shop and would like to change the intensity of the box when it pops up, so I was hoping that those of you who know how to do these things would help me out. I am sure it is a simple change, but I don't want to mess things up trying to fiddle with it... In my stylesheet.css the overaly for the lightbox is set to black, but when the image pops up the background is a lighter black than I would like. I've seen sites with a darker lightbox background, and I would like to be able to vary the intensity of the background to my liking. Where do you set up how light or dark should the background appear when the lightbox opens? Thanks for any help!
  20. For some reason I wasn't able to install those either, no matter how many times I tried, so I used a different contribution: http://addons.oscommerce.com/info/1611/v,22 I use RC2, STS 4.5.8, Ultimate SEO URLs, too. You can see it working here: http://www.sacred-jewelry.com/yogajewelry/index.php
  21. One more thing... When I tried to erase one of the extra pictures, it didn't erase it, it's still there. Please help!
  22. Hi, I just installed this great contribution and am having a bit of trouble with the images. I was able to add 2 extra images to a product, and they show fine on the product page (as thumbnails). See them here: http://www.sacred-jewelry.com/yogajewelry/...klace-p-28.html Then I realized that all my products are showing this BIG image on the product pages, instead of the thumbnails. I added another image to another product, and it shows both pictures really BIG on the page. What am I doing wrong? I set up the configuration so that the image sizes would be restricted, but it's not happening. :( Also, is there a way to make this work with Lightbox? My configuration for Additional Images: Automatically create 3 image set true Background color Pre-fill upload dir w/ Category names true Pre-fill starting with this sub-dir products Use image size restrictions true Product Info: Show Additional Images true Product Info: Product Image Behavior popup Product Info: Group parent with sub-images true Product Info: Restrict parent image size true Product Info: Table alignment right Product Info: Table location sides Product Info: Number of columns 1 Product Info: Number of rows 4 Popup: Show Thumbnail Menu true Thumb Menu: Show parent image true Thumb Menu: Use image size restrictions true Thumb Menu: Table alignment right Thumb Menu: Table location sides Thumb Menu: Number of columns 1 Thumb Menu: Number of rows Thanks!
  23. Never mind... Nothing to do with STS. There was an error on the code... It should have been: 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a>'); I'm just posting it here so that someone else can use it, if needed. Sorry!
  24. Quick question... How do I prevent the prices from showing on the new products module on the main page (Products for...)? I tried editing catalog/includes/modules/new_products.php by changing: 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br>' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id']))); to: 'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a>))); but it messes my shop up. Everything disappears (columns, images, everything except the main text). So I am guessing this has to do with STS. Any ideas? Thanks!
×
×
  • Create New...