what is php 3 1 - Simple PHP & MySQL Pagination

Simple PHP & MySQL Pagination

When looking at MySQL output, it is sometimes more convenient to split up the number of records returned into separate pages and include hyperlinks to further pages in the result set, a layout often referred to as pagination. The following is an...

image 24 - How to monitor and 🔄 auto restart cron service in cPanel

How to monitor and 🔄 auto restart cron service in cPanel

Sometimes the crond service fails quite often without any clue and it becomes necessary to monitor the cron service and auto-restart it. cPanel offers ‘chkservd’, a monitoring daemon that monitors the services on the server and restart...

linux - How 👨‍💻 hackers invade 🐧 Linux

How 👨‍💻 hackers invade 🐧 Linux

Today is Valentine’s Day, and I wish all lovers to be married, and I wish everyone a happy Valentine’s Day! But pay attention to safety at all times. Now let me talk about how to see how hackers have invaded Linux: The purpose...

what is cpanel - ⚠️ phpMyAdmin: Cannot start session without errors

⚠️ phpMyAdmin: Cannot start session without errors

You receive the error message “Cannot start session without errors” while accessing phpMyAdmin in cPanel. phpMyAdmin will not work if any of the following settings are incorrect on a cPanel server. 1. The owner and group of...

what is php 3 1 - HTTP Fetching in PHP Without cURL

HTTP Fetching in PHP Without cURL

On some shared hosting accounts, cURL, fopen or file_get_contents functions may be disabled ‘for security reasons’, yet you can still achieve HTTP fetching using socket functions. This simple class of code will allow you to do a wide...

what is php 3 1 - Simple PHP .htpasswd 🔑 Manager

Simple PHP .htpasswd 🔑 Manager

Sometimes simplicity is also convenient, and in the case of authentication on the most popular web server, Apache, .htpasswd fits the bill You may opt for a PHP/MySQL login which in itself is simple enough, but requires the availability of MySQL. If...

what is php 3 1 - Forking with PHP from the command line 👨‍💻

Forking with PHP from the command line 👨‍💻

Forking new processes is an extremely handy function in programming that allows you to run tasks in parallel to one another, from a single invocation of a program. You may be interested in forking if: You have a multi-processor/threaded CPU and want...

linux - ☠️ Kill a program that has 🔒 locked

☠️ Kill a program that has 🔒 locked

Run ps aux to see a list of all running processes. To the right of the process name will be a process number (pid), like 606 or 1125 or 12856. To kill the program, enter: kill <pid> If you’ve still got a problem, then try kill ...