| View previous topic :: View next topic |
| Author |
Message |
malo123
Joined: 21 Aug 2009 Posts: 1
|
Posted: Aug 22, 2009 5:12 pm Post subject: env.php |
|
|
After installation try to open env.php which is in FileServer files folder in browser - it should show you error or source code.
If you see full path, then check that you've moved .htaccess to FileServer htdocs folder.
When you make sure PHP files are forbidden, delete env.php
i did that but it is still showing me the path?
can someone help? |
|
| Back to top |
|
 |
PilgrimX182

Joined: 22 Mar 2006 Posts: 2106 Location: UFO Lab
|
Posted: Aug 24, 2009 12:09 pm Post subject: |
|
|
Mean directives in .htaccess were unable to disable PHP execution.
Use these directly in apache config for files folder:
| Code: | <IfModule mod_php4.c>
php_flag engine off
</IfModule>
<IfModule mod_php5.c>
php_flag engine off
</IfModule> |
or contact your server administrator to disable PHP execution in files folder. |
|
| Back to top |
|
 |
|