Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

whitehawk43

Pioneers
  • Posts

    282
  • Joined

  • Last visited

Everything posted by whitehawk43

  1. I just installed FCK HTML Editor 2.6b Install and after install I can't get to or see my admin area where I added new product or any thing to do with setting up or modifing of my store what happened i did what the install said to do I must of missed something any ideas where to look Thanks Ben
  2. Is this Contirbution dead or is there a new place I don't know about any body out there .....!!!!!
  3. Hello I am having a problem installing Information Pages Unlimited when I go and try and import the sql file I get a error saying Error SQL query: INSERT INTO `configuration_group` ( `configuration_group_id` , `configuration_group_title` , `configuration_group_description` , `sort_order` , `visible` ) VALUES ( '16', 'HTML-Editor', 'HTML-Editor Optionen', 16, 1 ); now in the install file it says to change the configuration group id 16 is taken replace the number 16 with the next free number my ? is that done in the sql file if so where and if not where is the change made Thanks Ben
  4. Hey Jack Got the Header Tags SEO installed and it works great Found out what happened to the lay out during the install I deleted small parts of code that chaged the lay out the code must have been embedded in code that had to be removed Thanks again for the Great Contribution IF you would take a look at site and see if there was something I missed in the install Please !!! http://mosgifts.com Thanks Ben
  5. 8/ What file would have the most likly place to over write my CSS style sheet and lay out the Header Tags. php file ? Thanks Ben
  6. Thanks Jack that make more scense and no to the H1 H2 I had to add that am taking my time setting the Header Tags Seo setting want to make sure it is right Ben
  7. Jack after installing the header tags seo I lost some of my lay out design Like font colors and some of my back ground design any ideas on where I should look to fix that ? Also my index page title say this now New Home page title it use to read Mo's Gifts,Unique Home Decor, Wholesale Gifts and Decor,Garden Decor,Home Accessories Gifts Why ? and now at the bottum of a product it reads Currently viewing: WESTERN DECOR - products new home - should it say -products new home - could you look at my site and see what happened or what I need to do to fix My url is http://mosgifts.com And I need to say it again Thanks for a Great contribution Ben
  8. lol frist A+ I ever got outside shop class Ben
  9. I think I got it My new code if right code if (isset($HTTP_GET_VARS['pID']) && empty($HTTP_POST_VARS)) { // BOF MaxiDVD: Modified For Ultimate Images Pack! $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_image_med, p.products_image_lrg, p.products_image_sm_1, p.products_image_xl_1, p.products_image_sm_2, p.products_image_xl_2, p.products_image_sm_3, p.products_image_xl_3, p.products_image_sm_4, p.products_image_xl_4, p.products_image_sm_5, p.products_image_xl_5, p.products_image_sm_6, p.products_image_xl_6, 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 . "'"); // EOF MaxiDVD: Modified For Ultimate Images Pack! $product = tep_db_fetch_array($product_query); do I get a A or F Ben
  10. LOL ok I see what you are doing good teacher did not know class was on here I go now I got to frist blow out the cob webs out of the ole brain and burn some brain cells ;) Ben
  11. not sure what you mean because this is what it says to do per the contrbution under admin install Around line 394, find this lines in admin/categories.php if (isset($HTTP_GET_VARS['pID']) && empty($HTTP_POST_VARS)) { $product_query = tep_db_query("select pd.products_name, pd.products_description, 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 . "'"); $product = tep_db_fetch_array($product_query); Replace with the following /*** Begin Header Tags SEO ***/ if (isset ($HTTP_GET_VARS['pID']) && (!$HTTP_POST_VARS) ) { $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 . "'"); $product = tep_db_fetch_array($product_query); /*** End Header Tags SEO ***/ or can I add it right under the other and be Ok Ben
  12. Sorry for the many question but I am not a php wiz so then the only part I should add to that line are pd.products_head_title_tag, pd.products_head_desc_tag, pd.products_head_keywords_tag,. so then I add the Header tags SEO into the code thats there and it be added before or at the end ect.... Ben
  13. Jack I have a install conflict In the admin/categories.php install step I am to find this code Around line 394, find this lines in admin/categories.php if (isset($HTTP_GET_VARS['pID']) && empty($HTTP_POST_VARS)) { $product_query = tep_db_query("select pd.products_name, pd.products_description, 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 . "'"); $product = tep_db_fetch_array($product_query); The problem is this is what my code reads do to my lightboxs install if (isset($HTTP_GET_VARS['pID']) && empty($HTTP_POST_VARS)) { // BOF MaxiDVD: Modified For Ultimate Images Pack! $product_query = tep_db_query("select pd.products_name, pd.products_description, pd.products_url, p.products_id, p.products_quantity, p.products_model, p.products_image, p.products_image_med, p.products_image_lrg, p.products_image_sm_1, p.products_image_xl_1, p.products_image_sm_2, p.products_image_xl_2, p.products_image_sm_3, p.products_image_xl_3, p.products_image_sm_4, p.products_image_xl_4, p.products_image_sm_5, p.products_image_xl_5, p.products_image_sm_6, p.products_image_xl_6, 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 . "'"); // EOF MaxiDVD: Modified For Ultimate Images Pack! $product = tep_db_fetch_array($product_query); How should I add this code per the install /*** Begin Header Tags SEO ***/ if (isset ($HTTP_GET_VARS['pID']) && (!$HTTP_POST_VARS) ) { $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 . "'"); $product = tep_db_fetch_array($product_query); /*** End Header Tags SEO ***/ Thanks Ben
  14. when going to admin/configuration/head tags SEO I don't see nothing that looks like the screenshots in the install this is all that is there for the header tags seo Header Tags SEO Title Value Action Automatically Add New Pages true Check for Missing Tags true Display Column Box false Disable Permission Warning false Display Help Popups true Display Social Bookmark false Keyword Density Range 0.02,0.06 Separator - Description - Separator - Keywords , Automatically Add New Pages Adds any new pages when Page Control is accessed (true=on false=off) Ben
  15. Thanks Jack I will check into it and post my findings As far as the store I am running it is OSC 2.2rc2 and I have added the Ultra Pics with J QUery J.S Lightbox Ultra Pics version 2.08 also is it normal to see this when viewing a item this text at the bottum of page Currently viewing: products new home - or when viewing a categorie the bread crumb on the top left shows top / catalog but not showing the name of the categorie it did before the install of this contribution and what do you mean by fill tags ? what code to the index file I made all the changes and installs the install file said to am I missing some thing Thanks Ben
  16. Thanks Jack Hope you don't mind the ? sometimes I get a little nervous making the changes so I was just making sure I got the install done all looks good but :lol: I lost the width of my site it went back to the default width It should be the same size as my hearer image. where do I make the change to get it back here is my url http://mosgifts.com and I also lost the page title where do I fix that Thnaks for the Great contribution this was one of the easyist I have done. Very well Done...... :D Thanks again Ben
  17. I am running OSC 2.2rc2 and I have other contributions added at the end of the catalog install file it states If you have installed other contributions, then you should only upload the files in the catalog directory. That means I don't do the Header Tags SEO admin install instructions Thanks Ben
  18. Hi jack I am installing the header tags Seo and during the install I came across a place I need clearaifcation NOTE: In any page in which you make the change to the title for Header Tags, you should also locate the line containing HEADING_TITLE, remove the pageHeading class and add the h1 tags as above. are you talking about the changes made to the other files in the root directory Index.php product_info.php ect. might seam like a dumb ? but I don't want to mess up the install so when in dought ask it out :) Thanks Ben
  19. Maybe you can help.... any Ideas will be a real great help I did just what the install file said to do Thanks Ben
  20. thanks for the reply guess the only thing to do is check the code go back through and see what I missed if the 404 redirect is not working
  21. so does that mean the above url is not working and if so what to do to fix
  22. So does that mean you can't help with the version I am using by you
  23. I just tryed to install the all prods on my site AllProducts_V_4.7 when I went to run the sql file I got his error when importing it to my db INSERT INTO configuration( configuration_id, configuration_title, configuration_key, configuration_value, configuration_description, configuration_group_id, sort_order, last_modified, date_added, use_function, set_function ) VALUES ( '600', 'All Products Image Width', 'ALLPROD_IMAGE_WIDTH', '100', 'The pixel width of heading images', '4', '5', '2003-07-31 19:35:01', '2003-07-24 17:45:15', NULL , NULL ); #1062 - Duplicate entry '600' for key 1 I am using the all prods Updated for Milestone MS 2.2 by Farrukh Saeed Allprods Contribution to OSCommerce 2.2 any Ideas will be a real great help I did just what the install file said to do :huh: Thanks Ben
×
×
  • Create New...