Wolf CMS

hi, I tried to install this cms but after copying it to my acc on bplaced I can see only 500 Internal server error
also tried to comment “# Options -Indexes +FollowSymLinks” in .htaccess file but still result is same

Full htacces file is:

[quote]#

Setting Wolf CMS requirements

On some server configurations you may need to comment out one or more of

the three lines below due to server limitations.

php_flag magic_quotes_gpc off
AddDefaultCharset UTF-8
Options -Indexes +FollowSymLinks

Setting rewrite rules

RewriteEngine On # Set next line to your Wolf CMS root - if not in subdir, then just / RewriteBase /wolfcms/

Rules to allow install sequence to test for mod_rewrite support

RewriteRule ^wolf/install/index.html$ wolf/install/index.php?rewrite=1 [L,QSA]
RewriteRule ^wolf/install/index.php$ wolf/install/index.php?rewrite=1 [L,QSA]
RewriteRule ^wolf/install/$ wolf/install/index.php?rewrite=1 [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

Main URL rewriting.

RewriteRule ^(.*)$ index.php?WOLFPAGE=$1 [L,QSA]

[/quote]

the PHP flag does the problem here, see: php.net/manual/en/configurat … r-user.php
So u have to remove that from ur .htaccess, and do it with .php.ini [size=85](place it in same folder)[/size]

.php.ini; Magic quotes for incoming GET/POST/Cookie data. magic_quotes_gpc = Off ; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc. magic_quotes_runtime = Off ; Use Sybase-style magic quotes (escape ' with '' instead of \'). magic_quotes_sybase = Off