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:
Alex Tselegidis 2016-07-11 23:10:52 +02:00
parent fc237b1ffd
commit 6e08829b6e
7 changed files with 16 additions and 6 deletions

View File

@ -237,7 +237,7 @@ $config['log_threshold'] = 1;
| 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.
|
*/
$config['cache_path'] = '';
$config['cache_path'] = __DIR__ . '/../../storage/cache';
/*
|--------------------------------------------------------------------------

View File

View File

0
src/application/cache/.htaccess → src/storage/cache/.htaccess vendored Normal file → Executable file
View File

4
src/styles/index.html → src/storage/cache/index.html vendored Normal file → Executable file
View File

@ -1,10 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
</html>

View File

@ -1,10 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>
</html>

10
src/storage/uploads/index.html Executable file
View File

@ -0,0 +1,10 @@
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<p>Directory access is forbidden.</p>
</body>
</html>