Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

FlyingMonkey

Archived
  • Posts

    851
  • Joined

  • Last visited

Everything posted by FlyingMonkey

  1. if that's for froogle... they may get mad at you for limiting it.
  2. one of the moderators apparently removed it without any prior notice which is a bit irritating. i'll have to talk to them when i get back to my development pc.
  3. try removing that line entirely. it's not essential.
  4. As long as you edit the files that pertain to the admin there should be SEO URLs in your Configuration box. Did you double check to see if you've run the SQL commands?
  5. If you were using a previous offer_id, Froogle wants you to use the same one. Try contacting Google.
  6. if you look a couple post up, i left an example. there's too many seo contributions available to write one for everybody. so i felt a general example would be the best way.
  7. MicroShaft: It should be in configuration. MicroShaft: It should be in configuration. I am having trouble with the manufacturer box, it does not show the products associated with that particular manufacturer. I associated several products to the manufacturer and it still doesn't work. Even the direct links don't seem to work. http://www.b2customz.com/index.php?manufacturer_id=2 is "Zinik Wheels" However, the strange thing is tat SEO version of the link works. For instance: http://www.b2customz.com/zinik-wheels-m-2.html which then derives the "regular" link above. I've cleared the cache too for SEO, and for the manufacturer box. Any ideas where to look or for a fix? Thanks in advance.
  8. that's odd, double check to see if data is created by the feeder.
  9. PassionSeed: CHMOD 777 the directory where the feed is placed. OSNewIsh: It should overwrite the file every time. Try using the latest version. chantal7: Something is wrong with your database settings, double check them. Based on popular demand: The Official "Unoffical" Support for SEO URL's Notes: The following release is meant to be an example/help to support your own SEO URL's contributions. This particular code is based on Chemo's SEO URL's. Please do not PM me asking to configure it, specifically for your store. Please use this forum topic for assistance. Add: $catalogURL = 'http://www.yourstore.com/catalog/'; //URL to your osC Catalog After: $source_file = $OutFile; Replace: $output .= $row->product_url . "\t" . with $string = ereg_replace("[^a-zA-Z0-9 ]", "", $row->name); $string = ereg_replace(' ', ' ', strtolower($string)); $string = ereg_replace(' ', '-', strtolower($string)); $output .= $catalogURL . $string . "-p-" . $row->id . ".html\t" .
  10. it shouldn't be hard at all... i have to prepare for an interview and finish up a couple projects. but i'll try to take a look at it next week.
  11. 1) your host does not allow ftp connections. try using a passive connection... there's instructions somewhere in this topic. 2) unforunately, i designed a system to incorporate all of the feeders into one... but it wasn't designed well enough so i threw it out the door. i keep planning on a new system, but haven't had the chance.
  12. which version are you running? There were some updates to the way specials were handled in the past. it currently enables specials if the specials status is enabled AND (if the date is newer than the current date OR no date is specified) as of probably the last couple of versions. maybe your specials were disabled? or the database maybe setup differently. which version of oSC are you using?
  13. if your tables are named differently... with a prefix it won't work either. you'll have to update the sql code accordingly. ex: if you have something like ocs_products instead of just products as a table.
  14. everything seems normal... you get data even if you fill stuff out wrong. try adding this right before the $loop_counter++: echo $output; (it should spit out some stuff on your browser) if it doesn't i'm pretty sure it's your db connection which you'll need to triple check or check with your host.
  15. hmm, usually it's just the db settings. try deleting the file... let me know if it creates a new one. anything abnormal? like incredibly large descriptions, etc? is osC provided by your host? i've seen the db settings hard coded else where.
  16. zboyblue: i can't really comment on it... i don't have salemaker (so, i can't test it). someone released something for this data feeder a while back for salemaker... but once again, i've never tested or endorsed it. cczernia: try asking your host.
  17. Sorry, for not following up on my initial sort post. i didn't realize i didn't subscribe to the topic. Sounds like you guys are making some serious progress. Any word of an updated contribution release with sorting? Do you guys need any help? I started messing with the index.php sql queries to see if i could sort the products, but then... i realized i posted something weeks ago here.
  18. The lastest Froogle Data Feeder 1.62a sets the $default_currency equal to "USD". Along with every Froogle Data Feeder released to the public to my knowledge (by me), including the first release with advance options. Where did you get the code? It may be outdated or an unofficial release.
  19. It means that it was unable to connect to hedwig.google.com (just the basic connection) even without user/password. Your host may not allow FTP or you may have to set it into passive FTP mode. There's instructions in this topic somewhere... I can't remember exactly what it is.
  20. Miop: Check your database settings, maybe they are different now. You'll need to update the one in froogle.php odleyart: Goto contributions and search for them. Only Yahoo and Bizrate are available.
  21. Does this contribution allow the customer to sort by Price (Low to High, High to Low), Name, Brand, etc?
  22. oops, typo. like this without the extra "|" else if($catNameTemp == "salsa" || $catNameTemp == "bachata" || $catNameTemp == "tango")
  23. no, but close... thanks for attempting your own solution first. it should look like this assuming that the categories are salsa, bachata, and tango for the particular products. the categories must be the ones specified directly to the products (not parent categories). else if($catNameTemp == "salsa" || | $catNameTemp == "bachata" || $catNameTemp == "tango")
×
×
  • Create New...