Install and configure csf on CentOS the following steps as root user 1: Downloading csf package. rm -fv csf.tgz wget http://www.configserver.com/free/csf.tgz 2: Remove already installed firewall settings Execute the following command to remove already installed firewall like APF (Advanced Policy Firewall) or BFD (Brute Force Detection) from server. [root@server #] sh /tmp/csf/remove_apf_bfd.sh 3: Installation [root@server #] […]
See MoreTag: configuration
Remove index.php from url in magento
How to remove index.php from url in magento Ans : If you want to access your magento URL without index.php for example: http://domain.com/index.php/category to http://domain.com/category then use the following steps 1) Login to admin section by using the URL http://domain.com/index.php/admin 2) then go to “System >> Configuration >>Web >> Search Engines Optimization” Use Web Server […]
See MoreHow to replace vsftpd with ProFTPD on a Debian or Ubuntu in Vesta Control Panel
How to replace vsftpd with ProFTPD on a Debian or Ubuntu in Vesta Control Panel ? 1. Disable vsftpd service vsftpd stop update-rc.d -f vsftpd remove 2. Install software package apt-get install proftpd-basic proftpd-mod-vroot 3. Download configuration wget http://c.vestacp.com/0.9.8/debian/proftpd.conf -O /etc/proftpd/proftpd.conf 4. Change vesta settings sed -i “s/vsftpd/proftpd/” /usr/local/vesta/conf/vesta.conf 5. Restart proftpd service proftpd restart
See More