• The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

FreeBSD 5.3 Perl port problem

D

deneme

Guest
Datacenter says that

"FreeBSD 5.3 an older version of Perl in the ports collection. I can't get Plesk to install without the correct version of Perl. "


Is it true?
What is the solution?
 
Please - don't post your questions more than once... But again... Update your ports collection - this will get you Perl 5.8.7 which is expected by Plesk.
 
I found solution

The way I would do this is:

cd /usr
rm -R ports
fetch ftp://ftp.freebsd.org/pub/FreeBSD/p...ts/ports.tar.gz
tar zxvf ports.tar.gz && rm ports.tar.gz

Then follow through the instructions to upgrade perl


1. cd /usr/ports/lang/perl5.8
2. make deinstall (removes perl5.8.6)
3. make reinstall (hurray! now we have 5.8.7)



--------------------
Sorry full ports path is here


cd /usr
rm -R ports
fetch ftp://ftp.freebsd.org/pub/FreeBSD/ports/ports/ports.tar.gz
tar zxvf ports.tar.gz && rm ports.tar.gz

cd /usr/ports/lang/perl5.8
make deinstall
make reinstall
 
Back
Top