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 - rcschaff

Pages: 1 ... 53 54 [55]
811
CentOS 7 Problems / Re: Hi Problem with install php-fpm 7.2.27 and 7.3.x
« on: February 02, 2020, 05:04:14 PM »
According to the official PHP website, libgd is no longer supported as of PHP7.2.  Uncheck gd in the build page of you php
You could start with just gd-freetype as thats the only one causing an error, but I'm pretty sure they all will be unchecked by the time your done.
Code: [Select]
gd You can use the image functions in PHP to get the size of JPEG, GIF, PNG, SWF, TIFF and JPEG2000 images.

gd-jpeg You can use the image functions in PHP to get the size of JPEG, GIF, PNG, SWF, TIFF and JPEG2000 images.

gd-freetype You can use the image functions in PHP to get the size of JPEG, GIF, PNG, SWF, TIFF and JPEG2000 images.

gd-PNG You can use the image functions in PHP to get the size of JPEG, GIF, PNG, SWF, TIFF and JPEG2000 images.

gd-jis-conv You can use the image functions in PHP to get the size of JPEG, GIF, PNG, SWF, TIFF and JPEG2000 images.

gd-webp enable support for WebP, is an image format employing both lossy and lossless compression.

812
CentOS 7 Problems / Re: upload large file
« on: February 02, 2020, 04:51:34 PM »
64MB is way smaller than 2GB.   I don't even think PHP has the capability of doing so.  Also, your apache/nginx also have limits and connection timeout variables to take into consideration.   Best to leave the big files to FTP.

For reference: https://stackoverflow.com/questions/4614147/uploading-a-file-larger-than-2gb-using-php

813
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.

814
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?

815
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

816
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.

817
CentOS-WebPanel Bugs / Re: Setting up user quota doesnt work
« on: January 27, 2020, 08:08:07 AM »

818
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

819
CentOS-WebPanel Bugs / Re: Setting up user quota doesnt work
« on: January 27, 2020, 07:52:11 AM »
Post your /etc/fstab

820
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

Pages: 1 ... 53 54 [55]