I posted this to the programming forum as well (apologies). I'm getting the following error. It is affecting my ability to generate a sitemap, and other issues. Some folks online have told me this is really a server issue (perhaps with PHP running in safe mode?).
Any idea what could be causing this and how to resolve it?
Any idea what could be causing this and how to resolve it?
Here's the error:
Warning: is_writable() [function.is-writable]: open_basedir restriction in effect. File(/) is not within the allowed path(s):
Some history:
1. I originally defined the project in a new (dedicated) subdirectory of an existing site. Call this mysite.x10hosting.com/wordpress/ (not the actual name)
2. Once the Wordpress site was up and running at mysite.x10hosting.com/wordpress I created an addon domain, such as www.newsite.com that mapped to mysite.x10hosting.com/wordpress, and I changed my Wordpress blog URL to www.newsite.com
That's when the problem started.
Could this be related to the .htaccess file related (just a guess)? That file currently has the following format:
# BEGIN WordPress
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)mysite.x10hosting.com/wordpress [NC]
RewriteRule ^(.*)$ http://www.newsite.com/$1 [R=301,L]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Hoping you can help. Thanks.
Warning: is_writable() [function.is-writable]: open_basedir restriction in effect. File(/) is not within the allowed path(s):
Some history:
1. I originally defined the project in a new (dedicated) subdirectory of an existing site. Call this mysite.x10hosting.com/wordpress/ (not the actual name)
2. Once the Wordpress site was up and running at mysite.x10hosting.com/wordpress I created an addon domain, such as www.newsite.com that mapped to mysite.x10hosting.com/wordpress, and I changed my Wordpress blog URL to www.newsite.com
That's when the problem started.
Could this be related to the .htaccess file related (just a guess)? That file currently has the following format:
# BEGIN WordPress
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(.*)mysite.x10hosting.com/wordpress [NC]
RewriteRule ^(.*)$ http://www.newsite.com/$1 [R=301,L]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Hoping you can help. Thanks.