Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Eaviator

Pioneers
  • Posts

    68
  • Joined

  • Last visited

Everything posted by Eaviator

  1. Hi Kevin, QPBPP v2.3.1 is definitely a full package, go ahead and install it as written, it's great. My problems occured because of conflict's with another add-on and some lines of code which had to be merged. QPBPP works great, no problems whatsover for a plain install though. Just back everything up first so in the event of problem you can resolve it quickly without any grief. Hope this helps... Cheers, Doug
  2. The Category Description v.1.8 add-on could possibly be changed so that this could be done in the Admin Cpanel, as an add-on selection to the Categories/Products - Products section. I think it should be fairly easy to add it to the admin section and then let your client configure it from there. Is your client able to access and use the Admin Cpanel OK already, John? Would that be what you're looking for as far as a better add-on goes? Cheers, DougB
  3. Sounds Good Jack, again many thanks for all your help here, it's been a pain at times but I finally got the hang of this one, with a lot of your help that is...! Cheers, DougB
  4. Jack, please ignore my previous post, I've just downloaded the latest version v3.2.6 and lo and behold right there in front of me is exactly what I was missing...It's now in and the add-on is working great. Now all I can do is scratch my head wondering where the heck I got the original instructions I was using from...damn. Next question is should I follow the whole installation through one more time to insure I get the updates. At this point I haven't yet started populating the site with products so that will make it pretty easy. Or will just running the new database changes do it for me? Much appreciated again as usual... Cheers DougB
  5. Funny the first step in my installation instructions in Install_Catalog.txt actually refer's to changes to the index.php, not the template_top.php file at all... As a matter of fact there are no changes noted to the template_top.php file anywhere's in the Install_Catalog section. The only set of instructions even remotely associated with anything like template_top.php files are in the Admin side of the instructions at Step 8 (admin/includes/template_top.php). Did I get a bad set of instructions out of this somehow and if so, where can I get the good set to download? Thanks again Jack, it really is appreciated more than you'll know. Cheers, DougB
  6. I just noticed something here, in the Install_Admin instructions Step 8) it say's "In admin/includes/template_top.php" but you didn't say that in the post above, you said "includes/template_top.php"...is there a mixup in your instructions or did you actually mean admin/includes/template_top.php, because if so there are no instructions in either the Catalog or Admin install that says for us to do this? Cheers, DougB
  7. Hey Jack, Here's the code from my head section in the admin/includes/template_top.php file. Is this correct? <?php /* $Id$ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2010 osCommerce Released under the GNU General Public License */ ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html <?php echo HTML_PARAMS; ?>> <head> <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> <meta name="robots" content="noindex,nofollow"> <title><?php echo TITLE; ?></title> <base href="<?php echo HTTP_SERVER . DIR_WS_ADMIN; ?>" /> <!--[if IE]><script type="text/javascript" src="<?php echo tep_catalog_href_link('ext/flot/excanvas.min.js'); ?>"></script><![endif]--> <link rel="stylesheet" type="text/css" href="<?php echo tep_catalog_href_link('ext/jquery/ui/redmond/jquery-ui-1.8.6.css'); ?>"> <script type="text/javascript" src="<?php echo tep_catalog_href_link('ext/jquery/jquery-1.4.2.min.js'); ?>"></script> <script type="text/javascript" src="<?php echo tep_catalog_href_link('ext/jquery/ui/jquery-ui-1.8.6.min.js'); ?>"></script> <?php if (tep_not_null(JQUERY_DATEPICKER_I18N_CODE)) { ?> <script type="text/javascript" src="<?php echo tep_catalog_href_link('ext/jquery/ui/i18n/jquery.ui.datepicker-' . JQUERY_DATEPICKER_I18N_CODE . '.js'); ?>"></script> <script type="text/javascript"> $.datepicker.setDefaults($.datepicker.regional['<?php echo JQUERY_DATEPICKER_I18N_CODE; ?>']); </script> <?php } ?> <script type="text/javascript" src="<?php echo tep_catalog_href_link('ext/flot/jquery.flot.js'); ?>"></script> <link rel="stylesheet" type="text/css" href="includes/stylesheet.css"> <script type="text/javascript" src="includes/general.js"></script> <?php /*** Begin Header Tags SEO ***/ switch (HEADER_TAGS_ENABLE_HTML_EDITOR) { case 'CKEditor': echo '<script type="text/javascript" src="./ckeditor/ckeditor.js"></script>'; break; case 'FCKEditor': break; case 'TinyMCE': if (HEADER_TAGS_ENABLE_HTML_EDITOR != 'No Editor' && (HEADER_TAGS_ENABLE_EDITOR_META_DESC == 'true' || HEADER_TAGS_ENABLE_EDITOR_CATEGORIES == 'true' || HEADER_TAGS_ENABLE_EDITOR_PRODUCTS == 'true')) { if ($action == 'new_product' || $action == 'new_category' || $action == 'edit_category') { // No need to put JS on all pages. $languages = tep_get_languages(); // Get all languages // Build list of textareas to convert $str = ''; for ($i = 0, $n = sizeof($languages); $i < $n; $i++) { if (HEADER_TAGS_ENABLE_EDITOR_META_DESC == 'true') $str .= "products_head_desc_tag[".$languages[$i]['id']."],"; if (HEADER_TAGS_ENABLE_EDITOR_CATEGORIES == 'true') $str .= "categories_htc_description[".$languages[$i]['id']."],"; if (HEADER_TAGS_ENABLE_EDITOR_PRODUCTS == 'true') $str .= "products_description[".$languages[$i]['id']."],"; } //end for each language $mce_str = rtrim ($str,","); // Removed the last comma from the string. // You can add more textareas to convert in the $str, be careful that they are all separated by a comma. echo '<script language="javascript" type="text/javascript" src="includes/javascript/tiny_mce/tiny_mce.js"></script>'; include "includes/javascript/tiny_mce/general.php"; } } break; default: break; } /*** End Header Tags SEO ***/ ?> </head> As I've said I've gone through literally everything you've told us to do with this install meticulously from end to end. At this point I'm ready to pull it down and start again, which is quite a bit of work as you can imagine. I don't know...what do you think, should I go this route or is there another way of solving it? Thanks Jack I appreciate your help here... DougB
  8. Hi Jack, No I never saw the "Replace me in Page Control" at any time during the installation. When I type something in the Page Control title and then go to the page and view source it hasn't changed. I followed the instructions to the letter, right from the start. The only one glitch I had in the install was that the QPBB file and Header Tags used the same line in two instance in the admin/categories file as was previously noted here in this thread but after the SQL probelms were corrected everything seemed to be operating OK or at least so I thought. As I'm using osC v.2.3.1, I used the set of instructions for v2.3.+ and the non-new install version as I already had set up the QBPP add-on. As noted, prior to this I'd literally gone through every file in the install a second time, comparing the original files to the modified ones and in every instance the files have been correct as per the instructions...At this point I don't know where to turn, what do you suggest doing?. Many thanks in advance Jack... Cheers, DougB
  9. Afternoon Everyone, I'm having really problems with my installation of Header Tags SEO, it's not populating the meta tags, product descriptions etc. in the <head> section of my site. It's v2.3.1 with Quantity Price Breaks code installed prior to this. No other modifications to the stock code. I've tested the install, using the Test function in Header Tags SEO and it tells me "product_info.php is missing Header Tags code or it is not installed correctly. Verify that Fill Tags has been ran and that the root checkbox or the default checkboxes have been checked in Page Control." I've just today finished going through every single piece of the installation once more. I've verified that every single page is accurate to the instructions given, all files are located in their correct folder's and that the database was un-installed and then re-run, just to make sure everything was correct before yelling for help. I've also followed the install directions to run the "Fill Tag's function, and then checked that the default checkboxes in Page Control were also checked. I've gone through this installation sideways, forwards and backwards now, trying to fix it myself and I'm lost....can anyone out there help me please..... Cheers, DougB
  10. The problem for me was it involved merging of two lines of code from two different add-on's, your's and a quantity price breaks one that I had already inserted. Part of your code also involved two of the same lines of code QPBB used for their add-on. Unfortunately for me, although I have WinMerge I can't use it worth crap, so I wasn't sure which was the correct way to merge the two files. I finally took a shot at doing it manually and ended up with the mess I now have. I still have both original files handy (there were two instances of code overlap) though if you'd like to take a crack at it, (I know you use WinMerge all the time and probably would get the right results instead of my mangled version). Here's the original codes that were modified from the stock v.2.3.1 catalog/admin/categories.php file to the QPBB add-on: Instance 1 code: $product_query = tep_db_query("select pd.products_name, pd.products_description, / pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url,/ p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_qty_blocks, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id, ptdc.discount_categories_id from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES . " ptdc on p.products_id = ptdc.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); Here's what Header Tag SEO code needed to be installed into this line: $product_query = tep_db_query("select pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_price, /p.products_qty_blocks/, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); Instance 2 code: (original QPBB modified code) $product_query = tep_db_query("select p.products_id, pd.language_id, pd.products_name, pd.products_description, pd.products_url, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_qty_blocks, p.products_weight, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p.manufacturers_id, ptdc.discount_categories_id, dc.discount_categories_name from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES . " ptdc on p.products_id = ptdc.products_id left join " . TABLE_DISCOUNT_CATEGORIES . " dc using(discount_categories_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "'"); and what Header Tags SEO code needed to be added into this line: $product_query = tep_db_query("select p.products_id, pd.language_id, pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "'"); Anyone willing to take a shot at it is welcome to help out, I'd really appreciate any help you care to throw my way in getting this mess sorted out...thank's Jack, and everyone else too of course ... DougB
  11. Hey Jack, thanks for the find, now do I remove the first instance of the code or the second... or does it make any difference to the running of the program? Thanks a million in advance, much appreciated indeed... DougB
  12. OK, I now have run into a problem. While I was checking my SEO for a product and was editing it I have run into this code: 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'from products p left join products_to_discount_categories ptdc on p.products_id ' at line 1 select pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_qty_blocks, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from products p, ptdc.discount_categories_id from products p left join products_to_discount_categories ptdc on p.products_id = ptdc.products_id, products_description pd where p.products_id = '39' and p.products_id = pd.products_id and pd.language_id = '1' [TEP STOP] Can someone help me figure out what's causing it. I suspect that it's the catalog/admin/categories.php query that I asked about a couple of pages back because this is where the code resides, can someone help me figure out what I've done wrong here? Many thanks in advance all, much appreciated. DougB
  13. Sorry Jack, Oh geez, I've just have realized this may not be part of your add-on at all now but rather the site. What I meant was regarding the Category name overall, where it's shows within the "Categories Box" on my site it's name is shortened to a total of 32 character's overall, I'd like for that to show at least 40 character's in length. The second question regards the layout within that same Categories box, I'd like to place a horizontal rule directly beneath each of the Category names shown, is there any way to do this? Sorry to be so confusing, I didn't really think about how I worded this question to you...a real D'oh moment I guess. If you're able to help that would be great, thanks in advance. DougB
  14. Hey Jack, I have two, probably dumb, questions for you. It concerns a couple of slight modifications I'd like to make to your Header Tag's SEO add-on. First, I would like to be able to add about 10 more character's into the Description title field. I'm assuming that would be done in the database but I couldn't find the appropriate section to do this too. Whoops I just saw it above in one of the previous posts, would this code be applicable for the change using a SQL query?: drop table if exists categories_description; create table categories_description ( categories_id int(11) default '0' not null , language_id int(11) default '1' not null , categories_name varchar(40) not null , categories_htc_title_tag varchar(80) , categories_htc_desc_tag longtext , categories_htc_keywords_tag longtext , categories_htc_description longtext , PRIMARY KEY (categories_id, language_id), KEY idx_categories_name (categories_name) ); Now still secondly, I'd like to be able to add a horizontal rule under each of the descriptions, right at the very end. Can you help show me the way to do this? Many thanks indeed. DougB
  15. Good Morning Jack, Just wanted to show my appreciation and say thanks for helping me walk through this contribution's installation, everything now works slick as a whistle, much in part due to your help, many thanks again. The merged lines of code worked flawlessly, although I couldn't get WinMerge to work properly for me, 'nother learning curve there I expect but that's for another day. As long as I got it done the hard way and it's working, that's fantastic and my SEO problems, at least for this site are now solved as well. Much thanks amigo... Cheers, DougB
  16. Strub, Post your url so we can check it out please...Cheers DougB
  17. Greetings again folks, I've run into another problem once again with having to merge further code in catalog/admin/categories.php as before, but now in a different location, with slightly different text. Here's the code I'm supposed to be using to replace the original code with: $product_query = tep_db_query("select p.products_id, pd.language_id, pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "'"); Here's the code that's currently in there courtesy of QPBPP which has to stay in order for the two contributions to play nice together: $product_query = tep_db_query("select p.products_id, pd.language_id, pd.products_name, pd.products_description, pd.products_url, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_qty_blocks, p.products_weight, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p.manufacturers_id, ptdc.discount_categories_id, dc.discount_categories_name from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES . " ptdc on p.products_id = ptdc.products_id left join " . TABLE_DISCOUNT_CATEGORIES . " dc using(discount_categories_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "'"); Now, here's my modified version of these two code's merged so that both contributions will continue to work, please oh please could someone please check over my manglelation of these and double check it to see if I've made any mistakes as before... $product_query = tep_db_query("select p.products_id, pd.language_id, pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, p.products_url, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_qty_blocks, p.products_weight, p.products_date_added, p.products_last_modified, p.products_date_available, p.products_status, p.manufacturers_id from " . TABLE_PRODUCTS . " p, ptdc.discount_categories_id from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES . " ptdc on p.products_id = ptdc.products_id left join " . TABLE_DISCOUNT_CATEGORIES . " dc using(discount_categories_id), " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = pd.products_id and p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "'"); Many thanks again all, you guys are great, I really appreciate all your help here, it's been awhile since I've crunched codes this much but the response from this community has been fantastic...Thanks again all, have a good one! Cheers, DougB
  18. Jack, I'm trying to merge to lines of code here in catalog/admin/categories.php. Approximately line 448 there is a reference to replacing the original code with this line: $product_query = tep_db_query("select pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); However, in my shop I've already installed a quantity price break contribution so I have to merge these line's of code in order for both of these contributions to work properly: $product_query = tep_db_query("select pd.products_name, pd.products_description, / pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url,/ p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_qty_blocks, p.products_weight, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id, ptdc.discount_categories_id from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES . " ptdc on p.products_id = ptdc.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); This is the merged line of code I came up with, will it work or do you see some problems with it or have I missed something: $product_query = tep_db_query("select pd.products_name, pd.products_description, pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_price, p.products_weight, p.products_qty_blocks, p.products_date_added, p.products_last_modified, date_format(p.products_date_available, '%Y-%m-%d') as products_date_available, p.products_status, p.products_tax_class_id, p.manufacturers_id from " . TABLE_PRODUCTS . " p, ptdc.discount_categories_id from " . TABLE_PRODUCTS . " p left join " . TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES . " ptdc on p.products_id = ptdc.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_id = '" . (int)$HTTP_GET_VARS['pID'] . "' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "'"); If anyone can check out this merged line of code it would be great...Thanks in advance gang, your efforts are hugely appreciated... Cheers, DougB
  19. Aaron, Oliver did a fantastic job didn't he, the contribution work's great. Top notch...
  20. Oliver, Thanks buddy, the contribution looks great. Nice job and thank you for helping out here, it's really appreciated. I'll go through the code and see if there's anything else I can add for you, but so far it's looking great! The only thing I can really think of to really put this contribution over the top is adding generic image for the category, instead of letting it pull it from the product images. Thanks Oliver! DougB
  21. Hey Jack, many thanks again, much appreciated! DougB
  22. I'm glad to hear that my perceptions re: the other's in this group aren't off the mark. As for you, and your usual umbrage at "other's who ought to know better in your opinion", please try and control yourself. I'm no stranger whatsoever to .php, just to this programs build and the codes particular to this one contribution. If I want to sit down and go over the entire program in order to further my knowledge and possibly that of the entire community by adding helpful hints or code, that would be one thing, to ask for help within a given thread is totally another but you already knew that anyways. To just be contrary for the sake of being difficult is off-putting to say the least, especially where new members to the osCommerce forums family are concerned. As for me being upset...no, not at all, I'm used to people with small amounts of knowledge in specialized fields trying to compensate by trying to show themselves as seemingly far superior, only showing their overall ignorance of the human condition and their significant lack of compassion whatever the case. If we'd spent as much time working on the issue I located in this contribution as we have insulting each other, it'd be done with and there would be a new contribution for version 2.3.1 to add to the list. With that attitude I'm surprised you are a Community Sponsor...you should be ashamed instead because other's actually care about what this program can do and are proud of their and other's contributions to it. If you're not, perhaps it's time you took a break and let someone else who actually still does care take a shot at it. But that's only my opinion...
  23. Sorry burt but your answer smacked with superiority, it wasn't called for IMHO, but that shouldn't concern you, afterall it's only my opinion. I came here to learn more about the osCommerce program. I'm fairly conversant with php generally however, having studied it at our local university for quite some time but haven't had occasion to use or practice it to any great extent within the context of this particular program or contribution's. In order to further myself more quickly I turned to this forum and it's reader's for help. My client wanted a bare bones install, which I'm well capable of doing him for him and I've also modified the layout and other coding to some extent, but he's asked for more than I bargained for now because of some newer requirements. In finding this out I looked for reasonable contributions, rather than starting from scratch and re-inventing the wheel and found the contribution mentioned, trying to install it as written. When I ran into difficulties I was hoping that these forum's were for those of us trying to learn more about the intricacies of this program in particular and those reading it would try and help, I'm terribly sorry if I've misjudged. Other program forums supporter's usually just want to help when a difficulty arises, taking pride in their program in order to show it is far better than many other's which are available. There are other's however here burt that do care about it obviously and to them I say "Thanks", resoundingly! Your insight and attitude' are great!
  24. Hi Jack, After reading through your suggestions in my previous post regarding "Category Descriptions v.1.06" I have decided to go ahead with your far better contribution "Header Tags SEO V 3.0" for version 2.3.1, which in addition to allowing me to do what I want as far as adding category descriptions, will do double-duty in also taking care of SEO chores at the same time, far smarter I think. I've already run into a dumb question though, while reading over the installation instructions that perhaps you or one of your contributions supporter's can answer. I have a brand new version of osCommerce v.2.3.1, with one contribution already installed (QPBPP_osc2.3.1_ver2.0, a quantity price break contribution, so I understand to use the correct contribution etc. for my particular version. However what I'm unsure of is whether or not platform is a BTS or STS, as neither folder is in my site heirarchy/structure and there are no instructions written for neither as far as the instructions go. Am I mising something in my codes? I've checked back in my original osCommerce v.2.3.1 package and couldn't locate either of the folder's mentioned. Until I understand a bit more about this I don't want to proceed any further in order to insure a solid install of your contribution. Thanks Jack, appreciate your assistance here. Cheers, DougB
  25. and how my friend am I ever supposed to learn .php by not actually doing it myself, instead of always referring it to someone else who's there already. I will find a way, properly and maybe by learning the hard way, but I will learn it trust me...but thanks Burt, your response has been noted...
×
×
  • Create New...