Program Cant Start Because PHP5.Dll Is Missing

program cant start because php5.dll is missing

if your php version is Non-Thread-Safe (nts)
you must use php extension with format example: extension=php_cl_dbg_5_2_nts.dll
else if your php version is Thread-Safe (ts)
you must use php extension with format example: extension=php_cl_dbg_5_2_ts.dll
(notice bolded words)

So if get error like above. Firstly, check your PHP version is nts or ts, if is nts.

Then check in php.ini whether has any line like zend_extension_ts="C:\xammp\php\ext\php_dbg.dll-5.2.x" choose right version of php_dbg.dll-5.2.x from it homepage (google for it).
Change from zend_extension_ts to zend_extension_nts.

Hope this help.

Connecting to SQL Server with PHP: php5.dll missing?

Can you use phpinfo() to see where PHP thinks the extensions should be / are being called from?
the file you downloaded from google php5.dll was thread-safe version or non thread-safe ? do check with both of them

try renaming or removing php.ini file ?

Memcache on windows, error php5.dll not found

Old question, but are you sure the php_memcache.dll you downloaded is a thread-safe/unsafe compatible with your PHP install?

Look in your PHP directory: if there's a "php5ts.dll" you have a thread-safe PHP, so you need a thread-safe "php_memcache.dll" too, and vice-versa.

I had the same problem, with a diferent php_.dll, and the error message about php5.dll confused the heck out of me for several hours too, but it was just a matter of downloading the right php_.dll.

The program can't start because php7.dll is missing from your computer

The issue is most likely due to the extension(php_rdkafka.dll) that you are trying to install, if your php version is thread safe(ts) then ensure that you have downloaded and installed an extension which is thread safe otherwise use a non-thread safe(nts) extension. In addition to that also ensure that both the extension and php are of the same architecture i.e x86 or x64.

Use php_rdkafka.dll for php version 7.1.

You can verify thread safe status and architecture of the installed php in phpinfo page(see below);

Architecture on phpinfo page

Thread Safe Status

phpunit - Windows php.exe error

Try adding your php directory and your php extensions directory to your PATH environment variables.

cannot load php5apache2_2.dll

First you must downlaod de .dll file (php5apache2_2.dll)
then put it in your extensions directory.

Then edit your php.ini file, find de text:

;extension=php5apache2_2.dll

// and change y to
extension=php5apache2_2.dll

if the text is not present put the line yourself.
Then restart apache and it should load your extension.

PD: you can see where your extensions directory is located looking
for the text "extension_dir" in your php.ini, sometimes looks like:
extension_dir = C:\php\extensions

Hope this help you, if not please paste the error here, you can find
an error log file in apache/error/error.log or something like that.



Related Topics



Leave a reply



Submit