Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Header Tags SEO


Jack_mcs

Recommended Posts

Someone else mentioned this but I don't know if that person ever found the problem (you can read back to find it). It might be related to the version of your php/mysql on the new server but I think it unlikely. Maybe the database got corrupted somehow. You can try uninstalling the Header Tags database changes and installing again (that will erase all Header Tags data) and replacing the includes/header_tags.php file.

 

Jack

 

After messing around with this for a few more hours I have yet to figure anything out other than what I set is... set... if I view source... However if I click view results in the admin it only shows the title... Do you have any idea how the view result is only grabbing the title and skipping everything else? I guess its no big deal as long as it works on the main page but I would still like to figure it out if possible. =)

 

Thanks for your help and time

Link to comment
Share on other sites

Hello Jack, your contribution is very hot

I play a lot with this and i think i found some problems.

 

First in admin, Header tag SEO, product_info.php if i uncheck the manufacturers or the Category it's not working.

They are always in the title!

 

I think i found the problem for manufacturer option, v3.09 Line 91 in catalog/includes/fonctions/header_tag.php just add if ($pageTags['append_manufacturer']) WORK FOR ME

  if ($pageTags['append_manufacturer'])
 {
$the_manufacturer_query= tep_db_query($manStr);
   $the_manufacturer = tep_db_fetch_array($the_manufacturer_query);
   $header_tags_array['manufacturer'] = $the_manufacturer['htc_title_tag'];  //save for use on the logo

   if (tep_not_null($the_manufacturer['htc_title_tag']))
   {
     $sortOrder['title'][$pageTags['sortorder_manufacturer']] = tep_not_null($sortOrder['title'][$pageTags['sortorder_manufacturer']]) ? $sortOrder['title'][$pageTags['sortorder_manufacturer']] . ' ' . HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ' . $the_manufacturer['htc_title_tag'] : $the_manufacturer['htc_title_tag'];
     $sortOrder['logo'][$pageTags['sortorder_manufacturer']] = tep_not_null($sortOrder['logo'][$pageTags['sortorder_manufacturer']]) ? $sortOrder['title'][$pageTags['sortorder_manufacturer']] . ' ' . HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ' . $the_manufacturer['htc_title_tag'] : $the_manufacturer['htc_title_tag'];
   }
   if (tep_not_null($the_manufacturer['htc_desc_tag']))
   {
     $sortOrder['description'][$pageTags['sortorder_manufacturer']] = tep_not_null($sortOrder['description'][$pageTags['sortorder_manufacturer']]) ? $sortOrder['title'][$pageTags['sortorder_manufacturer']] . ' ' . HEADER_TAGS_SEPARATOR_DESCRIPTION . ' ' . $the_manufacturer['htc_desc_tag'] : $the_manufacturer['htc_desc_tag'];
     $sortOrder['description'][$pageTags['sortorder_manufacturer']] = $the_manufacturer['htc_desc_tag'];
   }
   if (tep_not_null($the_manufacturer['htc_keywords_tag']))
   {
     $sortOrder['keywords'][$pageTags['sortorder_manufacturer']] = tep_not_null($sortOrder['keywords'][$pageTags['sortorder_manufacturer']]) ? $sortOrder['title'][$pageTags['sortorder_manufacturer']] . ' ' . HEADER_TAGS_SEPARATOR_KEYWORD . ' ' . $the_manufacturer['htc_keywords_tag'] : $the_manufacturer['htc_keywords_tag'];
  }
   }
 }
 return $sortOrder;

 

Dont know for the category option

 

and the other problem i found its when i use two file with the same ending

 

example: vitamins.php

and top_quality_vitamins.php

 

the second file have is page_title ,page_description, page_keyword and page_logo fill in the data base but they are using title , description, keyword and logo text of the first one ... strange

 

i have change the name of my second file, everythings work fine! Just want to notice that

 

Thanks

Link to comment
Share on other sites

You can add them manually in admin->Catalog->Manufacturers. If you don't see the Header Tags fields there, then you made a mistake with the installation.

 

Jack

 

Hi, Jack! That's what I did - added them manually in admin>Catalog>Manufacturers, but they do not appear in view source when the manufacturer page is displayed. And I've tried many different things in the control box.

 

A real dumb question here - If the title tags, keywords, descriptions are now installed for each product, how do the search engines pick up on them if there isn't a php or html file for each one?

 

Thanks!

Michele

Link to comment
Share on other sites

Hi Jack,

 

I put the original catalog\includes\header_tags.php file in my store directory

When i go id admin/HeaderTagseo all the header database is transfer in that file really nice fonction!!!

 

sometime error code appear ... 2013 - Lost connection to MySQL server during query (Just the first time when the header database is writing to catalog\includes\header_tags.php file ) Dont know how to solve the problem?

 

another problem append, products_new.php?page=2 page=3 page=4 and page=5 have the same tiltle as products_new.php

 

i have change

 

// products_new.php
 case (strstr($_SERVER['PHP_SELF'],FILENAME_PRODUCTS_NEW) or strstr($PHP_SELF,FILENAME_PRODUCTS_NEW)):
   $header_tags_array = tep_header_tag_page(FILENAME_PRODUCTS_NEW);
  break;

 

by

 

// products_new.php
 case (strstr($_SERVER['PHP_SELF'],FILENAME_PRODUCTS_NEW) or strstr($PHP_SELF,FILENAME_PRODUCTS_NEW)):
   $page = 'products_new.php?page=';
   $parts = explode("?",$page);
   $parts = explode("=", $parts[1]);
   if (isset($parts[0])) {
    $found = false;
    $name = FILENAME_PRODUCTS_NEW . "?" . $parts[0] . "=";
    $pageTags_query = tep_db_query("select * from " . TABLE_HEADERTAGS . " where page_name like '" . $name . "%' and language_id = '" . (int)$languages_id . "'");
     if (tep_db_num_rows($pageTags_query) > 0) {
      while($pageTags = tep_db_fetch_array($pageTags_query)) {
       if ($name . $_GET[$parts[0]] === $pageTags['page_name']) {
        $header_tags_array = tep_header_tag_page($pageTags['page_name']);
        $found = true;
         break; 
    } } } 
    if (! $found)
     $header_tags_array = tep_header_tag_page(FILENAME_PRODUCTS_NEW);
   } else
   $header_tags_array = tep_header_tag_page(FILENAME_PRODUCTS_NEW);
  break;

 

and now every title in every page is working fine

 

thank you again for this contribution

 

Steph

Link to comment
Share on other sites

Ooooooooo, by accident I found the manufacturer data I entered. I will be working on entering SEO data today and maybe get all figured out. Products, categories, manufacturers - gets tricky when one uses different terminology. If I have anything to offer others in this regard, I will post once I figure it out.

 

Now to figure out the enlarged font size on my site due to all this. I know others have experienced this, so will try to find. If anyone happens to read this and can direct me to the files to make changes, that would awesome!

 

Jack - thanks so much for your assistance! You seem to be so patient with us newbies. I think we need to put you up for an award - somewhere - sometime!!!

 

michele

Link to comment
Share on other sites

I get this message when I run the Admin>Header Tags SEO>Test

 

Permissions Error:

Permissions settings for the d:/hshome/c240667/*******.com/catalog/includes/header_tags.php file appear to be incorrect. Change to 777. NOTE: Disregard if on Windows server.

 

Missing Code in File

The Header Tags head code for the index.php file cannot be found.

The Header Tags head code for the product_info.php file cannot be found.

The Header Tags head code for the product_reviews.php file cannot be found.

The Header Tags head code for the product_reviews_info.php file cannot be found.

The Header Tags head code for the product_reviews_write.php file cannot be found.

The Header Tags head code for the specials.php file cannot be found.

 

I am running on a Windows server. Am I missing a portion of code somewhere?

Edited by adifal
Link to comment
Share on other sites

Header Tags dosn't change the home page part of the index page so that problem must have been there before or a mistake was made with the changes for that file.

 

Jack

 

Hi Jack,

 

Another newbie question, but it looks like the Meta Tags is on the same row as the heading image in any subcategory, causing my page width to expand off the screen. I assume I made a mistake somewhere on the index file, but I can't find the error. Any idea what part of the code I should be looking at that could be causing this? Thanx!

Link to comment
Share on other sites

Hi, Jack! That's what I did - added them manually in admin>Catalog>Manufacturers, but they do not appear in view source when the manufacturer page is displayed. And I've tried many different things in the control box.

 

A real dumb question here - If the title tags, keywords, descriptions are now installed for each product, how do the search engines pick up on them if there isn't a php or html file for each one?

 

Thanks!

Michele

They follow the links to the manufacturers page.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Now to figure out the enlarged font size on my site due to all this. I know others have experienced this, so will try to find. If anyone happens to read this and can direct me to the files to make changes, that would awesome!

Header Tags uses the H1 and H2 classes, which were part of the installation. You may need to change those to get the font to appear as you want.

 

Jack - thanks so much for your assistance! You seem to be so patient with us newbies. I think we need to put you up for an award - somewhere - sometime!!!

michele

Thank you but we all newbies at some point. Others helped me then (and still do at times), so I help now.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

I get this message when I run the Admin>Header Tags SEO>Test

 

Permissions Error:

Permissions settings for the d:/hshome/c240667/*******.com/catalog/includes/header_tags.php file appear to be incorrect. Change to 777. NOTE: Disregard if on Windows server.

 

Missing Code in File

The Header Tags head code for the index.php file cannot be found.

The Header Tags head code for the product_info.php file cannot be found.

The Header Tags head code for the product_reviews.php file cannot be found.

The Header Tags head code for the product_reviews_info.php file cannot be found.

The Header Tags head code for the product_reviews_write.php file cannot be found.

The Header Tags head code for the specials.php file cannot be found.

 

I am running on a Windows server. Am I missing a portion of code somewhere?

If you are running a standard oscommerce shop on a Linux server, you shouldn't see those error. Otherwise, they might be acceptable.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Hi Jack,

 

Another newbie question, but it looks like the Meta Tags is on the same row as the heading image in any subcategory, causing my page width to expand off the screen. I assume I made a mistake somewhere on the index file, but I can't find the error. Any idea what part of the code I should be looking at that could be causing this? Thanx!

The only part that goes by an image is the page heading and it uses the H1 class so you may want to try adjusting its size setting.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

The only part that goes by an image is the page heading and it uses the H1 class so you may want to try adjusting its size setting.

 

Jack

 

 

Fixed it. The problem was in this section:

<?php /*** Begin Header Tags SEO ***/ ?>

<tr><td><h1><?php echo $category['categories_htc_title_tag']; ?></h1></td>

<td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

</tr>

<?php if (tep_not_null($category['categories_htc_description'])) { ?>

<tr>

<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

</tr>

<tr>

<td colspan="2"><h2><?php echo $category['categories_htc_description']; ?></h2></td>

</tr>

<?php }

/*** End Header Tags SEO ***/

 

I added a close table row command & started a new row, & now it aligns fine. I tried to make the tags bold so you can see it:

<?php /*** Begin Header Tags SEO ***/ ?>

<tr><td><h1><?php echo $category['categories_htc_title_tag']; ?></h1></td></tr>

<tr><tr><td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . $category['categories_image'], $category['categories_name'], HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>

</tr>

<?php if (tep_not_null($category['categories_htc_description'])) { ?>

<tr>

<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

</tr>

<tr>

<td colspan="2"><h2><?php echo $category['categories_htc_description']; ?></h2></td>

</tr>

<?php }

/*** End Header Tags SEO ***/

Link to comment
Share on other sites

Hi, Jack! That's what I did - added them manually in admin>Catalog>Manufacturers, but they do not appear in view source when the manufacturer page is displayed. And I've tried many different things in the control box.

 

A real dumb question here - If the title tags, keywords, descriptions are now installed for each product, how do the search engines pick up on them if there isn't a php or html file for each one?

 

Thanks!

Michele

 

Jack i hope you don't mind me adding a comment as another newbie who has been on this "voyage"!

 

Michele

I found that I had to have the "manufacturer" box ticked in the "Include" section of "Default Tags" in Page Control for the manufacturer header tags to appear in View Source.

 

 

Best Regards

Peter

Link to comment
Share on other sites

Hey Jack

 

I've completed the install and ran the header_tag_test.php file as suggested, however I'm still stumped and receive the following items when I go to index.php the screen is cleared with the following error:

 

Fatal Error: Cannot redeclare tep_header_tag_page() (previously declared in ../catalog/includes/functions/header_tags.php:15)

 

If I remove the include for header_tags.php page displays correctly but without SEO Headers working

 

The test file results with:

Test Results

 

Missing Code in File

The Header Tags head code for the index.php file cannot be found.

The Header Tags head code for the product_info.php file cannot be found.

The Header Tags head code for the product_reviews.php file cannot be found.

The Header Tags head code for the product_reviews_info.php file cannot be found.

The Header Tags head code for the product_reviews_write.php file cannot be found.

The Header Tags head code for the specials.php file cannot be found.

 

I'm stumped any suggestions

Dan

Link to comment
Share on other sites

The Fill Tags using Description will create the tags from the description meta tags text. That is probably not what you want though. But if you are looking to fill the tags with specific keywords from the text on the page, that isn't possible. The code will try to find the keywords to use but it doesn't mean they will be what you want. The end result is that they would all have to be edited.

 

Jack

Hi Jack

 

Can you advise what value (true or false) the "Prevent Spider Sessions" should be in Configuration/Sessions?

 

Mine is et to "True" which I believe is the default value. Does this mean that the search engine spiders will not operate correctly?

 

Or am I just misunderstanding it use?

 

Best Regards

Peter

Link to comment
Share on other sites

Hi All! I've worked on this all day and can't figure out. I'm on No.7 of the Install_Catalog, which says: In includes/header.php,

 

find: <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', 'osCommerce') . '</a>'; ?></td>

 

replace with: <?php /*** Begin Header Tags SEO ***/ ?>

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', (tep_not_null($header_tags_array['logo_text']) ? $header_tags_array['logo_text'] : STORE_NAME)) . '</a>'; ?></td>

<?php /*** End Header Tags SEO ***/ ?>

 

Sounds/looks simple, but I have an unusual header on my site which someone else installed. I'm really needing some assistance, please!!!!!!!!!!! And thank you!!!!!!! mmh

 

I think I have enough info below where the modifications should be made (sorry if I included too much):

 

if ($messageStack->size('header') > 0) {

 

echo $messageStack->output('header');

 

}

 

?>

 

<style type="text/css">

 

<!--

 

.style1 {

 

font-size: xx-large;

 

font-weight: bold;

 

}

 

-->

 

</style>

 

 

 

<div class="maindiv">

 

<img src="images/techtree4.gif" width="56" height="159" hspace="15" align="left" />

 

<table width="750" border="0" align="center">

 

<tbody>

 

<tr>

 

<th valign="top" scope="col" colspan="7" height="57" style="color: #990000; padding: 15px;"> <p><span class="style1">TECH

 

TREES</span><br />

 

<em><strong>Quality Native Trees at an Affordable

 

Price</strong></em></p></th>

 

</tr>

 

<tr>

 

<td colspan="2"><a href="http://techtrees.net/index.html"><img height="38"

 

alt="Home" src="images/homelog_techtrees.jpg" width="115" border="0"

 

longdesc="index/pics/log.jpg" /></a></td>

 

<td width="119"><a href="http://techtrees.net/index/aboutus1.html"><img

 

height="38" alt="About Tech Trees and photos" src="images/about_techtrees.jpg"

 

width="115" border="0" longdesc="index/pics/log.jpg" /></a></td>

 

<td width="126"><a href="http://techtrees.net/index/faqs1.html"><img

 

height="38"

 

alt="Questions/answers related to orders (download flyer, click ORDERS), payment, planting, resources, shipping, tree info, warranty and contacting us."

 

src="images/Q_&_A_techtrees.jpg" width="115" border="0"

 

longdesc="index/pics/log.jpg" /></a></td>

 

<td width="122"><a href="http://techtrees.net/index/nurserynotes.html"><img

 

height="38"

 

alt="NURSERY NOTES - Current updates on trees stocked and other useful information we wish to share with our customers"

 

src="images/nursery_notes_techtrees.jpg" width="115" border="0"

 

longdesc="index/pics/log.jpg" /></a></td>

 

<td colspan="2"><a href="index.php"><img

 

height="38" alt="Place your order" src="images/order_techtrees.jpg" width="115"

 

border="0" longdesc="index/pics/log.jpg" /></a></td>

 

</tr>

 

<tr>

 

<td valign="top" width="10" height="22"> </td>

 

<td valign="top" width="112"> </td>

 

<td height="22"> </td>

 

<td height="22"> </td>

 

<td height="22"> </td>

 

<td valign="top" width="119" height="22"> </td>

 

<td width="19"> </td>

 

</tr>

 

</tbody>

 

</table>

 

<table border="0" width="100%" cellspacing="0" cellpadding="1" style="margin-top: 8px; margin-bottom: 4px; ">

 

<tr class="headerNavigation">

 

<td class="headerNavigation">  <?php echo $breadcrumb->trail(' » '); ?></td>

Link to comment
Share on other sites

Hey Jack

 

I've completed the install and ran the header_tag_test.php file as suggested, however I'm still stumped and receive the following items when I go to index.php the screen is cleared with the following error:

 

Fatal Error: Cannot redeclare tep_header_tag_page() (previously declared in ../catalog/includes/functions/header_tags.php:15)

 

If I remove the include for header_tags.php page displays correctly but without SEO Headers working

There is duplicate code somewhere that is including the function. You'll have to isolate it since there is no way to tell from here where the problem might be.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

The code isn't setup to handle that but you can try the following change. I haven't tested it but I think it will work. In includes/header_tags.php, change this code in the product_info section
$the_product_info_query = tep_db_query("select p.products_id,

to this

$the_product_info_query = tep_db_query("select p.products_id, p.products_model,

Then, in that same section, change

	FillHeaderTagsArray($header_tags_array, $sortOrder);  

break;

to

	FillHeaderTagsArray($header_tags_array, $sortOrder);  
   $header_tags_array['title'] .= HEADER_TAGS_SEPARATOR_DESCRIPTION . $pageTags['products_model']; 
break;

 

Jack

 

hi jack

 

thanks for the contrib..I tried the above but i dont get the model number to appear in the headertags.I emptied all the tags and redid them and still the same. dont get any errors at all..

 

cheers

 

nafri

Link to comment
Share on other sites

Hi All! I've worked on this all day and can't figure out. I'm on No.7 of the Install_Catalog, which says: In includes/header.php,

 

find: <td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', 'osCommerce') . '</a>'; ?></td>

 

replace with: <?php /*** Begin Header Tags SEO ***/ ?>

<td valign="middle"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image(DIR_WS_IMAGES . 'oscommerce.gif', (tep_not_null($header_tags_array['logo_text']) ? $header_tags_array['logo_text'] : STORE_NAME)) . '</a>'; ?></td>

<?php /*** End Header Tags SEO ***/ ?>

 

Sounds/looks simple, but I have an unusual header on my site which someone else installed. I'm really needing some assistance, please!!!!!!!!!!! And thank you!!!!!!! mmh

 

I think I have enough info below where the modifications should be made (sorry if I included too much):

 

if ($messageStack->size('header') > 0) {

 

echo $messageStack->output('header');}?>

<style type="text/css">

<!--

.style1 {font-size: xx-large;font-weight: bold;}

-->

</style>

<div class="maindiv">

<img src="images/techtree4.gif" width="56" height="159" hspace="15" align="left" />

<table width="750" border="0" align="center">

<tbody><tr>

<th valign="top" scope="col" colspan="7" height="57" style="color: #990000; padding: 15px;"> <p><span class="style1">TECH

TREES</span><br />

<em><strong>Quality Native Trees at an Affordable

Price</strong></em></p></th></tr>

<tr> <td colspan="2"><a href="http://techtrees.net/index.html"><img height="38"

alt="Home" src="images/homelog_techtrees.jpg" width="115" border="0"

longdesc="index/pics/log.jpg" /></a></td>

<td width="119"><a href="http://techtrees.net/index/aboutus1.html"><img height="38" alt="About Tech Trees and photos" src="images/about_techtrees.jpg"

width="115" border="0" longdesc="index/pics/log.jpg" /></a></td>

<td width="126"><a href="http://techtrees.net/index/faqs1.html"><img height="38"

alt="Questions/answers related to orders (download flyer, click ORDERS), payment, planting, resources, shipping, tree info, warranty and contacting us." src="images/Q_&_A_techtrees.jpg" width="115" border="0" longdesc="index/pics/log.jpg" /></a></td>

<td width="122"><a href="http://techtrees.net/index/nurserynotes.html"><img height="38"

alt="NURSERY NOTES - Current updates on trees stocked and other useful information we wish to share with our customers" src="images/nursery_notes_techtrees.jpg" width="115" border="0" longdesc="index/pics/log.jpg" /></a></td>

<td colspan="2"><a href="index.php"><img height="38" alt="Place your order" src="images/order_techtrees.jpg" width="115" border="0" longdesc="index/pics/log.jpg" /></a></td></tr>

<tr> <td valign="top" width="10" height="22"> </td>

<td valign="top" width="112"> </td>

<td height="22"> </td>

<td height="22"> </td>

<td height="22"> </td>

<td valign="top" width="119" height="22"> </td>

<td width="19"> </td></tr></tbody></table>

<table border="0" width="100%" cellspacing="0" cellpadding="1" style="margin-top: 8px; margin-bottom: 4px; ">

<tr class="headerNavigation"><td class="headerNavigation">  <?php echo $breadcrumb->trail(' » '); ?></td>

 

Jack - Wondering if you could help me out? I don't know what is meant by tep not null? There's only a few lines to insert, but I don't know where? If only I could understand what this means? Thank you, Desperate Marg :unsure:

Link to comment
Share on other sites

Jack - Wondering if you could help me out? I don't know what is meant by tep not null? There's only a few lines to insert, but I don't know where? If only I could understand what this means? Thank you, Desperate Marg :unsure:
That code is replacing the alt tag for your logo. You have an altered shop so the instructions won't directly apply. I don't offer free support for such code changes since there are too many variations.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Hi

 

I have reached this point with my install

 

for the admin area...............

 

1046 - No database selected

 

select configuration_key as cfgKey, configuration_value as cfgValue from configuration

 

[TEP STOP]

 

and this on the front page.................

 

Warning: require(includes/boxes/configuration.php) [function.require]: failed to open stream: No such file or directory in C:\Inetpub\wwwroot\www.sustainable.co.za\catalog\includes\column_left.php on line 13

 

Fatal error: require() [function.require]: Failed opening required 'includes/boxes/configuration.php' (include_path='.;C:\php5\pear') in C:\Inetpub\wwwroot\www.sustainable.co.za\catalog\includes\column_left.php on line 13

 

Help please

Link to comment
Share on other sites

Hello,

 

I have a genreal question about a feature of this contribution (haven´t installed it yet):

 

-> Added an automatic page add feature.

 

What is this feature about, what does it exactly? It sounds very interesting :)

Thanks a lot.

Link to comment
Share on other sites

Hi

 

I have reached this point with my install

 

for the admin area...............

 

1046 - No database selected

 

select configuration_key as cfgKey, configuration_value as cfgValue from configuration

 

[TEP STOP]

 

and this on the front page.................

 

Warning: require(includes/boxes/configuration.php) [function.require]: failed to open stream: No such file or directory in C:\Inetpub\wwwroot\www.sustainable.co.za\catalog\includes\column_left.php on line 13

 

Fatal error: require() [function.require]: Failed opening required 'includes/boxes/configuration.php' (include_path='.;C:\php5\pear') in C:\Inetpub\wwwroot\www.sustainable.co.za\catalog\includes\column_left.php on line 13

 

Help please

The first is saying there is a database problem and the second says it can't find a file. But neither have to do with Header Tags. If the shop was working before attempting the installation, somethinig went horribly wrong with the installation. You'll need to restore your shop to a working condition and try it again.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Hello,

 

I have a genreal question about a feature of this contribution (haven´t installed it yet):

 

-> Added an automatic page add feature.

 

What is this feature about, what does it exactly? It sounds very interesting :)

Thanks a lot.

In the contribution this one replaced, you had to add the page to the list manually. This one does that for you by finding files with the Header Tags code in it. You still have to set up the tags and options though.

 

Jack

Support Links:

For Hire: Contact me for anything you need help with for your shop: upgrading, hosting, repairs, code written, etc.

Get the latest versions of my addons

Recommended SEO Addons

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...