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.
856
CentOS 7 Problems / Re: httpd start via a difrent "root folder"
« on: February 02, 2020, 04:48:15 PM »
That's why the first step of cwp installation is "Start with a clean minimal server". Attempting to install it on one already equiped with a LAMP stack will cause these errors.
857
Information / Re: User login locked screen
« on: February 02, 2020, 04:44:42 PM »
apparently so is mine. It definately isn't CSF, as you wouldn't even get a page load, it has to be a security protocol built into their dashboard. Can you open the panel from the admin section under list accounts by chance?
858
CentOS 7 Problems / Re: Hi Problem with install php-fpm 7.2.27 and 7.3.x
« on: January 31, 2020, 02:45:36 AM »
If you are trying to build PHP from source, you need headers for gd and other required files. I wouldn't recommend doing this unless your comfortable with building software from source.
Perhaps you should try installing them from yum instead.
https://tecadmin.net/install-php7-on-centos7/
once you do that, you would install php-fpm for it by
yum install php72-php-fpm
Perhaps you should try installing them from yum instead.
https://tecadmin.net/install-php7-on-centos7/
once you do that, you would install php-fpm for it by
yum install php72-php-fpm
859
PHP / Re: Where is Zend Guard been installed
« on: January 29, 2020, 01:46:54 AM »
check phpinfo() on a page running it. the System PHP is not the same as CWP's PHP, so you can't really mess it up.
860
CentOS-WebPanel Bugs / Re: Setting up user quota doesnt work
« on: January 27, 2020, 08:08:07 AM »
http://forum.centos-webpanel.com/index.php?topic=8164.msg28064;topicseen#msg28064
Try the above steps to enable quota via kernel
Try the above steps to enable quota via kernel
861
CentOS 6 Problems / Re: SSL for Hostname.
« on: January 27, 2020, 08:04:43 AM »
Unless it is a wildcard cert, I wouldn't use your cert for hostname. If you can add panel. As an add-on domain you could. Simply copy the cert, bundle, and key from baransel.(key/cert/bundle) to hpstname.(ext) in /etc/pki/tls. Cert and bundle are in certs. Key is in private foldera
862
CentOS-WebPanel Bugs / Re: Setting up user quota doesnt work
« on: January 27, 2020, 07:52:11 AM »
Post your /etc/fstab
863
Other / Re: Can I redirect the server's IP to a domain?
« on: January 26, 2020, 04:04:05 PM »
you could use 301 redirects in the proper software config.
nginx:
server {
listen [ip]:80;
listen [ip]:443 ssl;
server_name [ip];
root /some/directory/to/server/files/but/not/used
return 301 https://example.com$request_uri;
}
*** Alternatively, you can set one of your websites as listen [host]:443 default_server ssl;
Apache:
<VirtualHost [ip]:80>
ServerName [ip]
Redirect 301 / https://example.com/
</VirtualHost>
<VirtualHost [ip]:443>
ServerName [ip]
Redirect 301 / https://example.com/
</VirtualHost>
If you use Varnish, it get's complicated quickly
nginx:
server {
listen [ip]:80;
listen [ip]:443 ssl;
server_name [ip];
root /some/directory/to/server/files/but/not/used
return 301 https://example.com$request_uri;
}
*** Alternatively, you can set one of your websites as listen [host]:443 default_server ssl;
Apache:
<VirtualHost [ip]:80>
ServerName [ip]
Redirect 301 / https://example.com/
</VirtualHost>
<VirtualHost [ip]:443>
ServerName [ip]
Redirect 301 / https://example.com/
</VirtualHost>
If you use Varnish, it get's complicated quickly
