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 Ubuntu distribution…
Compiling PHP from source code can be essential when you require a specific PHP version that isn’t available through your Ubuntu distribution…
PHP cURL module allows you to connect to remote websites and API endpoints to exchange data. To see if you have php-curl…
On a Laravel application, I get the following error message The only supported ciphers are AES-128-CBC and AES-256-CBC with the correct key…
ionCube is PHP extension that is used to load ionCube encoded PHP files. ionCube is used to protect commercial PHP scripts by…
PECL is a repository for PHP extensions. To install PHP extensions from PCEL, you can use the command pcel install EXTENSTION_NAME_HERE To…
apcu-panel provide GUI to monitor APCu cache. To install apcu-panel on CentOS, run yum install apcu-panel The package provides following files [root@localhost…
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: OC\HintException: [0]:…
To clear the Laravel cache, run the command You can also delete compiled files from Back to Laravel
OpenSSL command can be used to verify if an SSL certificate matches a private key file. You need to find the checksum…
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, the number…
To redirect a site to URL with www using PHP, you can use the following PHP code Add this code in your…