How can I resolve this:
Everything works perfectly on my local systen, I am running a windows 7 OS + XAMPP. but whe i deploy on the hosting servet i got the following errors:
Strict Standards: main() [function.main]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Chicago' for 'CDT/-5.0/DST' instead in /home/educatio/public_html/index.php on line 11
Notice: Use of undefined constant __DIR__ - assumed '__DIR__' in /home/educatio/public_html/index.php on line 11
Fatal error: require() [function.require]: Failed opening required '/bootstrap.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/educatio/public_html/index.php on line 33
Please any know what I doing wrong.
Without checking all the other things, if __DIR__ does not exist, you're not running PHP 5.3+. So upgrade the production server (or find a hoster that runs a more recent version of PHP).
As to the date message "use the date.timezone setting, the TZ environment variable or the date_default_timezone_set() function.", this says it all. You need to set a timezone in your php.ini file.
The fatal error is because __DIR__ does not exist, so it can't determine the APP and CORE paths...
That's most likely a PHP error, which is not displayed in production mode for security reasons.
Check your application log file, it will list the error and it's location. If not, enable logging (at at least ERROR level) in your app config file.