Laragon 3.1.4 Released - supports PHP-7.2
-
- Released: 2017-08-21
- Supported PHP-7.2 new extension model: https://forum.laragon.org/topic/609/php-7-2-drop-down-menu-extension-enable-disable-does-not-work
- Made the PHP Extensions Menu cleaner: Removed
php_
prefix and.dll
just like PHP-7.2
Image:
-
Is there an easy way to update from 3.1.2 to 3.1.4 or is it a full re-download?
-
@JapSeyz: It is safe to download and overwrite your current 3.1
I will think about making an updater which will be easier to update
-
Tip for other people who can't get their extensions to enable/disable at all
edit php.ini
change extension_dir
from this:
extension_dir = "C:/laragon/bin/php/php-7.2.19-Win32-VC15-x64/ext"
to this:
extension_dir = "C:\laragon\bin\php\php-7.2.19-Win32-VC15-x64\ext"
That worked for me, and now the extension menu works perfectly as expected
I am running Laragon Full 4.0.15 190704
php-7.2.19-Win32-VC15-x64
on
Windows 10I was testing my results before and after, using this simple script:
echo ("<hr><pre>"); print_r(get_loaded_extensions()); echo ("</pre><hr>"); phpinfo();