quote:
------------------------------------------------------------------------------
Notice: file(): Unable to find the wrapper "https" - did you forget to
enable it when you configured PHP? in
C:\Inetpub\vhosts\xxxxxxxxxxxxxx.eu\httpdocs\test_file2.php on line 10
Warning: file(https://www.saferpay.com/hosting/CreatePayInit.asp): failed
to open stream: Invalid argument in
C:\Inetpub\vhosts\xxxxxxxxxxxxxx.eu\httpdocs\test_file2.php on line 10
Notice: file(): Unable to find the wrapper "https" - did you forget to
enable it when you configured PHP? in
C:\Inetpub\vhosts\xxxxxxxxxxxxxx.eu\httpdocs\test_file2.php on line 13
Warning: file(https://www.saferpay.com/hosting/CreatePayInit.asp): failed
to open stream: Invalid argument in
C:\Inetpub\vhosts\xxxxxxxxxxxxxx.eu\httpdocs\test_file2.php on line 13
Warning: join(): Bad arguments. in
C:\Inetpub\vhosts\xxxxxxxxxxxxxx.eu\httpdocs\test_file2.php on line 13
------------------------------------------------------------------------------
Our php-info file shows us this:
quote:
------------------------------------------------------------------------------
Registered PHP Streams php, http, ftp, compress.zlib
------------------------------------------------------------------------------
We think thats the fault. How can we get "https" and "ftps" into "Registered
PHP Streams"?
We hope for your help.
Thanks in advance.
- Frank
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
The extension is already loaded in the php.ini File.
I don't think this is the error.
php_openssl.dll requires one or more dll's to load. Can't remember the
names off hand, but it's something like sas*32.dll. If these are not found
the extension will not load. You can check phpinfo() to see if it loads.
- Frank
Thursday, January 4, 2007, 9:51:30 AM, you wrote:
> php_openssl.dll requires one or more dll's to load. Can't remember
> the names off hand, but it's something like sas*32.dll. If these are
> not found the extension will not load. You can check phpinfo() to
> see if it loads.
libeay32.dll
A good resource to check PHP extension dependencies.
http://php.mirrors.powertrip.co.za/manual/en/install.windows.extensions.php
--
TBUDL/BETA/DEV/TECH Lists Moderator / PGP 0x5D167202
__ ____ ____ ____ Geocaching: http://gps.PCWize.com
( ) ( ___)(_ _)( ___) TBUDP Wiki Site: http://www.PCWize.com/thebat/tbudp
)(__ )__) _)(_ )__) Roguemoticons & Smileys: http://PCWize.com/thebat
(____)(____)(____)(__) PHP Tutorials and snippets: http://www.DevTek.org
99 little bugs in the code, 99 bugs in the code,
fix one bug, compile it again...
101 little bugs in the code....
To be exact, you're looking for the following libraries
ssleay32.dll
libeay32.dll
Furthermore, you're looking for those to be in the %SYSTEMROOT% directory.
The following link usually has an updated version of the files you'll
need to run ssl on windows.
http://hunter.campbus.com
I have had the same question for about a year now. A year and a half
ago, I managed to get a copy of Php4 that has https and ftps as
registered streams, but I can not figure out how to do the same in Php5.
Loading the openssl extension and putting ssleay32.dll and libeay32.dll
into %SYSTEMROOT% (WINDOWS/SYSTEM32) has not helped. In fact, I still
have the openssl extension commented out in the version 4 php.ini file
and https and ftps are registered streams. (I believe I got that Php4
from the xampp package, but I am not really sure.)
If you figure this one out, I'd love to know the answer. My best guess
is that it takes a "custom" compilation of Php.
--
*****************************
Chuck Anderson • Boulder, CO
http://www.CycleTourist.com
*****************************
Registered PHP Streams php, file, data, http, ftp, compress.zlib
and when I load the openssl extension I get
Registered PHP Streams php, file, data, http, ftp, compress.zlib, https,
ftps
I have all the PHP files in c:\php5, including the extra DLL's. I'm
running CGI for this test. (using the binaries from my site
http://kromann.info/php.php)
- Frank
I've found this to be a very good tutorial for installing Apache with
SSL on Windows. You'll have to do some tweaking to adjust for apache
2.2.3. Also, If you can help it, DON'T USE INSTALLERS! Apache uses PHP
as a module without using a PHP installer.
If you install everything correctly, you shouldn't see ANY new programs
in your "Add/Remove Programs" list
Anyways, here's the link:
"Cory Collier" <coryc...@corycollier.com> wrote
> I've found this to be a very good tutorial for installing Apache with SSL
> on Windows. You'll have to do some tweaking to adjust for apache 2.2.3.
> Also, If you can help it, DON'T USE INSTALLERS! Apache uses PHP as a
> module without using a PHP installer.
> If you install everything correctly, you shouldn't see ANY new programs in
> your "Add/Remove Programs" list
>
> Anyways, here's the link:
>
> http://www.neilstuff.com/apache/apache2-ssl-windows.htm
Sorry guys but I forgot to tell that we do not use Apache, we use the
Windows integrated IIS with php.
Cheers,
Luis Ferro
Stelios Sakalis escreveu: