wndbne,
awesome.
so now we have established that zen-cart is loading; and there is a problem with a script within the includes/extra_configures directory.
the easy thing would be to see if you have access to your hosts apache error log. the error log should point you to the exact problem script. you can ask your host for that information.
barring that you can continue to add the die statement to the scripts contained within the aforementioned directory until you can further isolate the line that is failing.
good luck!
To possibly more conclusively identify which file(s) are a problem, you could try a portion of what was suggested in post #2 of this thread:
Advanced Developer Option. (THIS APPROACH IS *NOT* NEEDED FOR MOST SITUATIONS!!!!)
While the built-in myDebug-xxxxxx.log method above is far more reliable and secure (since messages are never shown in your customers' browser), another way to help identify *where* an error is happening is to show the errors on your browser. The drawback to this is that your customers can also see the errors, and search engines might catch them too ... which could be embarrassing, AND WILL CAUSE YOUR SITE TO FAIL PCI SECURITY SCANS.
To attempt to show PHP debug errors on-screen, create and upload a new file, like this:
Filename: /includes/local/configure.php
Then try to access your site again. You may see many warning messages on the screen.Code:<?php define('STRICT_ERROR_REPORTING', true);
Be sure to delete the /includes/local/configure.php file once you've identified the problem, lest you leave yourself with a security problem on your site.
ZC Installation/Maintenance Support <- Site
Contribution for contributions welcome...
fantastic, my site is back up --Thanks so much for all the help :)
I looked closer in the 'extra_configures' folder and found an odd file named "email_use_8bit_prexxx" ..appears to be a copy of "email_use_8bit" but had odd code inside.. not sure where it came from but missed it in my prior scan of files.. also had an older date on file so didn't trigger to look as a recent hack attempt as figured was a prior patch or add-on..
I deleted the file and all is back up and running --Many thanks again for all the help.. going to work on upgrading to latest Zen Cart version to eliminate the security vulnerabilities of my older version..