php-install Digest 4 Nov 2002 19:55:49 -0000 Issue 1103

Topics (messages 9011 through 9020):

Installing RECODE on WinXP
        9011 by: Sebastian Galonska

Re: mysqldump ?!
        9012 by: Bronwen Hodgkinson
        9013 by: Pierre-Alain Joye
        9014 by: Bronwen Hodgkinson

Re: PHP4 on OpenBSD, Missing libcrypto.so.4.1???
        9015 by: Matt T. Galvin

configure problem
        9016 by: Amaury DAILLIEZ

fsockopen fails if port blocked by firewall - PHP 4.0.6 / Apache / Linux
        9017 by: Neil Smith

php v4.2.1 and netscape ldap.
        9018 by: dweise

Re: Apache 2.0.40/PHP 4.2.2 Win2000 Help
        9019 by: Metin Kale

php 4.2.3+apache 2.0.43
        9020 by: Chris Wilson

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 ---
Hello,

I would like to install RECODE to work with on my WAMP-System. Until now, I
found just "recode.exe", but it doesn´t really help me. As it seems, I need
an .dll - file. Can anyone give me some advice where I can get the
Windows-built and how to to install it?

thanx
Sebastian

--- End Message ---
--- Begin Message ---
Hello, I want to run a MySQL database using PHP on a remote server. I am
populating my database on my PC at home. I understood that I'll have to use
MYSQLDUMP to export these data to a dump file, FTP that file to the server
and then use MYSQL to re-create the database there. My problem is with the
last part. I don't think I can get at a MySQL-prompt on the remote server
(or could I, using FTP or Telnet or something?). All I know is how to run
.php files. Does PHP offer a solution here?

-----

you could try using phpMyAdmin:
http://www.phpwizard.net/projects/phpMyAdmin/



--- End Message ---
--- Begin Message ---
On Mon, 4 Nov 2002 08:28:43 -0500
"Bronwen Hodgkinson" <[EMAIL PROTECTED]> wrote:

> All I know is how to run.php files. Does PHP offer a
> solution here?

phpMyAdmin or others similar apps provide this feature.

hth

pa
--- End Message ---
--- Begin Message ---
Hello, I want to run a MySQL database using PHP on a remote server. I am
populating my database on my PC at home. I understood that I'll have to use
MYSQLDUMP to export these data to a dump file, FTP that file to the server
and then use MYSQL to re-create the database there. My problem is with the
last part. I don't think I can get at a MySQL-prompt on the remote server
(or could I, using FTP or Telnet or something?). All I know is how to run
.php files. Does PHP offer a solution here?
--------

you could try using phpMyAdmin:
http://www.phpwizard.net/projects/phpMyAdmin/







--
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message --- I am pretty sure that it is telling you, that you need to install OpenSSL. http://www.openssl.org/

----------

At 04:02 PM 11/3/2002 +0100, you wrote:
Tried to install PHP4 on my OpenBSD box but it complains about some file,
libcrypto.so.4.1:( What I did exactly is at the end of this message.
How can I fix this?

Thanks in advance
//Jens

tripplefault# ls
php4-4.0.4pl1.tgz
tripplefault# pkg_add php4-4.0.4pl1.tgz

+---------------
| To finish the install, you need to enable the php4
| module using the following command
|
|       /usr/local/sbin/php4-enable
+---------------

tripplefault# /usr/local/sbin/php4-enable
enabling php4 module...
[activating module `php4' in /var/www/conf/httpd.conf]
cp /usr/local/lib/libphp4.so /usr/lib/apache/modules/libphp4.so
chmod 755 /usr/lib/apache/modules/libphp4.so
cp /var/www/conf/httpd.conf /var/www/conf/httpd.conf.bak
cp /var/www/conf/httpd.conf.new /var/www/conf/httpd.conf
rm /var/www/conf/httpd.conf.new
note: sample configuration files can be found in /usr/local/share/doc/php4

tripplefault# apachectl restart
/usr/sbin/apachectl restart: configuration broken, ignoring restart
/usr/sbin/apachectl restart: (run 'apachectl configtest' for details)

tripplefault# apachectl configtest
/usr/libexec/ld.so: httpd: libcrypto.so.4.1: No such file or directory



--
PHP Install Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--- End Message ---
--- Begin Message ---
Hey all,

i'm running Slackware 8.1
i didn't found any way to solve an imap problem when running configure whereas i 
followed minuciously the php.net/imap document
i solved a first problem (rfc822.h) but i've got a new problem now :(

configure: error: Cannot find imap library. Please check your IMAP installation.


Any idea ?


Note this is not the first time i compile PHP in a slack 8.1 environement, i'm just 
reinstalling the server. I'm really confused, i used the same imap package few months 
ago :(

I tried to run configure with 3 others PHP releases 4.0.6, 4.1.x and 4.2.x


Kind Regards,
Amaury
--- End Message ---
--- Begin Message --- Hello List -

I am having a problem with fsockopen since my ISP upgraded their linux server. The same function works just fine on another linux server and PHP version (using a different ISP).

This fsockopen function previously worked as expected, returning within the specified timeout (2 sec) if a socket connection attempt to client is rejected, eg by a firewall.
For connection to port 1720, (then immediate close of socket if fsockopen returns true) I use :

$fsock=fsockopen( $address, 1720 , &$errno, &$errmesg , 2);

I have also tried 2.0 (float) rather than 2 as per PHP manual, this makes no difference.
http://www.php.net/manual/en/function.fsockopen.php

The specific symptoms :

No listener on client port 1720 : Succeeds
Listening client socket on port 1720 Succeeds
Client firewall configured to allow connections Succeeds
Client firewall configured to deny connections Fails

The fail mode is that fsockopen does *not* return after the specified timeout, and the script itself eventually times out at the default 30 sec.

Working configuration : PHP 4.1.2, Linux Redhat 2.2.20, Apache 1.3.22
Http Env vars :i386-redhat-linux-gnu

Non-working configuration : PHP 4.0.6, Linux Redhat 2.4.9-21smp i686, Apache 1.3.27
Http Env vars : i386-slackware-linux-gnu

Anybody able to offer any help or point me at a way to step round this problem ? I thought of setting up an XML feed by HTTP Post from one machine to another - they are on diffrent networks so I worry about latency.

Thanks for any help or suggestions to fix this problem, or any anecdotal evidence I can use to fix it !!

Neil Smith.
--- End Message ---
--- Begin Message --- Hello,
I want to use phpv4.2.1 with ldap for apache v1.3. now i tried to compile it with openldap support (using just the libraries) and it will compile but won't run. does anybody know if php v4.2.1 will compile successfully with netscape ldap libraries (ldapsdk) v5? thank you.
--dave

--- End Message ---
--- Begin Message ---
*snip snip*

Also, you are using Apache2 support for PHP which is buggy at best, I would
recommend using 1.3.27. In which case you would not use php4apache2.dll but
php4apache. Hope that helps.
What is the latest on PHP4 and Apache2 compatibility on win2k? Is the recommendation to use Apache 1.3.27? I've held off installing the "new" Apache in the hopes of a quick resolve of compatibility issues.. Is anyone running apache2/php4 on win2k?

thanks,
metin


--- End Message ---
--- Begin Message ---
Hello,

I am having a problem with a 4.2.3 install on a redhat linux box running
apache 2.0.43 and php 4.2.3....

when I turn safe mode on, I get this error:


Warning: SAFE MODE Restriction in effect. The script whose uid is -1 is not
allowed to access /var/www/html/index.php owned by uid 515 in Unknown on
line 0

Warning: Failed opening '/var/www/html/index.html.en' for inclusion
(include_path='.:/usr/local/lib/php') in Unknown on line 0


when trying to access any php documents on the site.


Does anyone know what can cause this? Any help would be apreciated. thanks!


Chris Wilson

--- End Message ---

Reply via email to