How to fix RvSiteBuilder 6 “current directory is not permitted” error

Error:

Problem Reported: Problem with publishing
Error Message: Error function of publish task :makeFolders cannot create directory. current directory is not permitted./home/olduser

Mostly this problem occur after recent master domain or cPanel username change, so to get this fixed you need to try to correct diskquota.ini.php file under the /home/USERNAME/.rvsitebuilder folder

Fix:

root@server1 [/home/actualuser/.rvsitebuilder]# cat diskquota.ini.php
;<?php die(“Unreadable”); ?>
1=42717184
2=0
3=”$_CPANEL[\”DOCROOT\”] = array(‘website.com’ => ‘/home/actualuser/public_html/website.com’);”
maxdb=unlimited
countdb=0

Example:

before:
3=”$_CPANEL[\”DOCROOT\”] = array(‘website.com’ => ‘/home/olduser/public_html’);”

after:
3=”$_CPANEL[\”DOCROOT\”] = array(‘website.com’ => ‘/home/actualuser/public_html/website.com’);”

Similar Posts:

Leave a Reply

Your email address will not be published. Required fields are marked *