• 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.

Question PHP 5.5.15 with Plesk Obsidian 18.0.45

Seahunter

New Pleskian
Server operating system version
Debian 10.12
Plesk version and microupdate number
Plesk Obsidian 18.0.45
Hello Forum,
I have a problem.

I want to run a website with PHP 5.5.15 on my virtual server (I know the security problems, but the site has to stay on the net for another year before it is replaced.
Operating system
Debian 10.12

Plesk Obsidian version 18.0.45

Since PHP 5.5.15 is not available in the Plesk selection menu and cannot be installed via the installer, I have to find a solution via SSH.

I have access to the server via Putty and tried the following:

First I downloaded the PHP version

localhost:~# cd /usr/local/src/
localhost:/usr/local/src# wget http://de1.php.net/get/php-5.5.15.tar.gz/from/this/mirror -O php-5.5.15.tar.gz
localhost:/usr/local/src# tar xf php-5.5.15.tar.gz


Then installed the packages

localhost:~# apt-get install make gcc libxml2-dev

localhost:/usr/local/src# cd php-5.5.15/

localhost:/usr/local/src/php-5.5.15# mkdir -p /usr/local/php-5.5.15

localhost:/usr/local/src/php-5.5.15# ./configure '--with-libdir=lib64' '--cache-file=../config.cache' '--prefix=/usr/local/php-5.5.15' '--with-config-file-path=/usr/local/php-5.5. 15/etc' '--disable-debug' '--with-pic' '--disable-rpath' '--enable-fastcgi' '--with-bz2' '--with-curl' '--with-freetype-dir=/usr/local/php-5.5. 15' '--with-png-dir=/usr/local/php-5.5.15' '--enable-gd-native-ttf' '--without-gdbm' '--with-gettext' '--with-gmp' '--with-iconv' '--with-jpeg-dir=/usr/local/php-5.5. 15' '--with-openssl' '--with-pspell' '--with-pcre-regex' '--with-zlib' '--enable-exif' '--enable-ftp' '--enable-sockets' '--enable-sysvsem' '--enable-sysvshm' '-- enable-sysvmsg' '--enable-wddx' '--with-kerberos' '--with-unixODBC=/usr' '--enable-shmop' '--enable-calendar' '--without-sqlite3' '--with-libxml-dir=/usr/local/php-5. 5. 15' '--enable-pcntl' '--enable-mbstring' '--enable-mbregex' '--with-gd' '--enable-bcmath' '--with-xmlrpc' '--with-mysql=/usr' '--with-mysqli' '--with-snmp' '- -enable-soap' '--with-xsl' '--enable-xmlreader' '--enable-xmlwriter' '--enable-pdo' '--with-pdo-mysql' '--with-pdo-pgsql' '--with-pear=/usr/local/php-5. 5.15/pear' '--with-mcrypt' '--enable-intl' '--without-pdo-sqlite' '--with-config-file-scan-dir=/usr/local/php-5.5.15/php.d'

Up to this point everything has worked.

But when I enter make I get the message: No targets specified and no makefile found.


localhost:/usr/local/src/php-5.5.15# make
localhost:/usr/local/src/php-5.5.15# make install

Does anyone have any idea why this is stuck?

Thanks for your help
 
It looks like the 'configure' command was not completed successfully and did not create the necessary Makefiles.
Could you please show a few last lines of the output of the './configure....' command?
 
Thanks for your help



configure: error: Please reinstall the libcurl distribution -

easy.h should be in <curl-dir>/include/curl/

 
configure: error: Please reinstall the libcurl distribution -

easy.h should be in <curl-dir>/include/curl/
Install missing headers with:

# apt-get install libcurl4-gnutls-dev

and repeat ./configure....
 
Fix it with

# cd /usr/local/include
# ln -s /usr/include/x86_64-linux-gnu/curl curl
 
Back
Top