Hi, Here are the some important services on cPanel based server and with its respective configuration file and port number that service uses. The cpanel configuration file Configuration file : cpanel.config Path : /var/cpanel/cpanel.config Service : cpanel Apache – The web server Default Port : #80 Configuration file : httpd.conf Path : /etc/httpd/conf/httpd.conf […]
See MoreAuthor: Vishwajit Kale
Vishwajit Kale blazed onto the digital marketing scene back in 2015 and is the digital marketing strategist of Hostripples, a company that aims to provide affordable web hosting solutions. Vishwajit is experienced in digital and content marketing along with SEO. He's fond of writing technology blogs, traveling and reading.
How to reset MySQL root Password
This will helps when you forget MySQL root password and not able to access MySQL service on the server. Here are the steps to reset MySQL password : root@server [~] /etc/init.d/mysqld stop Now start MySQL server without password: root@server [~] mysqld_safe –skip-grant-tables & root@server [~] mysql After that you can get the mysql […]
See MoreHow to parse php Code in shtml file
How to parse the php code in .shtml file. Solution : If you want to use php code in .shtml file then you need to add the following handler in .htaccess file. AddType application/x-httpd-php5 .php5 .php4 .php .php3 .php2 .phtml .shtml AddHandler application/x-httpd-php5 .php5 .php4 .php3 .php2 .phtml .shtml Done
See More