Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - thquantv

Pages: [1]
1
E-Mail / Email relay
« on: June 05, 2019, 07:46:51 AM »
Dear all,
My email server with finished configure SPF, DKIM,... but sometimes go to spam gmail and blacklist by spamhaus.
I want to configure relay email to another mail server to send mail (Email relay service)

How to configure

2
Installation / Extend storage for web server
« on: October 31, 2016, 08:00:19 AM »
Dear all,
I have tested CentOS Web panel with 5GB storage Linux system...
How to extend web panel without reinstall web panel.
I try to add new storage to 30GB but xvda1 only 5GB detect.
How to do it?

3
Installation / Re: i don't understand how to install wordpress
« on: August 18, 2016, 01:47:02 AM »
HAIZZZZZ.

Error with upload files.
Upload with root = zip file and extract -> fix permission -> OK.
upload with client account will lost some file and error show.
P/s: CWP not support upload source with client ??????
I upload with drag-drop simple_ftp
Thanks.

4
Installation / Re: Internal Error 500 when setup Wordpress CWP Apache2
« on: August 18, 2016, 01:45:20 AM »
I have answer for this error.
CWP DO NOT UPLOAD DONE.
I upload Wordpress source but lost some require file.
Only upload with root wordpress.zip and extract.
all working.

How to upload source with client account?????

5
Installation / Re: i don't understand how to install wordpress
« on: August 17, 2016, 09:18:54 AM »
hi.
Sorry when write in old topic.
But I copy file to public_html folder.
And fix permission OK.
but when access link -> show http error 500 and no show anything.
Any config for php, apache for wordpress.

6
Installation / Internal Error 500 when setup Wordpress CWP Apache2
« on: August 17, 2016, 09:06:58 AM »
Dear all,
I finished to install CWP and config VirtualHost.
Now I want to install Wordpress. but when I copy source to public_html and run.
It show Internal error 500 and
The xxxxx.com page isn’t working

xxxxx.com is currently unable to handle this request.


Yii2 framework project work fine.
But Wordpress not work (localhost MAMP work fine).
Please help me.

7
Apache / Re: More website in 1 server
« on: June 22, 2016, 08:12:40 AM »
Issues solved.
Problem because of Apache config.
When I restart Apache show warning: _default_ VirtualHost overlap on port 80, the first has precedence
----> this issue make all domain only map to 1 web directory.
and guide me add to httpd.conf
NameVirtualHost *:80
Restart Apache -> it worked

8
Apache / (SOLVED)More website in 1 server
« on: June 22, 2016, 03:53:40 AM »
Hello all,
I finished to configure CWP.
My first website is OK (Website domain go to public_html/website1)
When i create new user with domain2.com and virtual host show exact folder ( domain2.com -> public_html/website2)
I think some wrong with virtual host configuring.. but I don't know how to fix it? (rebuilt apache, fix permission)
I see like all new account only redirect to first website (not default page)



My virtual host file:

# vhost_start websiteA.com
<VirtualHost public_ip:80>
ServerName websiteA.com
ServerAlias www.websiteA.com
ServerAdmin ***@gmail.com
DocumentRoot "/home/folder1/public_html"
ScriptAlias /cgi-bin/ "/home/folder1/public_html/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/usr1/websiteA.com/*.conf

<IfModule mod_suexec.c>
        SuexecUserGroup usr1 usr1
</IfModule>

<IfModule mod_suphp.c>
        suPHP_UserGroup usr1 usr1
        suPHP_ConfigPath /home/usr1
</IfModule>

<Directory "/home/usr1/public_html">
        AllowOverride All
</Directory>

</VirtualHost>
# vhost_end websiteA.com


# vhost_start websiteB.com
<VirtualHost public_ip:80>
ServerName websiteB.com
ServerAlias www.websiteB.com
ServerAdmin ***@gmail.com
DocumentRoot "/home/folder2/public_html"
ScriptAlias /cgi-bin/ "/home/folder2/public_html/cgi-bin/
#
# Custom settings are loaded below this line (if any exist)
# Include "/usr/local/apache/conf/userdata/usr2/websiteB.com/*.conf

<IfModule mod_suexec.c>
        SuexecUserGroup usr2 usr2
</IfModule>

<IfModule mod_suphp.c>
        suPHP_UserGroup usr2 usr2
        suPHP_ConfigPath /home/usr2
</IfModule>

<Directory "/home/usr2/public_html">
        AllowOverride All
</Directory>

</VirtualHost>
# vhost_end websiteB.com

Pages: [1]