PHP Tutorials

The infamous munin 404 error on cPanel

vi /etc/munin/munin-node.conf Locate (towards bottom)host *change tohost 0.0.0.0This is what you see before…. HTTP error 404 The requested page was not found. Possible reasons why you are seeing this page: A bookmarked URL may have changed since you last visited. The URL was entered incorrectly. The URL was entered with inaccurate capitalization. (URLs are case sensitive.) Please […]

The infamous munin 404 error on cPanel Read More »

Create your first PHP-enabled page

Hello, Today I will explain how you can create your first php enabled page. A PHP script starts with  <?php and ends with ?>  First of all open any text editor(notepad++) create a file name index.php and put it in your web server’s root OR /www OR puclic_html directory with the following content. <html><head><title>Homepage</title></head>  <?php echo ‘Hello World’; ?> 

Create your first PHP-enabled page Read More »