Error with php_http: the program can't start because php_propro.dll is missing from your computer
NickName:edi9999 Ask DateTime:2013-12-01T22:12:53

Error with php_http: the program can't start because php_propro.dll is missing from your computer

I'm trying to install php_http on Windows.

My Config is:

PHP Version => 5.3.13                                           
Build Date => May 14 2012 02:46:11  
Compiler => MSVC9 (Visual C++ 2008) 
Architecture => x64                 
Thread Safety => enabled  

So I finaly found a version of the php_http.dll that is compiled with MSVC9, with x64 architecture and with thread safety enabled. Howewer, now when I try to run a php script I get: The program can't start because php_propro.dll is missing from your computer. I know php_http depends on php_propro, but I can't find such a dll on the internet at all.

Copyright Notice:Content Author:「edi9999」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/20313044/error-with-php-http-the-program-cant-start-because-php-propro-dll-is-missing-f

Answers
Wagner_SOFC 2013-12-01T19:28:50

When I try to build my own local server under Windows. I got the same issue.\nTo fix that, I installed the Visual C++ Redistributable for Visual Studio 2012. I never see again this error. \n\nSo, for me, the solution in your case should be almost the same.\nYou have mention the MSVC9 with a x64 architecture. So, you need to install the Microsoft Visual C++ 2008 Redistributable Package (x64).\n\n\n\nSource : The PHP website.\nLook at the block of information (on the left) which have the (main) title Which version do I choose ?\nInside you'll find note about the VC9 and VC11.",


JBlond 2013-12-14T08:48:47

You can find a version of that dll on http://www.apachelounge.com/viewtopic.php?p=26283#26283",


More about “Error with php_http: the program can't start because php_propro.dll is missing from your computer” related questions

Error with php_http: the program can't start because php_propro.dll is missing from your computer

I'm trying to install php_http on Windows. My Config is: PHP Version => 5.3.13 Build Date => May 14 2012 02:46:11 Compiler => MSVC9 (Visual C++

Show Detail

How to get php_http extension working on PHP version 5.4 with Windows?

Anyone know how I can get the php_http extension working on php 5.4.5 on windows? I am trying to upgrade to PHP 5.4.5 on my windows machine (running off IIS). The project I am working on has a

Show Detail

cant resolve httprequest fatal error

i am trying to create server side page in php on which i have to get response from some website through http request. i recieved the error HttpRequest not found. trying to fix this error i was able...

Show Detail

laravel install jenssegers/mongodb error ext-mongodb

guy i try to install mongodb in laravel, so i import mongdo.dll already, but still error. Problem 1 - jenssegers/mongodb[v3.8.0, ..., 3.8.4] require mongodb/mongodb ^1.6 -> satisfiable by mongodb/

Show Detail

How can the OpenCL error code -44 CL_INVALID_PROGRAM appear if program is valid?

In some seemingly random, but reproducible occasions, program.build(...) returns error -44 which means CL_INVALID_PROGRAM, so program is supposed to be invalid. However program is declared in the l...

Show Detail

Can I restart a program when I get an error?

I'm making a bot in discord.py, and I want to add a function that restarts the program if there is an error that would normally stop it. Specifically, something that restarts the bot when I get a

Show Detail

This is a program for creating thread, but showing error can anyone suggest?

Thread Program This program is showing a error marked in the image as red underline. I cant understand that why it occurred. Can anyone suggest me anything?

Show Detail

Error in lex program?

I was making this very simple lex program (just an introductory program). But on compiling lex.yy.c, I am getting this error as: inToPostfix.l:26: error: ‘struct stackoperand’ has no member named...

Show Detail

Executable error : Can't start program

After finishing my C++ program (on windows os using codeblocks)(using libcurl) when i try to launch the program from the executable it displays an error saying that i can't start the program because

Show Detail

Can anyone explain what is the error in the following program?

Can anyone explain what is the error in the following program ? #include<stdio.h> int main() { int a = 10, b = 20; (a, b) = 30; // Since b is l-value, this statement is valid in C++, but...

Show Detail