FREELANCE COCKPIT 2 - Помогите сделать Null

Ого, спасибо, но как ей пользоваться?
Создаеш БД и импортируеш дамп
Потом редактируеш конфиг файл application/config/database.php
PHP:
<?php  if ( !defined('BASEPATH')) exit('No direct script access allowed');
                            /*
                            | -------------------------------------------------------------------
                            | DATABASE CONNECTIVITY SETTINGS
                            | -------------------------------------------------------------------
                            | This file will contain the settings needed to access your database.
                            |
                            | For complete instructions please consult the 'Database Connection'
                            | page of the User Guide.
                            |
                            */
 
                            $active_group = 'default';
                            $active_record = TRUE;
 
                            $db['default']['hostname'] = 'localhost';
                            $db['default']['username'] = 'username';
                            $db['default']['password'] = 'password';
                            $db['default']['database'] = 'database';
                            $db['default']['dbdriver'] = 'mysql';
                            $db['default']['dbprefix'] = '';
                            $db['default']['pconnect'] = TRUE;
                            $db['default']['db_debug'] = TRUE;
                            $db['default']['cache_on'] = FALSE;
                            $db['default']['cachedir'] = '';
                            $db['default']['char_set'] = 'utf8';
                            $db['default']['dbcollat'] = 'utf8_general_ci';
                            $db['default']['swap_pre'] = '';
                            $db['default']['autoinit'] = TRUE;
                            $db['default']['stricton'] = FALSE;
 
 
                            /* End of file database.php */
                            /* Location: ./application/config/database.php */
Где
localhost - хост БД
username - пользователь БД
password - к БД
database - имя БД

Запускаем наш сайт / данние для входа лог: admin пароль: 12345
 
Кто знает как решить это?

Код:
A PHP Error was encountered
 
Severity: Warning
 
Message: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting 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 'Europe/Moscow' for 'MSK/4.0/no DST' instead
 
Filename: libraries/Email.php
 
Line Number: 704
A PHP Error was encountered
 
Severity: Warning
 
Message: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting 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 'Europe/Moscow' for 'MSK/4.0/no DST' instead
 
Filename: libraries/Email.php
 
Line Number: 709
A PHP Error was encountered
 
Severity: Warning
 
Message: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting 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 'Europe/Moscow' for 'MSK/4.0/no DST' instead
 
Filename: core/MY_Controller.php
 
Line Number: 23
 
Кто знает как решить это?

Код:
A PHP Error was encountered
 
Severity: Warning
 
Message: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting 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 'Europe/Moscow' for 'MSK/4.0/no DST' instead
 
Filename: libraries/Email.php
 
Line Number: 704
A PHP Error was encountered
 
Severity: Warning
 
Message: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting 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 'Europe/Moscow' for 'MSK/4.0/no DST' instead
 
Filename: libraries/Email.php
 
Line Number: 709
A PHP Error was encountered
 
Severity: Warning
 
Message: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting 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 'Europe/Moscow' for 'MSK/4.0/no DST' instead
 
Filename: core/MY_Controller.php
 
Line Number: 23


Решил проблему:

в index.php в самом верху ниже <?php

вставить

date_default_timezone_set('America/New_York');
 
Решил проблему:

в index.php в самом верху ниже <?php

вставить

date_default_timezone_set('America/New_York');
можно ещё указать такую настройку в php.ini, тогда она будет доступна для всех сайтов, которые запускаются на текущем веб сервере.
date.timezone="America/New_York"
 
Ссылка в первом посте умерла, может кто перевыложит на Дропбокс или Я.Диск?
 
К ней какие платежки можно прикрутить?
 
Все встало, база тоже загрузилась.
У меня admin/12345 не подходит. Не пускает в систему.
Пробовал менять пароль в базе данных, все равно не пускает. В чем может быть проблема?
 
Назад
Сверху