Quote Originally Posted by mtechama View Post
Are the files that are missing listed in the error logs?
[12-Apr-2016 00:02:53 America/Chicago] PHP Warning: require(includes/templates/template_default/sideboxes/tpl_languages_header.php): failed to open stream: No such file or directory in /xxxxx/xxxxx/public_html/morrisgiftshop.biz/includes/modules/sideboxes/languages_header.php on line 22
[12-Apr-2016 00:02:53 America/Chicago] Request URI: /, IP address: 50.26.57.249
#1 require() called at [/xxxxx/xxxxx/public_html/morrisgiftshop.biz/includes/modules/sideboxes/languages_header.php:22]
#2 require(/xxxxx/xxxxx/public_html/morrisgiftshop.biz/includes/modules/sideboxes/languages_header.php) called at [/xxxxx/xxxxx/public_html/morrisgiftshop.biz/includes/modules/column_left.php:31]
#3 require(/xxxxx/xxxxx/public_html/morrisgiftshop.biz/includes/modules/column_left.php) called at [/xxxxx/xxxxx/public_html/morrisgiftshop.biz/includes/templates/responsive_classic/common/tpl_main_page.php:136]
#4 require(/xxxxx/xxxxx/public_html/morrisgiftshop.biz/includes/templates/responsive_classic/common/tpl_main_page.php) called at [/xxxxx/xxxxx/public_html/morrisgiftshop.biz/index.php:97]
If you read it from the bottom to the top, you'll discover how it works:
index.php
calls tpl_main_page.php
which calls column_left.php
which calls /includes/modules/sideboxes/languages_header.php (not part of Zen Cart)
which calls checks for a tpl_languages_header.php file in your current template folder, and if that doesn't exist it tries template_default.
But since tpl_languages_header.php doesn't exist in your current template folder or in template_default, it's logging "failed to open ... no such file"