PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Autres forums > Forum Programmation & Conception > php.general > libmm.so.14
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
libmm.so.14

Réponse
 
LinkBack Outils de la discussion
Vieux 23/10/2007, 15h36   #1
Jeff Mckeon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut libmm.so.14

Hey all,

Setting up a php based ticket system on a new OpenSuse 10.3 64bit system.

The ticket sys requires qmail so I had to uninstall postfix and install
qmail.

Qmail injects emails into this ticket sys with the following line...

/usr/bin/php -q /srv/www/virtual/support/mailpipe.php

I now get this error however:

/usr/bin/php: error while loading shared libraries: libmm.so.14: cannot open
shared object file: No such file or directory

Libmm.so.14 is installed in:

/usr/lib64/libmm.so.14

Any idea what it is I'm missing?

Version PHP5

Thanks,

jeff
  Réponse avec citation
Vieux 23/10/2007, 15h46   #2
Daniel Brown
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: [PHP] libmm.so.14

On 10/23/07, Jeff Mckeon <jsmForum@optonline.net> wrote:
> Hey all,
>
> Setting up a php based ticket system on a new OpenSuse 10.3 64bit system.
>
> The ticket sys requires qmail so I had to uninstall postfix and install
> qmail.
>
> Qmail injects emails into this ticket sys with the following line...
>
> /usr/bin/php -q /srv/www/virtual/support/mailpipe.php
>
> I now get this error however:
>
> /usr/bin/php: error while loading shared libraries: libmm.so.14: cannot open
> shared object file: No such file or directory
>
> Libmm.so.14 is installed in:
>
> /usr/lib64/libmm.so.14
>
> Any idea what it is I'm missing?
>
> Version PHP5
>
> Thanks,
>
> jeff
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


Check to see where PHP is searching for the extensions. Chances
are, all you'll need to do is symlink it from the /usr/lib64/
directory to wherever PHP is expecting to find it.

Also, be sure it really is still there. When's the last time you
did a `locate -u` on your server (if that's the method you used)? It
could be showing an old slocatedb.

--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

Give a man a fish, he'll eat for a day. Then you'll find out he was
allergic and is hospitalized. See? No good deed goes unpunished....
  Réponse avec citation
Vieux 23/10/2007, 15h52   #3
Jeff Mckeon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut RE: [PHP] libmm.so.14

> -----Original Message-----
> From: Daniel Brown [mailto:parasane@gmail.com]
> Sent: Tuesday, October 23, 2007 10:47 AM
> To: Jeff Mckeon
> Cc: php-general@lists.php.net
> Subject: Re: [php] libmm.so.14
>
> On 10/23/07, Jeff Mckeon <jsmForum@optonline.net> wrote:
> > Hey all,
> >
> > Setting up a php based ticket system on a new OpenSuse 10.3 64bit

> system.
> >
> > The ticket sys requires qmail so I had to uninstall postfix and

> install
> > qmail.
> >
> > Qmail injects emails into this ticket sys with the following line...
> >
> > /usr/bin/php -q /srv/www/virtual/support/mailpipe.php
> >
> > I now get this error however:
> >
> > /usr/bin/php: error while loading shared libraries: libmm.so.14:

> cannot open
> > shared object file: No such file or directory
> >
> > Libmm.so.14 is installed in:
> >
> > /usr/lib64/libmm.so.14
> >
> > Any idea what it is I'm missing?
> >
> > Version PHP5
> >
> > Thanks,
> >
> > jeff
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >

>
> Check to see where PHP is searching for the extensions. Chances
> are, all you'll need to do is symlink it from the /usr/lib64/
> directory to wherever PHP is expecting to find it.
>
> Also, be sure it really is still there. When's the last time you
> did a `locate -u` on your server (if that's the method you used)? It
> could be showing an old slocatedb.
>
> --
> Daniel P. Brown
> [office] (570-) 587-7080 Ext. 272
> [mobile] (570-) 766-8107
>
> Give a man a fish, he'll eat for a day. Then you'll find out he was
> allergic and is hospitalized. See? No good deed goes unpunished....


Tried that,

I did a simlink to /usr/lib but it complained that:

/usr/bin/php: error while loading shared libraries: libmm.so.14: wrong ELF
class: ELFCLASS64


  Réponse avec citation
Vieux 23/10/2007, 19h04   #4
Nathan Hawks
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut RE: [PHP] libmm.so.14

http://www.qmailrocks.com/

I am mailserver-challenged and I changed my VPS from exim to qmail with
only one practice run using their guides, patch-kits, and add-on
bundles.


On Tue, 2007-10-23 at 10:52 -0400, Jeff Mckeon wrote:
> > -----Original Message-----
> > From: Daniel Brown [mailto:parasane@gmail.com]
> > Sent: Tuesday, October 23, 2007 10:47 AM
> > To: Jeff Mckeon
> > Cc: php-general@lists.php.net
> > Subject: Re: [php] libmm.so.14
> >
> > On 10/23/07, Jeff Mckeon <jsmForum@optonline.net> wrote:
> > > Hey all,
> > >
> > > Setting up a php based ticket system on a new OpenSuse 10.3 64bit

> > system.
> > >
> > > The ticket sys requires qmail so I had to uninstall postfix and

> > install
> > > qmail.
> > >
> > > Qmail injects emails into this ticket sys with the following line...
> > >
> > > /usr/bin/php -q /srv/www/virtual/support/mailpipe.php
> > >
> > > I now get this error however:
> > >
> > > /usr/bin/php: error while loading shared libraries: libmm.so.14:

> > cannot open
> > > shared object file: No such file or directory
> > >
> > > Libmm.so.14 is installed in:
> > >
> > > /usr/lib64/libmm.so.14
> > >
> > > Any idea what it is I'm missing?
> > >
> > > Version PHP5
> > >
> > > Thanks,
> > >
> > > jeff
> > >
> > > --
> > > PHP General Mailing List (http://www.php.net/)
> > > To unsubscribe, visit: http://www.php.net/unsub.php
> > >
> > >

> >
> > Check to see where PHP is searching for the extensions. Chances
> > are, all you'll need to do is symlink it from the /usr/lib64/
> > directory to wherever PHP is expecting to find it.
> >
> > Also, be sure it really is still there. When's the last time you
> > did a `locate -u` on your server (if that's the method you used)? It
> > could be showing an old slocatedb.
> >
> > --
> > Daniel P. Brown
> > [office] (570-) 587-7080 Ext. 272
> > [mobile] (570-) 766-8107
> >
> > Give a man a fish, he'll eat for a day. Then you'll find out he was
> > allergic and is hospitalized. See? No good deed goes unpunished....

>
> Tried that,
>
> I did a simlink to /usr/lib but it complained that:
>
> /usr/bin/php: error while loading shared libraries: libmm.so.14: wrong ELF
> class: ELFCLASS64
>
>
>

  Réponse avec citation
Vieux 23/10/2007, 20h58   #5
Jeff Mckeon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut RE: [PHP] libmm.so.14

> -----Original Message-----
> From: Jeff Mckeon [mailto:jsmForum@optonline.net]
> Sent: Tuesday, October 23, 2007 10:52 AM
> To: 'Daniel Brown'
> Cc: php-general@lists.php.net
> Subject: RE: [php] libmm.so.14
>
> > -----Original Message-----
> > From: Daniel Brown [mailto:parasane@gmail.com]
> > Sent: Tuesday, October 23, 2007 10:47 AM
> > To: Jeff Mckeon
> > Cc: php-general@lists.php.net
> > Subject: Re: [php] libmm.so.14
> >
> > On 10/23/07, Jeff Mckeon <jsmForum@optonline.net> wrote:
> > > Hey all,
> > >
> > > Setting up a php based ticket system on a new OpenSuse 10.3 64bit

> > system.
> > >
> > > The ticket sys requires qmail so I had to uninstall postfix and

> > install
> > > qmail.
> > >
> > > Qmail injects emails into this ticket sys with the following

> line...
> > >
> > > /usr/bin/php -q /srv/www/virtual/support/mailpipe.php
> > >
> > > I now get this error however:
> > >
> > > /usr/bin/php: error while loading shared libraries: libmm.so.14:

> > cannot open
> > > shared object file: No such file or directory
> > >
> > > Libmm.so.14 is installed in:
> > >
> > > /usr/lib64/libmm.so.14
> > >
> > > Any idea what it is I'm missing?
> > >
> > > Version PHP5
> > >
> > > Thanks,
> > >
> > > jeff
> > >
> > > --
> > > PHP General Mailing List (http://www.php.net/)
> > > To unsubscribe, visit: http://www.php.net/unsub.php
> > >
> > >

> >
> > Check to see where PHP is searching for the extensions. Chances
> > are, all you'll need to do is symlink it from the /usr/lib64/
> > directory to wherever PHP is expecting to find it.
> >
> > Also, be sure it really is still there. When's the last time you
> > did a `locate -u` on your server (if that's the method you used)? It
> > could be showing an old slocatedb.
> >
> > --
> > Daniel P. Brown
> > [office] (570-) 587-7080 Ext. 272
> > [mobile] (570-) 766-8107
> >
> > Give a man a fish, he'll eat for a day. Then you'll find out he was
> > allergic and is hospitalized. See? No good deed goes unpunished....

>
> Tried that,
>
> I did a simlink to /usr/lib but it complained that:
>
> /usr/bin/php: error while loading shared libraries: libmm.so.14: wrong
> ELF
> class: ELFCLASS64
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php


Ok, removed php and libmm14 and re-installed. Now command line php works
but Apache2 is no longer serving php pages.

Re-installed apache2 checked all the config files but I can't seem to make
it work. When you go to the site with a php page it offers it as a
download instead of handing the file off to php to process... UGH!!!
  Réponse avec citation
Vieux 23/10/2007, 21h09   #6
Daniel Brown
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: [PHP] libmm.so.14

On 10/23/07, Jeff Mckeon <jmckeon@telaurus.com> wrote:
> > -----Original Message-----
> > From: Jeff Mckeon [mailto:jsmForum@optonline.net]
> > Sent: Tuesday, October 23, 2007 10:52 AM
> > To: 'Daniel Brown'
> > Cc: php-general@lists.php.net
> > Subject: RE: [php] libmm.so.14
> >
> > > -----Original Message-----
> > > From: Daniel Brown [mailto:parasane@gmail.com]
> > > Sent: Tuesday, October 23, 2007 10:47 AM
> > > To: Jeff Mckeon
> > > Cc: php-general@lists.php.net
> > > Subject: Re: [php] libmm.so.14
> > >
> > > On 10/23/07, Jeff Mckeon <jsmForum@optonline.net> wrote:
> > > > Hey all,
> > > >
> > > > Setting up a php based ticket system on a new OpenSuse 10.3 64bit
> > > system.
> > > >
> > > > The ticket sys requires qmail so I had to uninstall postfix and
> > > install
> > > > qmail.
> > > >
> > > > Qmail injects emails into this ticket sys with the following

> > line...
> > > >
> > > > /usr/bin/php -q /srv/www/virtual/support/mailpipe.php
> > > >
> > > > I now get this error however:
> > > >
> > > > /usr/bin/php: error while loading shared libraries: libmm.so.14:
> > > cannot open
> > > > shared object file: No such file or directory
> > > >
> > > > Libmm.so.14 is installed in:
> > > >
> > > > /usr/lib64/libmm.so.14
> > > >
> > > > Any idea what it is I'm missing?
> > > >
> > > > Version PHP5
> > > >
> > > > Thanks,
> > > >
> > > > jeff
> > > >
> > > > --
> > > > PHP General Mailing List (http://www.php.net/)
> > > > To unsubscribe, visit: http://www.php.net/unsub.php
> > > >
> > > >
> > >
> > > Check to see where PHP is searching for the extensions. Chances
> > > are, all you'll need to do is symlink it from the /usr/lib64/
> > > directory to wherever PHP is expecting to find it.
> > >
> > > Also, be sure it really is still there. When's the last time you
> > > did a `locate -u` on your server (if that's the method you used)? It
> > > could be showing an old slocatedb.
> > >
> > > --
> > > Daniel P. Brown
> > > [office] (570-) 587-7080 Ext. 272
> > > [mobile] (570-) 766-8107
> > >
> > > Give a man a fish, he'll eat for a day. Then you'll find out he was
> > > allergic and is hospitalized. See? No good deed goes unpunished....

> >
> > Tried that,
> >
> > I did a simlink to /usr/lib but it complained that:
> >
> > /usr/bin/php: error while loading shared libraries: libmm.so.14: wrong
> > ELF
> > class: ELFCLASS64
> >
> >
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php

>
> Ok, removed php and libmm14 and re-installed. Now command line php works
> but Apache2 is no longer serving php pages.
>
> Re-installed apache2 checked all the config files but I can't seem to make
> it work. When you go to the site with a php page it offers it as a
> download instead of handing the file off to php to process... UGH!!!
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>


1.) What parameters did you run ./configure with when building PHP
(or did you build automatically with cPanel, etc.)?
2.) Did you add/uncomment the module entry in httpd.conf?
3.) Did you restart Apache after everything else was done?
4.) When attempting to restart Apache, are there any errors?

--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107

Give a man a fish, he'll eat for a day. Then you'll find out he was
allergic and is hospitalized. See? No good deed goes unpunished....
  Réponse avec citation
Vieux 23/10/2007, 21h29   #7
Jeff Mckeon
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut RE: [PHP] libmm.so.14 SOLVED

> -----Original Message-----
> From: Daniel Brown [mailto:parasane@gmail.com]
> Sent: Tuesday, October 23, 2007 4:10 PM
> To: Jeff Mckeon
> Cc: php-general@lists.php.net
> Subject: Re: [php] libmm.so.14
>
> On 10/23/07, Jeff Mckeon <jmckeon@telaurus.com> wrote:
> > > -----Original Message-----
> > > From: Jeff Mckeon [mailto:jsmForum@optonline.net]
> > > Sent: Tuesday, October 23, 2007 10:52 AM
> > > To: 'Daniel Brown'
> > > Cc: php-general@lists.php.net
> > > Subject: RE: [php] libmm.so.14
> > >
> > > > -----Original Message-----
> > > > From: Daniel Brown [mailto:parasane@gmail.com]
> > > > Sent: Tuesday, October 23, 2007 10:47 AM
> > > > To: Jeff Mckeon
> > > > Cc: php-general@lists.php.net
> > > > Subject: Re: [php] libmm.so.14
> > > >
> > > > On 10/23/07, Jeff Mckeon <jsmForum@optonline.net> wrote:
> > > > > Hey all,
> > > > >
> > > > > Setting up a php based ticket system on a new OpenSuse 10.3

> 64bit
> > > > system.
> > > > >
> > > > > The ticket sys requires qmail so I had to uninstall postfix and
> > > > install
> > > > > qmail.
> > > > >
> > > > > Qmail injects emails into this ticket sys with the following
> > > line...
> > > > >
> > > > > /usr/bin/php -q /srv/www/virtual/support/mailpipe.php
> > > > >
> > > > > I now get this error however:
> > > > >
> > > > > /usr/bin/php: error while loading shared libraries:

> libmm.so.14:
> > > > cannot open
> > > > > shared object file: No such file or directory
> > > > >
> > > > > Libmm.so.14 is installed in:
> > > > >
> > > > > /usr/lib64/libmm.so.14
> > > > >
> > > > > Any idea what it is I'm missing?
> > > > >
> > > > > Version PHP5
> > > > >
> > > > > Thanks,
> > > > >
> > > > > jeff
> > > > >
> > > > > --
> > > > > PHP General Mailing List (http://www.php.net/)
> > > > > To unsubscribe, visit: http://www.php.net/unsub.php
> > > > >
> > > > >
> > > >
> > > > Check to see where PHP is searching for the extensions.

> Chances
> > > > are, all you'll need to do is symlink it from the /usr/lib64/
> > > > directory to wherever PHP is expecting to find it.
> > > >
> > > > Also, be sure it really is still there. When's the last time

> you
> > > > did a `locate -u` on your server (if that's the method you used)?

> It
> > > > could be showing an old slocatedb.
> > > >
> > > > --
> > > > Daniel P. Brown
> > > > [office] (570-) 587-7080 Ext. 272
> > > > [mobile] (570-) 766-8107
> > > >
> > > > Give a man a fish, he'll eat for a day. Then you'll find out he

> was
> > > > allergic and is hospitalized. See? No good deed goes

> unpunished....
> > >
> > > Tried that,
> > >
> > > I did a simlink to /usr/lib but it complained that:
> > >
> > > /usr/bin/php: error while loading shared libraries: libmm.so.14:

> wrong
> > > ELF
> > > class: ELFCLASS64
> > >
> > >
> > >
> > > --
> > > PHP General Mailing List (http://www.php.net/)
> > > To unsubscribe, visit: http://www.php.net/unsub.php

> >
> > Ok, removed php and libmm14 and re-installed. Now command line php

> works
> > but Apache2 is no longer serving php pages.
> >
> > Re-installed apache2 checked all the config files but I can't seem to

> make
> > it work. When you go to the site with a php page it offers it as a
> > download instead of handing the file off to php to process... UGH!!!
> >
> > --
> > PHP General Mailing List (http://www.php.net/)
> > To unsubscribe, visit: http://www.php.net/unsub.php
> >
> >

>
> 1.) What parameters did you run ./configure with when building PHP
> (or did you build automatically with cPanel, etc.)?
> 2.) Did you add/uncomment the module entry in httpd.conf?
> 3.) Did you restart Apache after everything else was done?
> 4.) When attempting to restart Apache, are there any errors?
>
> --
> Daniel P. Brown
> [office] (570-) 587-7080 Ext. 272
> [mobile] (570-) 766-8107
>
> Give a man a fish, he'll eat for a day. Then you'll find out he was
> allergic and is hospitalized. See? No good deed goes unpunished....
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php



/etc/sysconfig/apache2 was missing php5 init's module list...
  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 10h46.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,22338 seconds with 15 queries