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…
Yarn is a package manager for JavaScript like npm. It is commonly used for managing dependencies for Node.js applications, but it can…
PHP cURL module allows you to connect to remote websites and API endpoints to exchange data. To see if you have php-curl…
When starting a gridsome project on Ubuntu 20.04 with Node.js version v18.10.0, it failed with the error message “error:03000086:digital envelope routines::initialization error”.…
You can start Next.js development server with the command npm run dev This will start the development server on port 3000. boby@sok-01:/www/learn/nextjs/todo…
Yarn is a javascript package manager like npm. Import the GPG key curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg –dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg…
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…
To change the URL of a Drupal website, edit the file sites/default/settings.php Find the line $base_url = ‘https://www.your-current-domain’; // NO trailing slash!…
Once you have dotnet SDK installed, you can create your first program. To create a console project run dotnet new console -o…
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…