Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

JonathanR

Pioneers
  • Posts

    92
  • Joined

  • Last visited

About JonathanR

  • Birthday 01/20/1969

Profile Information

  • Real Name
    Jonathan Riddle
  • Gender
    Male
  • Location
    Northampton, England
  • Website

JonathanR's Achievements

  1. Hi all, Can I just ask the situation regarding which version needs downloading here? I made my own error by installing v1.5.8a without reading this thread first, but I have just DiffMerged the files from both the v1.5.8a and v1.5.8 files and I could see no difference. After installation of v1.5.8a, I had experienced a possibly unrelated problem after adding an order and clicking SAVE, where I was presented with a blank page when it tried to load the create_order_process.php page. So, I thought would apply the $format_id = tep_get_address_format_id($country_id); line to see if that worked, and it did actually fix the problem, so I was correctly but I then ran into another error when trying to send an email confirmation: 1146 - Table 'xxxxx-x-xxx-xxx.eorder_text' doesn't exist SELECT * FROM eorder_text where eorder_text_id = '1' and language_id = '1' [TEP STOP] This appears to have been fixed by running: CREATE TABLE eorder_text ( eorder_text_id TINYINT( 3 ) UNSIGNED NOT NULL DEFAULT '0', language_id TINYINT( 3 ) UNSIGNED NOT NULL DEFAULT '1', eorder_text_one TEXT, PRIMARY KEY ( eorder_text_id, language_id ) ) Can I just ask which route I need to go before trying the install on my live site? It all seems to be working now, but there does seem some conflict of opinions. Thanks, Jonathan
  2. Hi Ken, Not sure if this is still actively supported, but I previously had this running perfectly in conjunction with PDF Customer Invoices v1.2, but I switched my site to a new domain name and PHP5 earlier this year, and this is now the only thing left that isn't working. I stayed with the same service provider, but just moved to a new domain. As far as I can tell, the only difference between the new and old domain is that I plumped for PHP5 this time. Unfortunately, I am getting the dreaded: FPDF error: Some data has already been output, can't send PDF file and I have uninstalled and reinstalled, but to no avail, and just can't fathom why just a straight swap over will have broken this excellent add-on. Any ideas? Jonathan
  3. Very, very well written contribution. Excellent instructions whether you are upgrading or installing from new, with a huge amount of care and thought gone into what is needed. Great stuff, Scott. Very much appreciated here.
  4. Hi, I am not sure if this contribution is still being supported, but I have it all running OK, but I do have the same problem that Bruce had all those years ago! I have made sure I have copied catalog/admin/includes/languages/english/products_extra_category.php across, but the error is still present. However, as I mention, it still works OK, but is a little worrying. Does this contribution work OK with any SEO and Meta Tags add-ons installed? Also, I wish to have the same feature for Manufacturers, and have found http://addons.oscommerce.com/info/6490, which I hope will do the trick. Hope there is still some help out there for this very, very useful SEO friendly add-on. Jonathan
  5. A bit more searching around has solved my problem. For those interested, I went back to my backed up files and installed the following excellent little add-on instead: http://www.oscommerce.com/community/contributions,938 And then read the thread: http://www.oscommerce.com/forums/index.php?showtopic=219030 Which solved the problem nicely - so thanks to those involved - even though they are old threads and add-ons. Deep joy! Jonathan
  6. Hi all, I know this is an old thread, but like many add-ons, I have stumbled across this one and it is absolutely spot on for what I need. However, I just applied the most recent little tweak to this by akunamachata in March of this year that added Show Model Number v 1.00, giving the facility to also search for Model Number in admin. It works, but it fills the screen with currently 354 returned search results of the same thing. Clicking the edit button does take you to the product that was searched for, but it is a little unnerving that the pages is filled in such a way - and slows things down a fair bit. The instruction to add the search facility is posted below, and any thoughts as to why this may be happening would be helpful. Thanks this is base on Show Model Number v 1.00, i'm taking this out from that contribution, seems like this contribution is missing this great feature. in catalog/admin/categories.php search: ------------------------------------------ p.products_id = p2c.products_id and pd.products_name like '%" . tep_db_input($search) . "%' replace it with: ------------------------------------------ ( (pd.products_name like '%" . tep_db_input($search) . "%') || (p.products_model like '%" . tep_db_input($search) . "%') ) save and uplodate, that's it, now you can search products model in the admin search! thanks to the original creator!
  7. Something interesting I have just noticed. If I click the DETAILS button, I am taken to the Product page, and no osCsid code is present in the url. However, if I click the BUY NOW button for the same product, the url contains an osCsid number.
  8. Oh dear. Not looking good then. The only add-on that affected application_top.php since installing your contribution was Ultimate Seo Urls v2.7 (23 Mar 2009) coupled with 2008_03_02_SID_KILLER_2.0__505_1. The code you suggested adding to my application_top.php unfortunately didn't make any difference. Still weird that there is one category on my site that acts differently to all the others with the empty cart message. Code changes to application_top.php when installing SID and SEO: // Ultimate SEO URLs v2.1 if ((!defined(SEO_ENABLED)) || (SEO_ENABLED == 'true')) { include_once(DIR_WS_CLASSES . 'seo.class.php'); if ( !is_object($seo_urls) ){ $seo_urls = new SEO_URL($languages_id); } } ////////////////////////////////////////////////////////////// if ( ($HTTP_GET_VARS['currency']) ) { tep_session_register('kill_sid'); $kill_sid=false; } if (basename($_SERVER['HTTP_REFERER']) == 'allprods.php' ) $kill_sid = true; if ( ( !tep_session_is_registered('customer_id') ) && ( $cart->count_contents()==0 ) && (!tep_session_is_registered('kill_sid') ) ) $kill_sid = true; if ((basename($PHP_SELF) == FILENAME_LOGIN) && ($HTTP_GET_VARS['action'] == 'process') ) $kill_sid = false; if (basename($PHP_SELF) == FILENAME_CREATE_ACCOUNT_PROCESS) $kill_sid = false; // Uncomment line bellow to disable SID Killer // $kill_sid = false; ////////////////////////////////////////////////////////////// require_once(DIR_WS_CLASSES . 'preventDuplicates.php'); $preventDuplicates = new preventDuplicates(); As for my log-in problems, as mentioned above, I have installed SID KILLER. I have checked my configure.php file, too, and nothing seems awry in terms of cookies. Thanks for replying, Sam.
  9. Hi Sam, I have a small problem which may or may not be linked to this contribution. With the BUY NOW and DETAILS buttons, somebody has just made me aware that the BUY NOW button, in terms of adding the product straight to the shopping cart, doesn't actually work. Instead it just takes the visitor to the same page as the DETAILS button does. However, interestingly, on one category, clicking the BUY NOW button takes the visitor to a YOUR SHOPPING CART IS EMPTY page. Even more interestingly, I have a mirror site running in case the main site goes down for some reason, and on that one, for just the one category that give the empty shopping cart message on the live site, the item is correctly added to the shopping basket straight away. This mirror site is created by copying all catalog files to a different server, and using a backed-up database of the live site, so should effectively be identical. Like I say, this may or may not be linked to this contribution. Regards, Jonathan Edit: One thing I just checked. On both sites, if I log-in, and then move around the site, and then go back to the homepage, I am showing as a GUEST again, and find that I need to log-in again to proceed to checkout. Something else wrong perhaps.
  10. :lol: Not many I would guess, but then not many would have just the one add-on installed, either, so whatever you did when installing your second, third, fourth etc etc add-ons is what you need to do here. ie: get a utility that lets you compare code side by side (I use DiffMerge), and apply the code changes that come with this add-on, without affecting the code changes from previous add-ons.
  11. Hi all, I notice that over a few months on this thread, a couple of people have asked if anything is available to make this contribution suitable for use with eDirectory. Did anyone get anywhere with that one? Thanks
  12. Thank you, Sam. That worked. This contrib has seriously improved my site.
  13. Hi Sam, You are right in that I have it set in admin to not display product quantity. When I change that to set quantity to display, the problem goes away. Of course, I don't want the quantity to display and I am afraid I don't understand the part about adding p.products_quantity to the sql.
  14. Hi Sam, As a follow up to me successfully changing the button to SOLD OUT back in March, I have just noticed that whenever I do a search for an item, all results are shown with the SOLD OUT button, even when they are in stock. Before I panic too much, is there a reason for this and, more importantly, a way around it? Thanks, Jonathan
×
×
  • Create New...