If you are using Drush (the command line tool for Drupal), you might come across this error on certain Linux distributions: This error is caused by an incompatibility between Drush and the Linux distribution used. Drush will still be functional, however these error messages will clutter your console. In order to fix this, you can… Continue reading Fix unexpected end of file bug with Drush on RHEL8/CentOS 8 / AlmaLinux
Category: PHP
Call to undefined function mailparse_msg_create()
If you get the following error message in PHP, it means the mailparse PHP extension is missing. 1. Install mailparse via PECL You can install the mailparse extension via PECL, using the following command: Note: if you get an error saying /bin/sh: re2c: command not found then look over here for the solution on how… Continue reading Call to undefined function mailparse_msg_create()
How to enable PHP proc_open on DirectAdmin
By default, a new installation of DirectAdmin will be configured with the so called “PHP safe mode” enabled. This is a default security feature which disables the use of certain commands such as “proc_open”. This results in the following error messages: In order to enable the proc_open command you need to disable the PHP safe… Continue reading How to enable PHP proc_open on DirectAdmin