I have a similar problem with n8n. I want to add the following to nginx directives:
location / {
proxy_pass http://127.0.0.1:5678;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host...
I run a VPS with Ubuntu 20.04 OS and Plesk Web Admin Edition. I now want to install and try out the n8n automation platform via Docker. This requires Python to be installed. I did this according to the following instructions. Except for point 6. I cannot find the path Service Plans > Hosting...
It's embarrassing. I made the same mistake I did with PHP 8.0. :rolleyes:
The php.ini was the cause. Here are the steps for the installation:
apt install memcached autoconf automake gcc libmemcached-dev libhashkit-dev pkg-config plesk-php*-dev zlib1g-dev
/opt/plesk/php/8.2/bin/pecl install...
I was able to install memcached with this work around. This was possible for PHP 8.0 and also for version 8.1. PHP 8.2 however makes problems.
After “service plesk-php82-fpm restart” comes the following message:
Job for plesk-php82-fpm.service failed because the control process exited with error...
That was a difficult birth. I uninstalled memcached and started from scratch. The php.ini was the cause. Here are the steps for the installation:
apt install memcached autoconf automake gcc libmemcached-dev libhashkit-dev pkg-config plesk-php*-dev zlib1g-dev
/opt/plesk/php/8.0/bin/pecl install...
This is the result:
# /opt/plesk/php/8.0/bin/php -m | grep memc
PHP Warning: PHP Startup: Unable to load dynamic library 'memcached.so' (tried: /opt/plesk/php/8.0/lib/php/modules/memcached.so (/opt/plesk/php/8.0/lib/php/modules/memcached.so: cannot open shared object file: No such file or...
It's already installed. This is the message:
# apt install plesk-php80-dev
plesk-php80-dev is already the newest version (8.0.13-ubuntu.20.04.211119.1249).
0 upgraded, 0 newly installed, 0 to remove and 5 not upgraded.
# /opt/plesk/php/8.0/bin/pecl install memcached
pecl/memcached is already...
I used the following instructions for installing memcached and changed 7.4 to 8.0:
apt install memcached autoconf automake gcc libmemcached-dev libhashkit-dev pkg-config plesk-php*-dev zlib1g-dev
/opt/plesk/php/8.0/bin/pecl install memcached
echo "extension=memcached.so" >...
I've installed PHP 7.4 according to these instructions. I have also read that Plesk 18 (Obsidian) doesn't use OS PHP. So I uninstalled PHP 7.2 because it's outdated. But now I have no command-line interpreter defined. How can I do this for PHP 7.4?
Ubuntu 18.04.3
Plesk Obsidian 18.0.33
Thanks a lot, but it's already in the file:
<Directory "/usr/share/plesk-service.localdomain">
AllowOverride None
Options None
Require host localhost
Order deny,allow
Deny from all
Allow from localhost
</Directory>