forked from mirrors/easyappointments
Created storage and extensions directories for future use. Also removed the javascript and styles which will be used from the assets directory.
This commit is contained in:
parent
fc237b1ffd
commit
6e08829b6e
7 changed files with 16 additions and 6 deletions
|
@ -237,7 +237,7 @@ $config['log_threshold'] = 1;
|
||||||
| application/logs/ folder. Use a full server path with trailing slash.
|
| application/logs/ folder. Use a full server path with trailing slash.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
$config['log_path'] = '';
|
$config['log_path'] = __DIR__ . '/../../storage/cache';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
@ -259,7 +259,7 @@ $config['log_date_format'] = 'Y-m-d H:i:s';
|
||||||
| system/cache/ folder. Use a full server path with trailing slash.
|
| system/cache/ folder. Use a full server path with trailing slash.
|
||||||
|
|
|
|
||||||
*/
|
*/
|
||||||
$config['cache_path'] = '';
|
$config['cache_path'] = __DIR__ . '/../../storage/cache';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|--------------------------------------------------------------------------
|
|--------------------------------------------------------------------------
|
||||||
|
|
0
src/application/cache/index.html → src/extensions/plugins/index.html
Normal file → Executable file
0
src/application/cache/index.html → src/extensions/plugins/index.html
Normal file → Executable file
0
src/application/logs/index.html → src/extensions/themes/index.html
Normal file → Executable file
0
src/application/logs/index.html → src/extensions/themes/index.html
Normal file → Executable file
0
src/application/cache/.htaccess → src/storage/cache/.htaccess
vendored
Normal file → Executable file
0
src/application/cache/.htaccess → src/storage/cache/.htaccess
vendored
Normal file → Executable file
4
src/styles/index.html → src/storage/cache/index.html
vendored
Normal file → Executable file
4
src/styles/index.html → src/storage/cache/index.html
vendored
Normal file → Executable file
|
@ -1,10 +1,10 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>403 Forbidden</title>
|
<title>403 Forbidden</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<p>Directory access is forbidden.</p>
|
<p>Directory access is forbidden.</p>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
4
src/javascript/index.html → src/storage/logs/index.html
Normal file → Executable file
4
src/javascript/index.html → src/storage/logs/index.html
Normal file → Executable file
|
@ -1,10 +1,10 @@
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title>403 Forbidden</title>
|
<title>403 Forbidden</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<p>Directory access is forbidden.</p>
|
<p>Directory access is forbidden.</p>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
10
src/storage/uploads/index.html
Executable file
10
src/storage/uploads/index.html
Executable file
|
@ -0,0 +1,10 @@
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>403 Forbidden</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<p>Directory access is forbidden.</p>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
</html>
|
Loading…
Reference in a new issue