FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » Imported messages » comp.lang.php » HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library
Show: Today's Messages :: Polls :: Message Navigator
Switch to threaded view of this topic Create a new topic Submit Reply
HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175942] Wed, 09 November 2011 20:45 Go to next message
federico M is currently offline  federico M
Messages: 5
Registered: November 2011
Karma: 0
Junior Member
I'm not expert!

I Tried to upgrade PHP 5.16 to 5.30 with yum upgrade
it works, but a lot of extensions can't be loaded now


PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/gettext.so' - /usr/lib64/php/modules/gettext.so: cannot
open shared object file: No such file or directory in Unknown on line
0
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/hyperwave.so' - /usr/lib64/php/modules/hyperwave.so:
cannot open shared object file: No such file or directory in Unknown
on line 0
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/mime_magic.so' - /usr/lib64/php/modules/mime_magic.so:
cannot open shared object file: No such file or directory in Unknown
on line 0
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/ming.so' - /usr/lib64/php/modules/ming.so: cannot open
shared object file: No such file or directory in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/mssql.so' - /usr/lib64/php/modules/mssql.so: cannot open
shared object file: No such file or directory in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/openssl.so' - /usr/lib64/php/modules/openssl.so: cannot
open shared object file: No such file or directory in Unknown on line
0
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/pdf.so' - /usr/lib64/php/modules/pdf.so: cannot open
shared object file: No such file or directory in Unknown on line 0
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/sockets.so' - /usr/lib64/php/modules/sockets.so: cannot
open shared object file: No such file or directory in Unknown on line
0
.....
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
php/modules/xslt.so' - /usr/lib64/php/modules/xslt.so: cannot open
shared object file: No such file or directory in Unknown on line 0
PHP Warning: Module 'curl' already loaded in Unknown on line 0
PHP Warning: Module 'gd' already loaded in Unknown on line 0
PHP Warning: Module 'imap' already loaded in Unknown on line 0

I check where is this extension to insert path... but don't work
a lot of that I can't find really...

where is the standard directory for phpo extension ? (Centos 5.5 Plesk
9.5)
what I can do so solve the problem?

Someone could help me?
thank you!

federico
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175943 is a reply to message #175942] Wed, 09 November 2011 23:30 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On Wed, 09 Nov 2011 12:45:08 -0800, federico M wrote:

> PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/
> php/modules/x.so' - /usr/lib64/php/modules/x.so: cannot open
> shared object file: No such file or directory in Unknown on line 0

(repeated for various x)

Sounds like you're missing some libraries, or you have some bad links.

I'd suggest that you try and find out which package installs each of the
libraries in question (I think these were gettext.so, hyperwave.so,
mime_magic.so, ming.so, mssql.so, openssl.so, pdf.so, sockets.so, and
xslt.so, but I might have missed some) and then install those packages.

Rgds

Denis McMahon
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175944 is a reply to message #175943] Thu, 10 November 2011 01:26 Go to previous messageGo to next message
federico M is currently offline  federico M
Messages: 5
Registered: November 2011
Karma: 0
Junior Member
Yes is not installed but if I install with yum ...nothing change!
like repository was wrong...

But I don't know how to change.
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175945 is a reply to message #175944] Thu, 10 November 2011 01:46 Go to previous messageGo to next message
federico M is currently offline  federico M
Messages: 5
Registered: November 2011
Karma: 0
Junior Member
Sorry, thank you for your answer first!

Try to explain better:
You are right the extensions are not installed, but if I install them I have some warning in php -m ...
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175946 is a reply to message #175945] Thu, 10 November 2011 03:58 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On Wed, 09 Nov 2011 17:46:22 -0800, federicomo wrote:

> Sorry, thank you for your answer first!
>
> Try to explain better:
> You are right the extensions are not installed, but if I install them I
> have some warning in php -m ...

OK, well it may be that the libraries are installed, but not where php
expects to find them, or you may have a mixture of 32 bit and 64 bit
packages that is causing confusion?

Perhaps you have not installed the right php packages, eg on my debian/
ubuntu based server most of the php extensions are in packages named
"php5-......."

Or it's looking in the wrong place? My .so files are in:

/usr/lib64/php5/20090626 on my 64 bit desktop, and
/usr/lib/php5/20090626+lfs on the 32 bit server

but I can't see anything in my php.ini files that tells php that's where
the extension libraries are loaded, although I'd assume it was specified
somewhere.

The dir names can't be coincidence, I must have done software installs on
both machines on 26th June 2009.

So, perhaps (from a root account), for each relevant x:

find / -name x.so

and if it exists, create a link from where php expects to find it to
where it actually is, so that php will find it from the link where it's
currently looking, eg

if x.so is in /usr/lib64/php5/modules/x.so

then make the /usr/lib64/php/modules dir if needed, and create a link:

sudo mkdir /usr/lib64/php
sudo mkdir /usr/lib64/php/modules

ln -s /usr/lib64/php5/modules/x.so /usr/lib64/php/modules/x.so

It's a work around, but it should solve your problem if the issue is that
the files are present but not where php is expecting them.

Rgds

Denis McMahon
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175947 is a reply to message #175946] Thu, 10 November 2011 04:06 Go to previous messageGo to next message
Denis McMahon is currently offline  Denis McMahon
Messages: 634
Registered: September 2010
Karma: 0
Senior Member
On Thu, 10 Nov 2011 03:58:17 +0000, Denis McMahon wrote:

> The dir names can't be coincidence, I must have done software installs
> on both machines on 26th June 2009.

Ah, I discovered from my phpinfo that the PHP API is 20090626, so that
would probably be why that date appears in the directory name where my
module libraries are located.

Rgds

Denis McMahon
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175953 is a reply to message #175942] Thu, 10 November 2011 09:14 Go to previous messageGo to next message
federico M is currently offline  federico M
Messages: 5
Registered: November 2011
Karma: 0
Junior Member
Thank you Denis,

I have 64bit Centos5.5 Plesk9.5
Directory of extensions is /usr/lib64/php5/modules/

and it's the defould directory I think...
but in php.ini is written you can specify a different directory and I tried. but not work.

estensions are intalled by YUM so it is all 64bit. I quite sure.
If I look for the ones that give me problem...

ex locate pdf.so

system can't find! but there is in /usr/lib64/php5/modules/ , someone suggest me that there is a problem of installation and repository...
but I don't know what means?

I Installed for example pdf.so and installation work! but still alert there is :(

Could be a configuration problem of yum?
how can I check this?

Thank you
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175957 is a reply to message #175953] Thu, 10 November 2011 12:15 Go to previous messageGo to next message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 11/10/2011 4:14 AM, federicomo wrote:
> Thank you Denis,
>
> I have 64bit Centos5.5 Plesk9.5
> Directory of extensions is /usr/lib64/php5/modules/
>
> and it's the defould directory I think...
> but in php.ini is written you can specify a different directory and I tried. but not work.
>
> estensions are intalled by YUM so it is all 64bit. I quite sure.
> If I look for the ones that give me problem...
>
> ex locate pdf.so
>
> system can't find! but there is in /usr/lib64/php5/modules/ , someone suggest me that there is a problem of installation and repository...
> but I don't know what means?
>
> I Installed for example pdf.so and installation work! but still alert there is :(
>
> Could be a configuration problem of yum?
> how can I check this?
>
> Thank you

Did you stop and restart your Apache server?

If the system can't find a library, either the version of the library is
not compatible with the current OS or other software, or your load path
is incorrect. In neither case is this a PHP problem.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175958 is a reply to message #175957] Thu, 10 November 2011 15:10 Go to previous messageGo to next message
federico M is currently offline  federico M
Messages: 5
Registered: November 2011
Karma: 0
Junior Member
Yes is a problem of path...for some of that.
for half of that...remain same problem...

I need a systemist here :)
But you have help me to solve.

Thank you!
Re: HELP!!! from PHP 5.16 to 5.3 Unable to load dynamic library [message #175961 is a reply to message #175958] Thu, 10 November 2011 18:25 Go to previous message
Jerry Stuckle is currently offline  Jerry Stuckle
Messages: 2598
Registered: September 2010
Karma: 0
Senior Member
On 11/10/2011 10:10 AM, federicomo wrote:
> Yes is a problem of path...for some of that.
> for half of that...remain same problem...
>
> I need a systemist here :)
> But you have help me to solve.
>
> Thank you!

You need to be checking a newsgroup for your Linux distribution.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex(at)attglobal(dot)net
==================
  Switch to threaded view of this topic Create a new topic Submit Reply
Previous Topic: about a piece of code from drupal 3.0.x
Next Topic: php development environment in windows problems
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Sun Oct 20 07:30:14 GMT 2024

Total time taken to generate the page: 0.02896 seconds