Installazione

Questa estensione » PECL non è incorporata nel PHP.

Informazioni per l'installazione di questa estensione PECL possono essere trovate nel capitolo del manuale intitolato Installazione delle estensioni PECL. Informazioni aggiuntive come nuove release, download, file sorgenti, informazioni del manutentore e un CHANGELOG possono essere trovate qui: » https://pecl.php.net/package/ui.

Windows binaries (DLL files) for this PECL extension are available from the PECL website.

add a note

User Contributed Notes 1 note

up
-2
fabappsforall at gmail dot com
9 months ago
This is how I got UI to work on my 64-bit Windows 10 local computer:Step 1: I went to https://pecl.php.net/package/ui and selected the v2.0.0 DLL for WindowsStep 2: I downloaded the version 2.0.0 zipfile for TS and x64Step 3: I created a folder for the extracted files at C:\php_extStep 4: I had DLL-location-related issues with my current version 8.3.11. So I downloaded PHP 7.1.7 from https://windows.php.net/downloads/releases/archives/. Step 5: I extracted the contents from the zipfile and installed in a separate folder called C:\php7.1.7Step 6: Inside Windows=>Control Panel=>System=>Advanced system settings=>Environment Variables, I added C:\php7.1.7 and C:\php_ext into the Administrator Path environment variableStep 7: I also added C:\php7.1.7 and C:\php_ext into the System variables Path environment variableStep 8: I copied C:\php7.1.7\php.ini-production to C:\php7.1.7\php.iniStep 9: In C:\php7.1.7\php.ini I added the entry: extension_dir = "C:\php_ext"Step 10. In C:\php7.1.7\php.ini I added the entry: extension=php_ui.dllStep 11. I ran php --ri ui. It outputted: ui support => enabledStep 12: I ran "php C:\php_ext\gallery.php" and the gallery Windows GUI app worked fine!
To Top