Do post here instead of PM.
Re setup server, install litespeed , create user account , install wordpress and paste here output of the commands below
cat /usr/local/apache/conf/sharedip.conf
cat /usr/local/apache/conf.d/vhosts.conf
[root@server /]# cat /usr/local/apache/conf/sharedip.conf
<VirtualHost 80.240.20.xxx:80>
ServerName 80.240.20.xxx
DocumentRoot /usr/local/apache/htdocs
ServerAdmin info@centos-webpanel.com
<IfModule mod_suphp.c>
suPHP_UserGroup nobody nobody
</IfModule>
<Proxy "*">
<IfModule mod_security2.c>
SecRuleEngine Off
</IfModule>
</Proxy>
RewriteEngine On
RewriteCond %{HTTP_HOST} !^80.240.20.xxx$
RewriteCond %{HTTP_HOST} ^webmail.
RewriteRule ^/(.*)
http://127.0.0.1:2095/$1 [P]
</VirtualHost>
<Directory "/">
AllowOverride All
Require all granted
</Directory>
AND
[root@server /]# cat /usr/local/apache/conf.d/vhosts.conf
# vhost_start mysite.com
<VirtualHost 80.240.20.xxx:8181>
ServerName mysite.com
ServerAlias
www.mysite.com ServerAdmin webmaster@mysite.com
DocumentRoot /home/mysite/public_html
UseCanonicalName Off
ScriptAlias /cgi-bin/ /home/mysite/public_html/cgi-bin/
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/mysite/mysite.com/*.conf"
<IfModule mod_userdir.c>
UserDir disabled
UserDir enabled zortinge
</IfModule>
<IfModule mod_suexec.c>
SuexecUserGroup zortinge zortinge
</IfModule>
<IfModule mod_suphp.c>
suPHP_UserGroup zortinge zortinge
suPHP_ConfigPath /home/zortinge
</IfModule>
<Directory "/home/mysite/public_html">
AllowOverride All
</Directory>
</VirtualHost>
# vhost_end mysite.com
================================
So what do I have to do now?