Forum Moderators: phranque
I have installed the script correctly and followed everything - but when a user signs up, their website <snip> produces an internal server error. It creates the directory and places the html file within it quite happily. Here is the .htaccess file located in the /users/ directory above public_html
----
AddHandler headerd .gif
AddHandler headerd .jpg
AddHandler headerd .bmp
AddHandler headerd .png
AddHandler headerd .txt
AddHandler headerd .css
Action headerd /users/head.php3
AddHandler headered .htm
AddHandler headered .html
AddHandler headered .php
Action headered /users/header.php3
AddHandler zippo .zip
AddHandler zippo .exe
AddHandler zippo .rar
AddHandler zippo .mp3
AddHandler zippo .wav
Action zippo /users/zip.php3
---
I have tried modifying paths and it either throws up a Bad Request error or just remains Internal Server Error. When i remove the middle section;
AddHandler headered .htm
AddHandler headered .html
AddHandler headered .php
The script loads the user page, but without the header and footer fiels that should be there - also the error document found in a variable in one of the php3 files (also located in the /users/ directory) is not loaded.
I hope this is enough information to help me out - It would be much appreciated.
Thanks Again
James.
[edited by: jdMorgan at 4:04 pm (utc) on Mar. 13, 2008]
[edit reason] Removed specifics per Terms of Service. [/edit]
Also, be aware that several of the directives above can be combined on fewer lines for efficiency. for example, the first section can be written:
AddHandler headerd .gif .jpg .bmp .png .txt .css
You might also wish to change the two very-similar-appearing action names to something a little less visually-confusing, such as "header1" and "header2".
Jim