Page 1 of 1

Uaseco & Wamp => php_ftp not loaded

Posted: 20 Apr 2018, 14:37
by Urbanspirit
Hello everyone !
i'm trying to implemen Uaseco on my own dedicated server.
I've followed everything ont the documentation about it but i've still got this error :

Code: Select all

Page de codes active : 65001
[2018-04-20 13:28:54] ###############################################################################
[2018-04-20 13:28:54] [UASECO] Initializing...
[2018-04-20 13:28:54] [PHP] Checking for required and wanted PHP extensions...
[2018-04-20 13:28:54] [PHP] > Checking "Exchangeable Image Information" (exif): OK!
[b][2018-04-20 13:28:54] [PHP] > Checking "File Transfer Protocol" (ftp): extension not loaded, it is REQUIRED to enable this extension.. See "#" for installation details.[/b]
[2018-04-20 13:28:54] [PHP] > Checking "ICONV character set conversion facility" (iconv): OK!
[2018-04-20 13:28:54] [PHP] > Checking "Image Processing and GD" (gd): OK!
[2018-04-20 13:28:54] [PHP] > Checking "JavaScript Object Notation" (json): OK!
[2018-04-20 13:28:54] [PHP] > Checking "LibXML" (libxml): OK!
[2018-04-20 13:28:54] [PHP] > Checking "Multibyte String" (mbstring): OK!
[2018-04-20 13:28:54] [PHP] > Checking "MySQL Improved" (mysqli): OK!
[2018-04-20 13:28:54] [PHP] > Checking "SimpleXML" (SimpleXML): OK!
[2018-04-20 13:28:54] [PHP] > Please enable the required PHP extensions and try again!
Appuyez sur une touche pour continuer...
I'm using wampserver 3 with PHP 7.0.29.
PHP_FTP is enabled on php.ini and even shown like it on the Wamp's menu.

Code: Select all

extension=php_bz2.dll
extension=php_curl.dll
extension=php_com_dotnet.dll
;extension=php_enchant.dll
extension=php_fileinfo.dll
extension=php_ftp.dll
extension=php_gd2.dll
extension=php_gettext.dll
extension=php_gmp.dll
extension=php_intl.dll
extension=php_imap.dll
;extension=php_interbase.dll

Code: Select all

; The MIBS data available in the PHP distribution must be installed.
;extension=php_snmp.dll

extension=php_soap.dll
extension=php_sockets.dll
extension=php_sqlite3.dll
;extension=php_sysvshm.dll
;extension=php_tidy.dll
extension=php_xmlrpc.dll
extension=php_xsl.dll
extension=php_ftp.dll
I've tried to restart everything. I've still got this error.

I don't know why...
Did you guys already have this issue ?

Re: Uaseco & Wamp => php_ftp not loaded

Posted: 20 Apr 2018, 15:42
by reaby
Make sure you edit right file...

If you edit the php.ini using menu, it affects only apache instances.

You can find the right php.ini file you need to edit using this:

So start command prompt (windows-key + s and write: cmd )
copy-paste following line to command prompt:

Code: Select all

php -r "echo php_ini_loaded_file();"
then make the edits to the file you see, it should work now.

Re: Uaseco & Wamp => php_ftp not loaded

Posted: 21 Apr 2018, 10:42
by Urbanspirit
Ho gosh ! You saved my life !
thanks a lot !

Re: Uaseco & Wamp => php_ftp not loaded

Posted: 21 Apr 2018, 11:36
by undef.de
Added a small helper for the next release:

Code: Select all

[2018-04-21 12:34:56] [PHP] PHP is using "/etc/php/7.1/cli/php.ini"

Code: Select all

[2018-04-21 12:34:56] [PHP] Checking for required PHP extensions...
[2018-04-21 12:34:56] [PHP] PHP is using "/etc/php/7.1/cli/php.ini"
[2018-04-21 12:34:56] [PHP] » Checking "Exchangeable Image Information" (exif): OK!
[2018-04-21 12:34:56] [PHP] » Checking "File Transfer Protocol" (ftp): OK!
[2018-04-21 12:34:56] [PHP] » Checking "ICONV character set conversion facility" (iconv): OK!
[2018-04-21 12:34:56] [PHP] » Checking "Image Processing and GD" (gd): OK!
[2018-04-21 12:34:56] [PHP] » Checking "JavaScript Object Notation" (json): OK!
[2018-04-21 12:34:56] [PHP] » Checking "LibXML" (libxml): OK!
[2018-04-21 12:34:56] [PHP] » Checking "Multibyte String" (mbstring): OK!
[2018-04-21 12:34:56] [PHP] » Checking "MySQL Improved" (mysqli): OK!
[2018-04-21 12:34:56] [PHP] » Checking "SimpleXML" (SimpleXML): OK!
:thumbsup: