• When I configation the Permalink,I got a PHP Error Message

    PHP Error Message
    
    Warning: is_writable() [function.is-writable]: open_basedir restriction in effect. File(/) is not within the allowed path(s): (/home/:/usr/lib/php:/tmp) in /home/a8829597/public_html/wp-admin/options-permalink.php on line 110

    I need some help,thanks!

    sorry for my english

Viewing 2 replies - 1 through 2 (of 2 total)
  • Permalink uses a module called called re-write to create the urls.

    This needs access permissions to be able to create the urls, the warning message is telling you that you do not have access permissions.

    You’d need to login to your server and add this to either the .htaccess file or the apache2.conf either will do.

    <Directory “/var/www”>
    AllowOverride All
    RewriteEngine on
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
    </Directory>

    If it still doesn’t work make sure the rewrite module is enabled in the server.

    hope this helps

    Thread Starter pcamateur

    (@pcamateur)

    hilikus,thanks very much,I will try it!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Permalink is Error’ is closed to new replies.