Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

GLWalker

♥Ambassador
  • Posts

    845
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by GLWalker

  1. Do you have prevent spider sessions set to true in the admin under sessions?
  2. Just wanted to say,this is truely an awesome piece ofwork! Definitely a must have. Ive been tweaking on it a couple days and have been able to integrate it with article manager, creating a seperate file for filling in the articles info just as you do the product info. All other files and databases only had to have the extra functions added to them. I use page manager to add text to several pages in mysite, and this mod even pulls the descriptions and keywords out of there too. I was really impressed to see it also pulled some of my footer text. This is probally one of the most important mods you could have for your shop. The search engines just have to love this. I bet if you wanted to pay someone for a mod like this you would have to drop at least a couple hundred. Excellent work Jack. Thank you! :thumbsup:
  3. Your going to have to search for bits and peices and put it together from there, whatever changes you see were made with the original code, you should try to format to your new code on anything you addon. Its the price you pay for one of "those" templates. And you will more than likely have to do this kind of code search for anything you want to install. But dont give up, itcan be done with justa bit of double checking. I would start by searching for : $category['categories_image'], $category['categories_name'], Then work your way around it. Unfortunately these "template factorys" rape osc users, they apply templates in the easiest, quickest way possible, overwrite the stylesheet, and leave a horrible mess of code. And in doing that they leave the end user with just a basic oscommerce shop that is a pain in the but to update becuase of their trivial changes that do not follow any of the osc code standards. What makes it really so bad is the fact that with just a few changes to the main body table and columns and boxes, you can have prctically any template design you want and still keep your core code intact.
  4. Wnated to confirm this block of code: In catalog/includes/header_tags.php Lines 65 & 66 read: case (basename($PHP_SELF)==FILENAME_PRODUCT_REVIEWS_INFO): $filename = FILENAME_PRODUCT_REVIEWS; break; case (basename($PHP_SELF)==FILENAME_PRODUCT_REVIEWS_WRITE): $filename = FILENAME_PRODUCT_WRITE; break; Is that correct? Or should it be: case (basename($PHP_SELF)==FILENAME_PRODUCT_REVIEWS_INFO): $filename = FILENAME_PRODUCT_REVIEWS_INFO; break; case (basename($PHP_SELF)==FILENAME_PRODUCT_REVIEWS_WRITE): $filename = FILENAME_PRODUCT_REVIEWS_WRITE; break;
  5. As always, Great work Jack. I installed this from the update file last night, everything went smooth. This thing is awesome! However, you did leave out a few things in the upgrade instructions --- uploading the social bookmark module and overwriting the includes/headertags.php and includes/functions headertags.php Nothing anyone thats already installed the previous version cant figure out. Thanks
  6. No, the sessions table is a stock osc table. I wouldnt know without digging into the mod. You might consider using this mod instead: http://addons.oscommerce.com/info/1237 it does the same is is ready to go with a lot of other add ons.
  7. Crap, just realized your using a different version. Im using anti-robot reg. Sorry, maybe it works simular though, is there a database table that works with yours that stores a session id?
  8. Not sure that this will work for you, but I once had a problemwithit not showing, and this is what I did. Go to your phpMyadmin, click on the table for anti_robotreg and delete the contents, not the table, just the contents. Let me know if that works. Your getting an image at least, when I had a problem before I wasnt even getting that, so I dont know if the same solution will work.
  9. In the admin under configuration/my store, there is a switch for displaying cart after adding product
  10. There are literally hundreds of post in this forum that address exactly what you inquire of. Why don't you search the forums rather than post redundant questions in such a demanding way. Maybe your whole point of this topic was to find someone to pick a fight with? The obvious is not hard to see.
  11. I just looked at this and Its a very nice addon. It really will add a professional touch to any store. I like that it doesnt have to create any extra database table like some other one does. Thanks for giving us this.
  12. Yesterday I installed ver 2.7.1 Everything went fine for the most part, I added the sort order functions and then followed all the instances of price to use for a guide to add weight as well. It all worked great, untill I went to create a template, no price or weight updates with the template, they do insert into the database, but they dont get called back to the product page. So luckily ver 2.8 came out last night with a fix for this issue and the price. I used a compare program to find the differences then merged them over, for your reference if your having these problems, I found the changes to be located in includes/attributeManagerUpdateAtomic.inc.php and javascript/attributeManager.js Just a couple lines in each file. I also had a problem with it originally trying to write to the am_attributes_to_templates table so I just wrote the SQL and inserted it manually to avoid that problem, here is that bit of code in case it helps, you may have to modify the weight and sort order to match what you already use, or just drop them completly if you dont use those: DROP TABLE IF EXISTS `am_attributes_to_templates`; CREATE TABLE IF NOT EXISTS `am_attributes_to_templates` ( `template_id` int(5) unsigned NOT NULL, `options_id` int(5) unsigned NOT NULL, `option_values_id` int(5) unsigned NOT NULL, `price_prefix` char(1) NOT NULL default '', `options_values_price` decimal(15,4) NOT NULL default '0.0000', `options_values_weight` decimal(5,3) NOT NULL default '0.000', `attribute_sort` int(10) unsigned NOT NULL default '0', KEY `template_id` (`template_id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
  13. Are you serious? Thats a defualt example listing. Search the contributions for cross sell and x sell.
  14. There is an excellent code for doing just what you want inside this book. http://www.packtpub.com/inside-oscommerce/book
  15. I had many problems with the edit order page showing up completly blank when you go to edit an order with an existing product, or if you create a new order the page would go blank after you add the product. The problem was coming from the free shipping for xxxx amount shipping module (not the order total module). I turned it off and now the editor works fine.
  16. Ive used this in the past. Someone post it didnt work, but it worked fine for the company who used it. ( untill I turned them in ) I dont know if it will work right off the bat with any of the newer RC releases. http://addons.oscommerce.com/info/3222
  17. Hows this for wasting your thread space? Now maybe you should try to reinstall from the beginning or choose another contribution that does this. And what site are you doing this on? Let us see so we may help you. ;) Dont worry no one here would turn you in.
  18. Did you add your email into the form feild?
  19. Thats the also purchased module. Its already installed by defualt. Im not sure right off hand about adding an extended warranty at checkout. You could use the gift wrap mod and reword it for warrenties, or you could add the warrentee as a products attribute.
  20. found a typo: In the code for includes/functions/general/ find: ( strpos($_SERVER['REQUEST_URI'], '-t-') ? ($querytype = 'filename_articles-tPath=' . $HTTP_GET_VARS['pID']) : replace with: ( strpos($_SERVER['REQUEST_URI'], '-t-') ? ($querytype = 'filename_articles-tPath=' . $HTTP_GET_VARS['tPath']) :
  21. This is for Links Manager I had this error in my links page when I would click on a link category: Warning: constant() [function.constant]: Couldn't find constant in /home/blablabla/includes/functions/general.php on line 8462 Error! Unable to determine the page link! Its an easy fix though. in the code that goes into includes/functions/general.php find: ( strpos($_SERVER['REQUEST_URI'], '-i-') ? ($querytype = 'filename_information-info_id=' . $HTTP_GET_VARS['info_id']) : Add under: ( strpos($_SERVER['REQUEST_URI'], '-links-') ? ($querytype = 'filename_links-lPath=' . $HTTP_GET_VARS['lPath']) : Then under that where it has: false ))))))))) ); Add 1 more ) so its: false )))))))))) ); Thats it! Ive tested products, categories, articles, articles_info, info_pages, manufactures, and now links. Works Fantastic! Thank you Babygurgles. This is going to help a lot. Whether some people believe it or not. I never even realized my urls were GARBAGE untill the other day when I was reading your post.
  22. I have a site I built that uses version 2.1d. This site was doing very good in google search engine, was coming up in the top 3 listings for a few keywords. Then BAM! The mother Fuusjcjc crashed big time. It still does good in msn and yahoo, but is way back in google. As for amazon, they dont have much to worry about, they have become a common name and have advertising in more places than just the internet.
  23. GLWalker

    paymentech

    I put together a working version you can find here: http://addons.oscommerce.com/info/5472
×
×
  • Create New...