How to install PHP from Source on Ubuntu

Compiling PHP from source code can be essential when you require a specific PHP version that isn’t available through your

How to get Contents of a Webpage using PHP curl

PHP cURL module allows you to connect to remote websites and API endpoints to exchange data. To see if you

Laravel supported ciphers are AES-128-CBC and AES-256-CBC

On a Laravel application, I get the following error message The only supported ciphers are AES-128-CBC and AES-256-CBC with the

How To Install ionCube on Ubuntu 20.04

ionCube is PHP extension that is used to load ionCube encoded PHP files. ionCube is used to protect commercial PHP

How to install PHP PECL Extension

PECL is a repository for PHP extensions. To install PHP extensions from PCEL, you can use the command pcel install

Monitoring APCu with APCu Panel

apcu-panel provide GUI to monitor APCu cache. To install apcu-panel on CentOS, run yum install apcu-panel The package provides following

nextcloud dashboard

NextCloud APCu not available for local cache

When trying to upgrade nextcloud, I get the following error www-data@mail:/www/nextcloud$ php7.3 occ upgrade An unhandled exception has been thrown:

How to clear Laravel cache

How to clear Laravel cache

To clear the Laravel cache, run the command You can also delete compiled files from Back to Laravel

PHP Script to verify private key matches SSL certificate?

PHP Script to verify private key matches SSL certificate?

OpenSSL command can be used to verify if an SSL certificate matches a private key file. You need to find

Codeigniter 3 session not working

Codeigniter 3 session not working

On a web application, session not working. I verified PHP session is working with script https://gist.github.com/serverok/8c504205ae0357e0c6488eab880a77bf When refreshing the script,

Redirect a site to www using PHP

Redirect a site to www using PHP

To redirect a site to URL with www using PHP, you can use the following PHP code Add this code

PHP script to test IMAP

PHP script to test IMAP

Here is a PHP Script to login to IMAP server.