Thanks blargman!
It's an awesome script for so many reasons...cPanel really missing this.
It's been installed on quite large server (many accounts) without a hitch.
The only problem we can't really use until .htaccess directives doesn't work properly (after installing it the SEF url's didn't work on most of the domains).
Here's a sample of one the .htaccess (it's vBulletin forum sef rewrite...similar to cPanel's forum)... do you know by any chance what are the non-supported lines ?
Code:
RewriteEngine On
Options +FollowSymLinks
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^somedomain\.com$
RewriteRule (.*) http://somedomain.com/$1 [R=301,L]
RewriteCond %{REQUEST_URI} !(admin/|moderator/|cron)
RewriteRule ^((archive/)?(.*\.php(/.*)?)?)$ seo.php [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !^(admin|moderator|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ seo.php [L,QSA]
RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ seo_sitemap/seo_getsitemap.php?sitemap=$1 [L]