Quote Originally Posted by kobra View Post
Code:
define('DIR_WS_CATALOG', '/store/index.php');
This is only the path to the files and not any file names so drop the index.php

It should be like:

'/' = if at the root
'/shop/' = if in a folder named shop
'/store/' = if in a folder named store

and or any other folder name

be sure to adjust all instances correctly
Droped it all together. Put it back to define('DIR_WS_CATALOG', '/store');

But I went in and manual change the:
tpl_header.php
tpl_footer.php

In both of these I notice where it called from this line here:

<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>

I inserted the following into to call for the index.php here
<li><?php echo '<a href="' . HTTP_SERVER . DIR_WS_CATALOG . index . '">'; ?><?php echo HEADER_TITLE_CATALOG; ?></a></li>

Notice the difference in blue.

Worked like a charm.

Thanks for your help.