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.
406
Apache / Re: mod_rewrite not visible even after apache rebuild
« on: January 30, 2018, 08:22:49 PM »
what is output of command
Quote
/usr/local/apache/bin/httpd -M
407
DNS / Re: Cant start DNS after hostname change
« on: January 30, 2018, 08:00:08 PM »
Goto nameserver IP's and there just click on save changes.
408
CentOS-WebPanel Bugs / Re: php7.x installation fails
« on: January 30, 2018, 07:27:59 PM »
Dont forget to remove libzip before installation 

Quote
rpm -e --nodeps libzip-devel.x86_64
rpm -e --nodeps libzip.x86_64
409
CentOS-WebPanel Bugs / Re: php7.x installation fails
« on: January 30, 2018, 06:24:29 PM »
Try
Quote
wget https://cmake.org/files/v3.10/cmake-3.10.2.tar.gz
tar zxvf cmake-3.10.2.tar.gz
cd cmake-3.10.2
./bootstrap
make
make install
Quote
wget https://libzip.org/download/libzip-1.4.0.tar.gz
tar zxvf libzip-1.4.0.tar.gz
cd libzip-1.4.0
mkdir build
cd build
/usr/local/bin/cmake ..
make
make test
make install
410
CentOS-WebPanel Bugs / Re: php7.x installation fails
« on: January 30, 2018, 06:13:30 PM »
which php 7 version you are trying to compile?
411
PHP / Re: suphp removal script
« on: January 30, 2018, 05:14:44 PM »
No this would never effect.
412
Apache / Re: where is apache config ?
« on: January 30, 2018, 04:54:18 PM »
nano /usr/local/apache/conf/httpd.conf
Uncomment
Include conf/extra/httpd-mpm.conf
nano /usr/local/apache/conf/extra/httpd-mpm.conf
Uncomment
Include conf/extra/httpd-mpm.conf
nano /usr/local/apache/conf/extra/httpd-mpm.conf
413
PHP / Re: suphp removal script
« on: January 29, 2018, 10:31:46 PM »
mv /usr/local/apache/conf.d/suphp.conf /usr/local/apache/conf/suphp.conf
server httpd restart
server httpd restart
414
Suggestions / Re: provide options to remove/reinstall components installed by script
« on: January 29, 2018, 10:30:08 PM »
They can be manually updated or removed. I dont feel we need a script for that. Also it may be not a priority for now.
415
CentOS-WebPanel Bugs / Re: phpMyAdmin 4.6.6 outdated
« on: January 29, 2018, 10:07:39 PM »
cd /root/phpmyadmin
416
CentOS-WebPanel Bugs / Re: php7.x installation fails
« on: January 29, 2018, 10:05:30 PM »
did you try
yum install libzip-devel -y
yum install libzip-devel -y
417
CentOS-WebPanel Bugs / Re: phpMyAdmin 4.6.6 outdated
« on: January 29, 2018, 09:20:06 PM »
Once can create a bash script to install phpmyadmin auomatically
Quote
yum install composer -y
git clone https://github.com/phpmyadmin/phpmyadmin.git
cd phpmyadmin
yes | cp -rv * /usr/local/cwpsrv/var/services/pma/
cd /usr/local/cwpsrv/var/services/pma/
chown -R cwpsvc:cwpsvc *
composer update
service cwp-phpfpm restart
418
Suggestions / Re: implement panel option for changing MySQL root password
« on: January 29, 2018, 08:44:03 PM »
nano /scripts/mysql_pwd_reset
Find line
Replace it
Then run the script again.
Find line
Quote
DB_ROOT_PASS=`cat /dev/urandom| tr -dc 'a-zA-Z0-9' | fold -w 12|head -n1`
Replace it
Quote
read -sp 'Password: ' DB_ROOT_PASS
Then run the script again.
419
Suggestions / Re: implement panel option for changing MySQL root password
« on: January 29, 2018, 08:10:58 PM »420
CentOS-WebPanel Bugs / Re: phpMyAdmin 4.6.6 outdated
« on: January 27, 2018, 07:31:42 PM »
Why not manually updating it?