PhpStorm with EasyPHP Devserver - PHP Warning: Failed loading Zend extension

118 views Asked by At

Getting the following error with PhpStorm (2022.1.2) with EasyPHP Devserver (17.0):

PHP Warning:  Failed loading Zend extension '' (tried: E:\Projects\PHP Migration\EasyPHP-Devserver-17\eds-binaries\php\php7427vc15x86x220629181102\ext\ (The specified module could not be found.), E:\Projects\PHP Migration\EasyPHP-Devserver-17\eds-binaries\php\php7427vc15x86x220629181102\ext\php_.dll (The specified module could not be found.)) in Unknown on line 0
[Thu Jun 30 16:23:02 2022] PHP 7.4.27 Development Server (http://localhost:8080) started

In the php.ini:

zend_extension = ""
xdebug.default_enable=1
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_autostart = false
xdebug.dump_globals=1
xdebug.dump=COOKIE,FILES,GET,POST,REQUEST,SERVER,SESSION
xdebug.dump.SERVER=REMOTE_ADDR,REQUEST_METHOD,REQUEST_URI
xdebug.show_local_vars=1
xdebug.show_mem_delta=1
xdebug.collect_includes=1
xdebug.collect_vars=1
xdebug.collect_params=4
xdebug.collect_return=1
xdebug.auto_trace=0
xdebug.trace_options=0
xdebug.trace_format=0
xdebug.trace_output_dir="E:\Projects\PHP Migration\EasyPHP-Devserver-17\eds-binaries\xdebug\trace"
xdebug.trace_output_name="trace.%t"
xdebug.profiler_enable=0
xdebug.profiler_append=1
xdebug.profiler_enable_trigger=1
xdebug.profiler_output_dir="E:\Projects\PHP Migration\EasyPHP-Devserver-17\eds-binaries\xdebug\profiler"
xdebug.profiler_output_name="cachegrind.out.%s.%t"

I also have Xdebug Manager 1.7 enabled for EasyPHP Devserver.

UPDATE I have the above settings in the php.ini based on advice at:

https://github.com/CemDemirkartal/How-to-Install-Free-Extensions-for-EasyPHP-Devserver

In particular:

"zend_extension = "" will be created by EasyPHP directly. (Tested)"

So why I do I see this warning?

0

There are 0 answers