- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
/*
*---------------------------------------------------------------
* APPLICATION FOLDER NAME
*---------------------------------------------------------------
*
* If you want this front controller to use a different "application"
* folder then the default one you can set its name here. The folder
* can also be renamed or relocated anywhere on your server. If
* you do, use a full server path. For more info please see the user guide:
* http://codeigniter.com/user_guide/general/managing_apps.html
*
* NO TRAILING SLASH!
*/
$application_folder = __DIR__ . '/application';
...
// The path to the "application" folder
if (is_dir($application_folder))
{
define('APPPATH', $application_folder.'/');
}
else
{
if ( ! is_dir(BASEPATH.$application_folder.'/'))
{
exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
}
define('APPPATH', BASEPATH.$application_folder.'/');
}
CodeIgniter 2. Хороший все-таки фреймворк.
Fike 15.03.2017 13:00 # 0
Shurigina 15.03.2017 20:08 # 0
Goatse 15.03.2017 20:44 # 0
guestinh0 15.03.2017 20:48 # 0
guestinho 15.03.2017 20:52 # 0
guestinho 15.03.2017 20:54 # 0
guestinho 15.03.2017 20:56 # 0
guestinho 15.03.2017 20:58 # 0