php-windows Digest 24 Feb 2002 13:21:53 -0000 Issue 1015
Topics (messages 12238 through 12242):
windows extension dlls
12238 by: R0bin
12241 by: alain samoun
Re: Merging Arrays
12239 by: R0bin
Re: Bad char Translation
12240 by: R0bin
Opening sockets
12242 by: LaserJetter
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
I rencently installed the windows version of php4,
and it is not seening all the extra extensions, which i
extracted from the zip file, i have tried taking the ;'s
away from the list in php.ini, but every time i restart
apache and try to load a .php file from my local server,
all i hear is the error noise WindowsME makes, and the page
refuses to load. i have look in most of the faqs on the
site to no avail.
please help.
from R0bin
--- End Message ---
--- Begin Message ---
Assuming that you did not have installed php previously in this computer
(This is important as most of the problem then come from a previous php.ini
file or/and from dll extensions that have not been compiled with your new
version.):
- Check if your include directory in php.ini points to a real directory in
your system, where the dlls should be.
- Some extensions dll need more installation files in order to work.
Finally:
- Test phpinfo() at the command line and see what happens.
A+
Alain
-----Original Message-----
From: R0bin [mailto:[EMAIL PROTECTED]]
Sent: Saturday, February 23, 2002 9:37 AM
To: [EMAIL PROTECTED]
Subject: [PHP-WIN] windows extension dlls
I rencently installed the windows version of php4,
and it is not seening all the extra extensions, which i
extracted from the zip file, i have tried taking the ;'s
away from the list in php.ini, but every time i restart
apache and try to load a .php file from my local server,
all i hear is the error noise WindowsME makes, and the page
refuses to load. i have look in most of the faqs on the
site to no avail.
please help.
from R0bin
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- End Message ---
--- Begin Message ---
im not saying this will work, but on the PHP website
it has a print_r ( array );
which prints ever element of an array.
"<pre>
<?php
$a = array ('a' => 'apple', 'b' => 'banana', 'c' => array
('x','y','z'));
print_r ($a);
?>
</pre>
which will output :
<pre>
Array
(
[a] => apple
[b] => banana
[c] => Array
(
[0] => x
[1] => y
[2] => z
)
)
</pre>
Remember that print_r() will move the array pointer to the end. Use reset()
to bring it back to beginning."
(this was copy/pasted from the php.net website)
--- End Message ---
--- Begin Message ---
Maybe the win2k console doesnt have support for
such characters as é or â, or being a microsucks product
saving it under linux and windows goes
"Bleh! an alternative OS, kill it!".
try loading it in a .php web page file and
using apache or something witht the php
preprocessor, and see what happens.
--- End Message ---
--- Begin Message ---
I'm running GTK on Win32 and have made an app that connects to a server and
downloads some data.
I tested it over my LAN and it works fine, using both 10.0.0.1 and
gethostbyname("amd") as the host in fsockopen(host, 80, 30)
I've now tried running it over the internet, trying to connect to the server
www.lottery-machine.co.uk or gethostbyname(www.lottery-machine.co.uk) but it
won;t connect to the server. The window that displays the downloaded data
contains a webpage which is produced by the web host when there's an error
of some kind. If I type in the GET request
(www.lottery-machine.co.uk/clientlogin.php?username=me&password=password) in
a web browser it works fine as expected.
I'm in touch with them about the problem but does anyone know what is
causing this? Does the host only accept connections from web browsers or
something?
--- End Message ---