php-install Digest 26 Jan 2002 13:36:04 -0000 Issue 669

Topics (messages 5755 through 5764):

Re: FreeBSD 4.4 / PHP 4.1.1 / PG 7.x --- /usr/libexec/elf/ld: cannot find -lpq
        5755 by: Yasuo Ohgaki
        5757 by: Yasuo Ohgaki

pspell with php4.1.1 causing segmentation fault
        5756 by: Ron Clark

HELP! with PHP extension <<
        5758 by: Andre Amaral
        5761 by: Alan McFarlane

A small problem, so if anyone could help.
        5759 by: Julius Najzer
        5760 by: Mike Maltese
        5762 by: Julius Najzer
        5763 by: Mike Maltese

mod_php, mod_php3 und mod_perl in einem Apache
        5764 by: Enton05

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 ---
Eric Jones (Contractor) wrote:
> Actually I recompiled PG onto my box and it fixed everything.
> 
> now I'm having a problem with  Apache not booting up.
> 
> Cannot load /usr/local/libexec/apache/libphp4.so into server:
> /usr/local/libexec/apache/libphp4.so: Undefined symbol "X509_free"
> 

Just my guess. You don't have LDAP libs, don't you?
-- 
Yasuo Ohgaki


_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com

--- End Message ---
--- Begin Message ---
Eric Jones (Contractor) wrote:
> Tell me how I can check for them...

You should have something like this

[yohgaki@dev ZE2]$ LANG=C ll /usr/lib/libldap*
-rw-r--r--    1 root     root       290322 Sep 15 03:28 /usr/lib/libldap.a
lrwxrwxrwx    1 root     root           26 Sep 24 10:03 
/usr/lib/libldap.so -> ../../lib/libldap.so.2.0.6
-rwxr-xr-x    1 root     root       133216 Sep 14 23:53 
/usr/lib/libldap40.so
-rw-r--r--    1 root     root       304402 Sep 15 03:28 /usr/lib/libldap_r.a
lrwxrwxrwx    1 root     root           28 Sep 24 10:03 
/usr/lib/libldap_r.so -> ../../lib/libldap_r.so.2.0.6
[yohgaki@dev ZE2]$

I guess you have them, but ld cannot find them.
Make them available to ld using ldconfig.

--
Yasuo

> 
> Eric Jones (Contractor)
> Pager: 520-459-9515
> Temp Phone: 520-533-6628
> Temp E-mail: [EMAIL PROTECTED]
> 
> ********************** NOTICE **********************
> This e-mail account is being hosted on a
> server that is NOT on the FT. Huachuca network.
> 
> This server is not an approved DOD device and
> is in no way, shape or form associated with the
> DOD.
> 
> This e-mail account is not secure and is only in
> place as a temporary POC.
> ********************** NOTICE **********************
> ----- Original Message -----
> From: "Yasuo Ohgaki" <[EMAIL PROTECTED]>
> To: "Eric Jones (Contractor)" <[EMAIL PROTECTED]>
> Cc: <[EMAIL PROTECTED]>
> Sent: Friday, January 25, 2002 1:14 PM
> Subject: Re: [PHP-INST] Re: FreeBSD 4.4 / PHP 4.1.1 / PG 7.x ---
> /usr/libexec/elf/ld: cannot find -lpq
> 
> 
> 
>>Eric Jones (Contractor) wrote:
>>
>>>Actually I recompiled PG onto my box and it fixed everything.
>>>
>>>now I'm having a problem with  Apache not booting up.
>>>
>>>Cannot load /usr/local/libexec/apache/libphp4.so into server:
>>>/usr/local/libexec/apache/libphp4.so: Undefined symbol "X509_free"
>>>
>>>
>>Just my guess. You don't have LDAP libs, don't you?
>>--
>>Yasuo Ohgaki
>>

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

I seem to be having a problem making php-4.1.1 work with pspell on a
solaris-8 system using apache-1.3.22 and mod-ssl. Configure and compile
doesn't cause any problems but apache core dumps with a segmentation
fault when started. Using the same apache mod-ssl install with php-4.0.6
and the same configure options works ok. I am using pspell-.12.2 and
ispell-3.1.20. The same problem occurred on three different web servers
all running soloari. I would like to move up to 4.1 to take
advantagement of improvements so any help would be greately appreciated
:-) 

Thanks in advance
-- 
Ron Clark
--- End Message ---
--- Begin Message ---
Hi all,

Here is the situation.

I have Windows 2000 SP2, IIS5 running PHP 4.1.1 using CGI.

My PHP folder is C:\php
Extension Folder is: C:\php\extension
PHP.INI file: extention_dir = "C:\php\extension\"

First problem that I have is loading extensions. Every time I try to
uncomment an extension on PHP.INI I get the following message after restart
IIS.

[Unable to load dynamic library 'C:\php\extension\php_db.dll' - The
specified procedure could not be found]

I also want to mention that I tried the follwing in PHP.INI...

extention_dir = ".;C:\php\extension\"
extention_dir = ",;C:\php\extension\"
extention_dir = "C:/php/extension/"

Obs.: All DLL's the came with the original package are there.

Second problem is that every single script I execute in my server it gives
me the following error...

[PHP Warning: Undefined property: blabla in c:\blabla\blabla]

Obs.: The 'blablabla' is representing the propperty and the folder

Thank you guys. I hope I get some good help. I need it really bad. I've been
burning my brain on this for the past 2 weeks.








--- End Message ---
--- Begin Message ---
Make sure you've copied the contents of the c:\php\dlls folder to your
system directory (\windows\system, \winnt\system32, not sure 'bout 2K).

Your extension_dir setting in php.ini should be

extension_dir = c:/php/extensions/

And make sure you've copied your php.ini to your windows directory
(\windows, \winnt, again not sure 'bout 2K)

Andre Amaral <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi all,
>
> Here is the situation.
>
> I have Windows 2000 SP2, IIS5 running PHP 4.1.1 using CGI.
>
> My PHP folder is C:\php
> Extension Folder is: C:\php\extension
> PHP.INI file: extention_dir = "C:\php\extension\"
>
> First problem that I have is loading extensions. Every time I try to
> uncomment an extension on PHP.INI I get the following message after
restart
> IIS.
>
> [Unable to load dynamic library 'C:\php\extension\php_db.dll' - The
> specified procedure could not be found]
>
> I also want to mention that I tried the follwing in PHP.INI...
>
> extention_dir = ".;C:\php\extension\"
> extention_dir = ",;C:\php\extension\"
> extention_dir = "C:/php/extension/"
>
> Obs.: All DLL's the came with the original package are there.
>
> Second problem is that every single script I execute in my server it gives
> me the following error...
>
> [PHP Warning: Undefined property: blabla in c:\blabla\blabla]
>
> Obs.: The 'blablabla' is representing the propperty and the folder
>
> Thank you guys. I hope I get some good help. I need it really bad. I've
been
> burning my brain on this for the past 2 weeks.
>
>
>
>
>
>
>
>


--- End Message ---
--- Begin Message ---
I'm using WindowsME and have both Apache  1.3.22 and MySQL 3.21 installed.  I've 
installed PHP for windows and followed the directions. and while I can get Apache to 
load.  and get to the site,  php files won't load,  in fact when I click on them  it 
acts like it's loading it but eventually times out.  if anyone knows what could be 
causing this problem could you please help.  thanks.
--- End Message ---
--- Begin Message ---
Are you using the Apache module of the PHP executable(CGI)?


----- Original Message -----
From: "Julius Najzer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 25, 2002 4:54 PM
Subject: [PHP-INST] A small problem, so if anyone could help.


I'm using WindowsME and have both Apache  1.3.22 and MySQL 3.21 installed.
I've installed PHP for windows and followed the directions. and while I can
get Apache to load.  and get to the site,  php files won't load,  in fact
when I click on them  it acts like it's loading it but eventually times out.
if anyone knows what could be causing this problem could you please help.
thanks.



--- End Message ---
--- Begin Message ---
yes I am,  since my last message something changed, but I don't know what
happened since I didn't change anything,  now when I click on a php file I
get a page cannot be displayed error.  but still it won't load anything


----- Original Message -----
From: "Mike Maltese" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 25, 2002 8:04 PM
Subject: Re: [PHP-INST] A small problem, so if anyone could help.


> Are you using the Apache module of the PHP executable(CGI)?
>
>
> ----- Original Message -----
> From: "Julius Najzer" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, January 25, 2002 4:54 PM
> Subject: [PHP-INST] A small problem, so if anyone could help.
>
>
> I'm using WindowsME and have both Apache  1.3.22 and MySQL 3.21 installed.
> I've installed PHP for windows and followed the directions. and while I
can
> get Apache to load.  and get to the site,  php files won't load,  in fact
> when I click on them  it acts like it's loading it but eventually times
out.
> if anyone knows what could be causing this problem could you please help.
> thanks.
>
>
>
>
> --
> PHP Install Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>
--- End Message ---
--- Begin Message ---
Well, lets go over the basics....

:

In your httpd.conf you should have these lines:

LoadModule php4_module /path/to/php4apache.dll

AddType application/x-http-php .php (plus any other extensions you want
parsed)

In your php.ini, comment out any extensions for now until you can get things
running smoothly.

Copy php4ts.dll to C:\Windows\system

The module versions of PHP will give you headaches. If all else fails just
go for the CGI version, especially if it's not a busy site.

Good luck!




----- Original Message -----
From: "Julius Najzer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, January 25, 2002 7:25 PM
Subject: Re: [PHP-INST] A small problem, so if anyone could help.


> yes I am,  since my last message something changed, but I don't know what
> happened since I didn't change anything,  now when I click on a php file I
> get a page cannot be displayed error.  but still it won't load anything
>
>
> ----- Original Message -----
> From: "Mike Maltese" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Friday, January 25, 2002 8:04 PM
> Subject: Re: [PHP-INST] A small problem, so if anyone could help.
>
>
> > Are you using the Apache module of the PHP executable(CGI)?
> >
> >
> > ----- Original Message -----
> > From: "Julius Najzer" <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Friday, January 25, 2002 4:54 PM
> > Subject: [PHP-INST] A small problem, so if anyone could help.
> >
> >
> > I'm using WindowsME and have both Apache  1.3.22 and MySQL 3.21
installed.
> > I've installed PHP for windows and followed the directions. and while I
> can
> > get Apache to load.  and get to the site,  php files won't load,  in
fact
> > when I click on them  it acts like it's loading it but eventually times
> out.
> > if anyone knows what could be causing this problem could you please
help.
> > thanks.
> >
> >
> >
> >
> > --
> > PHP Install Mailing List (http://www.php.net/)
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> > To contact the list administrators, e-mail: [EMAIL PROTECTED]
> >
> >
>
> --
> PHP Install Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>
>


--- End Message ---
--- Begin Message ---
Hi.
I try to install a Apache 1.3.x (at this time 1.3.22, I use always the last
stable apache) with mod_php (PHP 4.1.1 as apache module), mod_php3 (PHP
3.0.18 as apache module) and mod_perl, but I donīt understand how to include
mod_perl. Does anybody know a good tutorial or an short introdruction I have
to do for this?


e05


--- End Message ---

Reply via email to