• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Issue X2CRM installation Failed

CobraArbok

Regular Pleskian
I'm trying to install X2CRM with Softaculous, but the installation keeps crashing at 6%.
So I wanted to install it manually and I launch their requirements.php, but this warn me of problems.
How can I solve them?

This is the message:
Unfortunately, your server does not meet the minimum system requirements;
  • Usage of the system temporary directory, according to "sys_get_temp_dir", is either unknown or not permitted. Google integration will not work.
  • ssh2 extension: required but missing. The FileUtil class needs the SSH2 extension to use SSH as a file operation method.
  • The path defined in session.save_path (/var/lib/php/sessions) is not writable.
 
I've installed: plesk-php-71-dev, libc6-amd64, libssh2-1-dev, zlib1g-dev.
(I hope they are the right packages)

Then the pecl is command not found.
 
Check /opt/plesk/php/7.1/bin/pecl
It should be there if package plesk-php-71-dev correctly installed.
In this folder, with ls I see pecl, but then the command is always not found.
Also simply pecl is command not found.
 
Well, here is instruction for PHP7.1 and CentOS. Adapt it for your Ubuntu packages name case.

# yum install libssh2-devel make gcc plesk-php71-devel
# wget http://pecl.php.net/get/ssh2-1.1.2.tgz
# tar -xzf ssh2-1.1.2.tgz
# cd ssh2-1.1.2/
# /opt/plesk/php/7.1/bin/phpize
# ./configure --with-php-config=/opt/plesk/php/7.1/bin/php-config
# make
# make install
# echo "extension = ssh2.so"> /opt/plesk/php/7.1/etc/php.d/ssh2.ini
# plesk bin php_handler --reread

As result we have loaded ssh2 module for PHP7.1:

# /opt/plesk/php/7.1/bin/php -m | grep ssh2
ssh2
 
Back
Top