Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

zinor

Pioneers
  • Posts

    60
  • Joined

  • Last visited

Everything posted by zinor

  1. oh sorry understood where the problem is
  2. Hello , i don't know why i cant see the name of manufacture in the URL while i enabled manufactures cache ? can anyone help me to use the producer / manufacture in the URLS ?
  3. thank you but at least could you tell me which part or files may needed to revise according my problem ?
  4. 1.my products , categories and manufactures tags are filled . 2.i ticked root and product in header tag seo => page control for product-info.php file . i checked the install process and the installation was OK . the problem existed yet .
  5. thanks a lot jack for your kind reply but could you explain each item more ? i'm the beginner
  6. Hello jack , unfortunately everything is OK with my RC 2.2 shop but i don't know why the meta tag information did not show for producer ? i fill and save them but in the producer page the meta tags are empty ? thanks
  7. thanks , but i did not understand the difference between duplicate and standard setting for it also i tried it but the result was same , would you tell me what is the different ?
  8. now i understand what to do , but this patch did not work correctly for me when you install meta tag seo it did not work .
  9. for title of subcategory i have a problem !? you know i dont know why for a subcategory title shown the category name before it ? for example if i have category hardware and subcategory RAM in the page RAM that shown all kind of RAM the title is hardware - RAM but i want it be just RAM , how to fix it ?
  10. Hello to all & JACK does anybody know how to add google buzz , google plus and bookmark button to rest of those social bookmarks ?
  11. Hello , i installed meta tag contribution and now i want to install this pack but i have one small question , you told in your instruction " open the meta tag file in the catalog/includes folder (ie 'header_tags.php') Add, at the very bottom, before the last ?> " should i add to the files that they been added catalog / include / boxes & function and etc or just i add to the files that they been added in catalog / include ? TKS
  12. my meaning from root is category and sub root is sub category . can anyone guide me ?
  13. hello i installed header tag SEO for my RC 2.2 shop , it worked but when i filled the meta tag for my root and sub root product it didn't work ? i edited index.php & product-info.php pages successfully , i mean i can fill all meta tag for all products and main page successfully but when i want to fill meta tag information for root and sub root of my products so i cant ! and when i observed the source code of those failed pages all meta tag existed in but there are empty . could anyone help me ? ( for example a root product is SOFTWARE and SUB ROOT is accounting software and in this SUB ROOT you may have a lot of products )
  14. hi JACK but it is just a link to the same page and it doesnt contain any kind of information about the product , am i right ? TKS
  15. hay can anyone tell me what is a new box that "see more" written in it ? when i click on "see more" it just reloaded the product page !
  16. you know when i selected CKeditor or any other item the result is exactly same as the situation when you chossed no editor for that .
  17. hay my friend JACK : as i told you in my previous posts although i enabled the editor in the header tag settings but the result was same ! all the buttons that you can see above the text area of product explaination (FCKeditor) like putting all kind of flash , html , source code and etc .. dont appear . and just the simple text area shown . like the simple text area to write meta tag for product when you want to add a new product . my problem is in the above codes that i attached with my previous posts but i dont know how to correct it .
  18. hi everybody & JACK : first of all thank you JACK for this add-ons . i installed this step by step for my eshop RC-2 and everything is OK now but unfortunately my FCKEDITOR for my products explaination did not work any more ! although i enabled an html editor in its settings on FCKeditor but i just see the simple text area for my products explaination like other fields of meta tag information for products ? also i select other editor in its setting but it didnt work . the problem happened when i edited admin/categories.php . the previous segment code that worked well is as below when i changed it so the problem happened . <?php for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_DESCRIPTION; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"> <?php echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '10', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])),'id = products_description[' . $languages[$i]['id'] . '] class="ckeditor"'); ?> <script type="text/javascript"> $('.rte<?php echo $languages[$i]["id"]; ?>').rte({ css: 'default.css', width: 650, height: 250, controls_rte: rte_toolbar, controls_html: html_toolbar }); </script> </td> </tr> </table></td> </tr> <?php } ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> i replaced above code with below code <?php /*** Begin Header Tags SEO ***/ ?> <?php for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_DESCRIPTION; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"> <?php if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'No Editor' || HEADER_TAGS_ENABLE_EDITOR_PRODUCTS == 'false') echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? $products_description[$languages[$i]['id']] : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); else { if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'FCKEditor') { echo tep_draw_fckeditor('products_description[' . $languages[$i]['id'] . ']', '600', '300', (isset($products_description[$languages[$i]['id']]) ? $products_description[$languages[$i]['id']] : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); } else if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'CKEditor') { echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '110', '15', (isset($products_description[$languages[$i]['id']]) ? $products_description[$languages[$i]['id']] : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])), 'id = "products_description[' . $languages[$i]['id'] . ']" class="ckeditor"'); } else { echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? $products_description[$languages[$i]['id']] : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); } } ?> </td> </tr> </table></td> </tr> <?php } ?> <tr> <td colspan="2" class="main"><hr><?php echo TEXT_PRODUCT_METTA_INFO; ?></td> </tr> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <?php for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_PAGE_TITLE; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"><?php echo tep_draw_textarea_field('products_head_title_tag[' . $languages[$i]['id'] . ']', 'soft', '70', '5', (isset($products_head_title_tag[$languages[$i]['id']]) ? stripslashes($products_head_title_tag[$languages[$i]['id']]) : tep_get_products_head_title_tag($pInfo->products_id, $languages[$i]['id']))); ?></td> </tr> </table></td> </tr> <?php } for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_HEADER_DESCRIPTION; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"> <?php if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'No Editor' || HEADER_TAGS_ENABLE_EDITOR_CATEGORIES == 'false') echo tep_draw_textarea_field('products_head_desc_tag[' . $languages[$i]['id'] . ']', 'soft', '70', '5', (isset($products_head_desc_tag[$languages[$i]['id']]) ? stripslashes($products_head_desc_tag[$languages[$i]['id']]) : tep_get_products_head_desc_tag($pInfo->products_id, $languages[$i]['id']))); else { if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'FCKEditor') { echo tep_draw_fckeditor('products_head_desc_tag[' . $languages[$i]['id'] . ']', '600', '300', (isset($products_head_desc_tag[$languages[$i]['id']]) ? $products_head_desc_tag[$languages[$i]['id']] : tep_get_products_head_desc_tag($pInfo->products_id, $languages[$i]['id']))); } else if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'CKEditor') { echo tep_draw_textarea_field('products_head_desc_tag[' . $languages[$i]['id'] . ']', 'soft', '110', '15', (isset($products_head_desc_tag[$languages[$i]['id']]) ? $products_head_desc_tag[$languages[$i]['id']] : tep_get_products_head_desc_tag($pInfo->products_id, $languages[$i]['id'])), 'id = "products_head_desc_tag[' . $languages[$i]['id'] . ']" class="ckeditor"'); } else { echo tep_draw_textarea_field('products_head_desc_tag[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_head_desc_tag[$languages[$i]['id']]) ? $products_head_desc_tag[$languages[$i]['id']] : tep_get_products_head_desc_tag($pInfo->products_id, $languages[$i]['id']))); } } ?> </td> </tr> </table></td> </tr> <?php } for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_KEYWORDS; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"><?php echo tep_draw_textarea_field('products_head_keywords_tag[' . $languages[$i]['id'] . ']', 'soft', '70', '5', (isset($products_head_keywords_tag[$languages[$i]['id']]) ? stripslashes($products_head_keywords_tag[$languages[$i]['id']]) : tep_get_products_head_keywords_tag($pInfo->products_id, $languages[$i]['id']))); ?></td> </tr> </table></td> </tr> <?php } ?> <tr> <td colspan="2"><?php echo tep_draw_separator('pixel_trans.gif', '1', '10'); ?></td> </tr> <tr> <td colspan="2" class="main"><hr></td> </tr> <?php /*** End Header Tags SEO ***/ ?> could you help me how to fix it ? thank you
  19. Dear JACK-mcs thank you my brother , 1.now everything go well on my website just the meta tag did not work ? in all pages of my website the title of the pages are the same and it is the name of my store ! although i enabled SEO URLS and other items that belong to it . so how can i fix it ? 2.is there any way to change the meta tag for every product manually ? 3.meanwhile is there any way that it creates one real html page for every product in the root folder of eshop ? thank you so much for your helps :thumbsup:
  20. Hi Jack , thank you so much my brother . 1.but there is a tiny problem with below code in .htaccess when i deleted it , my website loaded and when i did not delete it the previous warning "internal server error & error 404" shown . "Options +FollowSymLinks RewriteEngine On # RewriteBase instructions # Change RewriteBase dependent on how your shop is accessed as below. # http://www.mysite.com = RewriteBase / # http://www.mysite.com/catalog/ = RewriteBase /catalog/ # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ " as you know my website is like this => http://mydomain.com/eshop/index.php , could you help me which part of above code should be changed according my requirment . thanks again for your help.
  21. Hello all : could anyone do me a favor ? unfortunately i have some problem ! i use V2.X oscommerce and i setup the module correctly but the below warning shown when i done all . "Internal Server Error The server encountered an internal error or misconfiguration and was unable to complete your request. Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error. More information about this error may be available in the server error log. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request." it is shown in my browser . when i removed added code in .htaccess this warning removed and the module seen in admin part correctly and also my home page load successfully but when i click a product it go to its page but it did not load susseccfully ! the address of the product page is http://mydomain.com/eshop/--790--p-86.html my oscommerce is not in the main root and as you understand now it is in eshop folder . my home page website is http://mydomain.com/eshop/index.php i dont know which part of .htaccess code according my root file http://mydomain.com/eshop/index.php shpould be changed . # Begin Ultimate SEO V2.2d Options +FollowSymLinks RewriteEngine On # RewriteBase instructions # Change RewriteBase dependent on how your shop is accessed as below. # http://www.mysite.com = RewriteBase / # http://www.mysite.com/catalog/ = RewriteBase /catalog/ # http://www.mysite.com/catalog/shop/ = RewriteBase /catalog/shop/ # Change the following line using the instructions above RewriteBase /YOU HAVE TO CHANGE ME/ RewriteRule ^(.*)-p-(.*).html$ product_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-c-(.*).html$ index.php?cPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-m-(.*).html$ index.php?manufacturers_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pi-(.*).html$ popup_image.php?pID=$2&%{QUERY_STRING} RewriteRule ^(.*)-by-(.*).html$ all-products.php?fl=$2&%{QUERY_STRING} RewriteRule ^(.*)-t-(.*).html$ articles.php?tPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-a-(.*).html$ article_info.php?articles_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-au-(.*).html$ articles.php?authors_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pr-(.*).html$ product_reviews.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-pri-(.*).html$ product_reviews_info.php?products_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-f-(.*).html$ faqdesk_info.php?faqdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-fc-(.*).html$ faqdesk_index.php?faqPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-fri-(.*).html$ faqdesk_reviews_info.php?faqdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-fra-(.*).html$ faqdesk_reviews_article.php?faqdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-i-(.*).html$ information.php?info_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-links-(.*).html$ links.php?lPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-pm-([0-9]+).html$ info_pages.php?pages_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-n-(.*).html$ newsdesk_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nc-(.*).html$ newsdesk_index.php?newsPath=$2&%{QUERY_STRING} RewriteRule ^(.*)-nri-(.*).html$ newsdesk_reviews_info.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-nra-(.*).html$ newsdesk_reviews_article.php?newsdesk_id=$2&%{QUERY_STRING} RewriteRule ^(.*)-po-([0-9]+).html$ pollbooth.php?pollid=$2&%{QUERY_STRING} # End Ultimate SEO V2.2d again sorry to disturbed you experts , hope someone help me step by step thank you
  22. it would be great if anyone can tell us it step by step thanks
×
×
  • Create New...