How activate SSL and EasyPHP 17 under php7.2 and php7.3 - easyphp

How to activate OpenSSL and Sodium in PHP 7.2 and PHP 7.3 for EasyPHP 17 and Windows 10?
In PHP 7.1 I had to change php.ini and remove ; at the line
extension=php_openssl.dll in order to activate OpenSSL.
In PHP 7.2?
In PHP 7.3?
Thanks for your help.

You can enable the OpenSSL extension the same way as in 7.1. In your php.ini add/uncomment the line:
extension=php_openssl
However, as #Franck mentioned, it will not work straight away for PHP 7.2 and 7.3 as there is an incompatibility with Apache 2.4.25 x86 (the default version in EasyPHP 17).
You need to update your Apache to a newer version to make it work. (I tried with Apache 2.4.39 x86 and it works fine).

Related

How to add additional PHP versions to EasyPHP DevServer

I have EasyPHP DevServer 17 up and running on my Windows 10 machine. I currently have my EasyPHP environment installed within my C:\EasyPHP directory. I can see from the server settings that I have two options for selecting my PHP verions:
5.6.30 x86 and 7.1.3 x86
How can I add a third option to the list? for PHP 7.3 x86?
Do I have to re-install an entirely new instance of EasyPHP DevServer to make this happen?
Can I simply download a thread-safe PHP7.X package online and stick it somewhere in the eds-binaries directory and restart?
I have made several attempts, but all result in failure. What would be the best technical steps?
Thanks!

Installing APCU for PHP 7 on windows server 2016

i am using xampp 3.2.2 and i want to install Installing APCU for PHP 7 on windows server 2016 . i have tried a number of things and am still not getting any APC configuration information in my phpinfo page.

MongoDB (3.2) PHP Driver v1.1 doesn't install on PHP 5.5

I have installed Windows Server 2008 64-bit, without SSL support for Windows 10 & I saw that the version of that is 3.2 ...
So I wanted to download MongoDB PHP Driver, I saw that I should download PHP Driver DLLs that are 1.1 or more. I downloaded that latest one for PHP 5.5 with Safe Thread (It is enabled in my PHP). I put it in (ext) folder & I wrote extension=php_mongodb.dll in PHP.ini ... But When I run phpinfo() function, It doesn't show MongoDB in extensions.
I have searched & tried very much but It didn't work, So I asked here.

PHP 5.3.29 on Ubuntu 16.04 in order to run Joomla 1.5 locally

I'm working on a Joomla 1.5 website, which was developed with PHP 5.3. Now I'm having some incompatibilities issues with some components.
My machine runs Ubuntu 16.04.
The version of Joomla is 1.5.
PHP versions are 5.6 and 7.0 (apache is configured to run PHP 5.6)
I can't find a way to download and install it. The apt command only shows 5.5, 5.6, 7.0 and 7.1 PHP versions.
Can anyone help me?
I have joomla 1.5 on a website running. My config shows that PHP 5.4.16 is in use. Therefore, why dont you try it with PHP 5.4 and get it from the download page:
http://php.net/releases/
If you have troubles to install it on your computer. Take a look here:
https://serverfault.com/questions/353550/how-to-install-old-php-version
The link explains how you install a old php version on linux. Btw.: in the link it is only explained how to replace a PHP version. But it is possible to run different versions on a server.

How to inspect objects in Netbeans debugger and x-debug

I'm using Netbeans and xdebug with php 5.3 to debug my application and I can't inspect objects properties in the variables panel
only CLASSNAME appears
is there a special setting in netbeans or xdebug ?
any one encountered thi situation?
I'm pretty sure I coudld debug my objects before but I upgraded to php 5.3 and so the php.ini changed, but I copied my xdebug settings over from my old php.ini
any help appreciated
thanks
You have an old Xdebug. CLASSNAME has been removed since version Xdebug 2.1.1 (release March 28th, 2011). Please upgrade to the latest version and the problem should be gone.
I have tried PhP versions 5.3.8 and 5.3.10 and Xdebug versions 2.1.1, 2.1.2 and 2.1.4 as well as running under window XAMP and WAMP servers and remote XDEBUG under Linux (Ubuntu) server and still experience the same problem, values for object variables are generally not shown though some very rare times they do show after flashing many times "Evaluating" under value in the Variables window.