Software :: Unable To Load Dynamic Library
Nov 22, 2010
I have installed oci8 from the remi repo and can not get it to work.I have been trying all day but still end up with the same error in my apache error log when I start httpd.If anyone can suggest something more I can try or where I should look next that would be nice.In the mean time I am going to build a VM and try from a fresh install and see what happens.
View 1 Replies
ADVERTISEMENT
Jul 23, 2011
I keep getting mails with this warning on my 11.04 server
Code: PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20090626/mysql.so' - /usr/lib/php5/20090626/mysql.so: cannot open shared object file: No such file or directory in Unknown on line 0
apparently everything is working as it should and I don't know how to get rid of this warning
View 1 Replies
View Related
Mar 4, 2011
I recently upgraded to php 5.2 using the testing repository. All went well except for one extension.
root@clibweb2 ~]# php -v
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules//usr/lib64/php/modules/http.so' - /usr/lib64/php/modules//usr/lib64/php/modules/http.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP 5.2.10 (cli) (built: Nov 13 2009 11:44:05)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
[root@clibweb2 ~]#
I tried:
[root@clibweb2 ~]# ln -s /usr/lib64/php /usr/lib/php
Adding the complete path to php.ini
And using PECL
I still get the error.
Output of
getinfo.sh (general) is at [URL]
The Package specific is at [URL]
View 1 Replies
View Related
Dec 30, 2009
I have a new VPS running.But PHP doesn't work well. The error message I get from /var/log/http/error.log is code...
View 5 Replies
View Related
Nov 8, 2010
After upgrading to FC14, things went south for some of the websites etc I run. I have the following snmp related packages installed:
php-snmp-5.3.3-1.fc14.i686
net-snmp-devel-5.5-21.fc14.i686
net-snmp-libs-5.5-21.fc14.i686
net-snmp-utils-5.5-21.fc14.i686
net-snmp-5.5-21.fc14.i686
On a number of sites I use PHP's snmpget() function, but now on all these I just get this error: PHP Warning: PHP Startup: Unable to load dynamic library '/etc/php.d/snmp.so' - libnetsnmp.so.15: cannot open shared object file: No such file or directory in Unknown on line 0 PHP Fatal error: Call to undefined function snmpget()
[Code]....
View 8 Replies
View Related
Jan 19, 2010
fedora 12 with php 5.3.1 + apache is installed on the server
I needed a FFMPEG + MENCODER + FFMPEG-PHP setup , so I have installed all of the necessary libraries/codecs along with ffmpeg , mencoder and ffmpeg-php
I've added ffmpeg-php (ffmpeg.so) module to php.ini and restarted httpd
But ffmpeg was not showing up in phpinfo() so I grepped : php -i | grep ffmpeg
for some clues and got this warning
PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php/modules/ffmpeg.so' - /usr/lib/php/modules/ffmpeg.so: undefined symbol: php_gd_gdImageSetPixel in Unknown on line 0
That error explains why ffmpeg is not loading
Obviously something to do with GD library , so I've researched on the net , and found that some users suggest loading the GD module before FFMPEG module.
I gave it a try and added this at the end of php.ini:
Code: [gd]
;loading gd
extension=gd.so
[ffmpeg]
;loading ffmpeg
extension=ffmpeg.so ...but still same error when greping phpinfo()
View 1 Replies
View Related
Aug 20, 2011
few days ago i installed the newest opensuse 11.4 32bit system and all is working really fine.except when starting apache or doing a php -v on the CLI i receive the following error ->
php -v
PHP Warning: PHP Startup: Unable to load dynamic library
'/usr/lib/php5/extensions/intl.so' - /usr/lib/php5/extensions/intl.so:
undefined symbol: grapheme_extract_count_iter in Unknown on line 0
i know this bug has been reported earlier and i found quite a few results in google.i even found one result where the problem was fixed and updated in an additional opensuse repository -> Additional package repositories - openSUSE the repository with the fix is the following -> Index of /repositories/server:/php/openSUSE_11.4 so ... i added this repository via YAST to the repositories in my system without any problems but whenever i do a system update via YAST i don't receive new fixes and patches from the newly added repository!
if i directly browse to the /i586 folder in the repository i see all the PHP updates with version 5.3.7 and the latest updates were done 19 aug 2011 Index of /repositories/server:/php/openSUSE_11.4/i586 but my system still has PHP version 5.3.5 installed and somehow doesn't want to update from the newly added repository for the apache php modules so ... i just double checked and the repository is enabled in YAST ... but I still don't receive updates from there i would like to update to the new apache php modules, to get rid of that php '/usr/lib/php5/extensions/intl.so' warning, but somehow that doesn't seem to work
View 1 Replies
View Related
Oct 22, 2010
After upgrading my server from 10.04 to 10.10 I keep getting the following php error, "PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20090626+lfs/syck.so' - /usr/lib/php5/20090626+lfs/syck.so: cannot open shared object file: No such file or directory in Unknown on line 0"
View 1 Replies
View Related
Nov 18, 2009
How can we convert a dynamic library (filename.so) to a static library (filename.a) using gnu gcc . Can we get a static library form a dynamic library . I saw a few post in which the conversion form a static library to a dynamic library is mentioned but, unfortunately, not the other way.
View 4 Replies
View Related
Dec 12, 2008
I'm using RedHat 9. I've already installed java and azureus/vuze too but when i run azureus there is a problem.
View 1 Replies
View Related
May 29, 2009
I am trying to use a shared bzip2 library in a program I'm writing. For the life of me I can't figure out the correct gcc switch to link it in. I've tried pkg-config, but i don't know the name of the .pc file. Is there any rule for these things?
View 3 Replies
View Related
Jan 5, 2011
Why the thread stack size can not be changed after calling pthread_attr_setstacksize & pthread_create in a dynamic library? Detail: I write a file thread_factory.c and plan to build it and produce a dynamic library (libthread_factory.so) In the thread_factory.c , there is a routine
[Code]....
And after this, there is application, it will call fct_thread_create(STACK_SIZE_256KB), and then call pthread_attr_getstacksize(), but the stack size return always be a fixed value 0xa01000. (I tried this on Fedora12) But if I build the application source code with the file thread_factory.c directly, the stack size return is right as my expect. I checked the source code of glibc about the routine pthread_create() as below:
[Code]....
View 7 Replies
View Related
Sep 5, 2010
I'm folding and I need it to only run on 6 cores instead of 8, and I have it set to do that but Ubuntu decides to bounce the load around the 2 extra cores as well, hurting my performance. Is there a way to disable it or set it to work only on 6 specific cores?
View 1 Replies
View Related
Feb 15, 2011
I have visited these boards a few times, but never posted. Here's my problem: I was given the source to a program and asked to get it running on a 64-bit Debian 2.6.26 machine. Currently it is working on 2 64-bit OpenSUSE machines.
The application uses TCL TK for a GUI and everything compiles just fine; however, on startup, the user must enter one of three possible modules to load; when attempting to load these modules (tcl 'load' function), I receive this error:
Code:
Error in startup script: couldn't load file "../Build/libMpf.so": libTransReaders.so: cannot open shared object file: No such file or directory
while executing
"load ../Build/libMpf.so Mpf"
("eval" body line 1)
invoked from within
"eval load ../Build/${px}${i}${sx} $i"
[Code]...
View 8 Replies
View Related
Jul 17, 2010
I 've been trying apt-get command to down load some library files regarding graphics It is not working properly
View 1 Replies
View Related
Dec 12, 2009
I want to restrict the Visitors to my Webserver whom i want to give access But the persons whom i want to give access. have Dynamic IP. I want to use DynDNS and update IP address of person. Based on the Hostname Pointing to Dynamic address of person.
View 5 Replies
View Related
Jun 7, 2010
I have tried to compile the fakeroot 1.15 on centos 5, but it always failed to load the shared library libfakeroot.so file. I tried compiling 32 as well as 64 bit version of library but always it failed to load the library and give the following error:
ERROR: ld.so: object 'libfakeroot.so' from LD_PRELOAD cannot be preloaded: ignored.
any workaround to get this working?
View 1 Replies
View Related
Aug 25, 2010
Our application uses a dynamically loaded shared object library (codec library) to compress and decompress audio streams.
There happens to be several static and global variables in this shared object library. Hence it is not possible to process two interleaved unrelated media streams using this shared object codec library because each stream corrupts/changes the contents of these static/global variables.
Is there a way through which a context save (save contents of data segment of shared object) and a context load (load previously saved contents of data segment of shared object)operation can be performed on the shared object library. This way the context for each media stream can be saved and loaded before and after processing the "other" media stream respectively.
View 3 Replies
View Related
Mar 11, 2011
I am trying to execute "caGrid-installer-1.3.jar" file. But its giving me the following error.
Exception in thread "main" java.lang.UnsatisfiedLinkError: Can't load library: /usr/lib/jvm/java-6-openjdk/jre/lib/i386/xawt/libmawt.so
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1649)
at java.lang.Runtime.load0(Runtime.java:787)
[code].....
View 1 Replies
View Related
Apr 11, 2010
When trying to access "Multimedia" from System Settings, I get an error message as follows:
Code:
Cannot load library /usr/lib/kde4/kcm_phonon.so:(/usr/lib/kde4/kcm_phonon.so undefined symbol: _ZN6Phonon12GlobalConfig28setAudioCaptureDeviceListForENS_8CategoryE5QListiE)Cannot load library /usr/lib/kde4/kcm_phonon.so:(/usr/lib/kde4/kcm_phonon.so undefined symbol: _ZN6Phonon12GlobalConfig28setAudioCaptureDeviceListForENS_8CategoryE5QListiE)
Possible Reasons:
* An error occurred during your last KDE upgrade leaving an orphaned control module
* You have old third party modules lying around.
Check these points carefully and try to remove the module mentioned in the error message. If this fails, consider contacting your distributor or packager. And then when I click OK, it closes, and that's it. how to prevent this, so I can access the multimedia settings and change them. The reason I want to see the settings, is because Amarok 2.3 won't play any songs (even though version 1.4 still works).
View 2 Replies
View Related
Aug 4, 2011
./configure script fails to configure libsf. Please check the following last few lines of configure script error.
But find command shows the following;
It seems the file libdb does exist. man dbopen displays man page for dbopen. I also tried to ln -s /usr/lib/libdb.a and libdb.so /lib dir but all were in vain.
View 6 Replies
View Related
Apr 7, 2009
I'm reading about shared, static, and dynamic libraries. What is SDL? Is it static, shared, or dynamic?
I always thought a library would be a lot of .h and .cpp files compiled separately into .o files and then if you compiled your own program you could use the -l parameter to link the library and it was all compiled together. Now I'm not so sure.
I don't even see any SDL .cpp files in my system anywhere. All I have are lots of SDL .h files in /usr/include/SDL and I don't really understand the code in them.
I'm making a wild guess here: SDL is a shared library. SDL itself is NOT compiled into my program, therefore SDL must be on any system my program tries to run on. When I compile and link SDL all it needs is the header files to know what SDL function and objects it can use. And then on every system it uses an already compiled SDL shared library thingy somewhere.
So... where is that part of SDL? All I can find are header files.
I'm thinking the advantage of shared libraries is that someone could say update SDL on their own system and take advantage of the new features without having to download new executables with the new version of SDL compiled into them for every program that uses SDL.
So if I'm making an editor and a game engine and they both use a lot of the same .cpp and .h files that I wrote and I'm tired of updating one and then the other and I need to turn them into a library, then a shared library might be kind of a silly solution. I could just make a static library. Right? Because it's not SDL. Nobody else is ever going to use this library.
View 6 Replies
View Related
Jul 24, 2010
I am using fedora 13 .My kernel version is 2.6.33.6-147.fc13.i686.PAE . I installed vlc media player from the rpm fusion repository.I do have the problem with that.I am unable to load the menu bar in it . i find the following error.
[arun@localhost ~]$ vlc
VLC media player 1.0.6 Goldeneye
[0x8ccb8b0] main libvlc: Running vlc with the default interface. Use 'cvlc' to use vlc without interface.
[0x8da5540] main generic error: no dialogs provider module matched "any"
[Code]....
View 2 Replies
View Related
Jul 25, 2011
I get the following error, after installing and configuring httpd - it will not start any longer:
Code:
Starting httpd (via systemctl): Job failed. See system logs and 'systemctl status' for details.Where can I find the system log for this so I can post what is actually causing this?
View 10 Replies
View Related
Nov 29, 2010
I am unable to load Firefox.
The following error message occurs when I attempt to load it from the terminal.code...
View 3 Replies
View Related
Oct 14, 2010
I am currently using an Acer Extensa machine with Windows 7 and Ubuntu 10.04 dual boot. I tried to upgrade 10.04 to 10.10 , everything was fine until I am asked to restart. After restart I selected Ubuntu from dual boot menu. It cant load Ubuntu and machine keeps rebooting.
View 3 Replies
View Related
Oct 30, 2010
im trying to load videos, its just black, plus the site itself seems to be loading all messed up.
View 5 Replies
View Related
Jan 28, 2011
I'm having difficulties booting into my Wubi 10.04 install on my computer. I've been using this install for at least 6 months now with minimal problems, but this one is serious enough to make me have to use my old Microsoft Vista install (which is no fun because it's, well, Vista). But anyway, to the problem:I got on my computer this morning and turned it on. It came up like normal showing the logo DELL as the BIOS (I believe revision A12 if it matters at all) boots up and then goes to the Windows GRUB menu. From there, like normal it shows two options: Windows Vista and Ubuntu. And from there I selected Ubuntu. Like normal it has a few small command-line things it goes through, but then it does one that I've never seen before and goes so fast I wasn't quite able to read it, and then the screen stops and restarts from the beginning.
Normally, after this it would bring up the GRUB menu showing the various kernels that are installed for Ubuntu. There, I would select the latest kernel and continue on to the Ubuntu login screen where I would login and there I'd be on Ubuntu.This might be because yesterday I did some system updates on Ubuntu and it wanted a restart (it said "Restart Required" and the power button on the screen was red). But, instead I just delayed the restart and eventually just Shut Down the computer that night, thinking the Shut Down might render the same thing.I'm hoping I can at least go back and recover the files I had on Ubuntu. Not that any were really important, but I'd kinda want them back regardless. If this is impossible, what should I do to get back at using Ubuntu again? Should I try to partition my harddrive? Should I reinstall Wubi? Or should I even just try to fix whatever is broken that prohibits me getting on to Ubuntu?
View 1 Replies
View Related
Mar 10, 2010
I bought HP p6270in desktop with windows7 preloaded now i need to install RHEL 5 on my PC. After i tried booting with RHEL 5 (Server Edition) OS Media
in boot screen i tried with graphical mode and text mode and resolution=1280x768 linux noprobe but after one screen loading scsi driver in blue screen the next screen is going with some unknown language in blue screen means not in human language and stops there itself and unable to continue my installation...
The HW specification of HP p6270in is as follows:
Part / FeatureSpecification / Support
Motherboard description�Motherboard manufacturer's name: Pegatron IPIEL-LA3
�HP/Compaq name: Eureka3-GL8
[Code]....
View 4 Replies
View Related
Jan 12, 2010
From the first look it seems that Gnome is constantly loading something: mouse is always busy. After you open a window, there is no minimize or close buttons and newly opened window (any program) is always in left top corner position. I havent done much with my system lately so I dont know where it come from. After rebooted was the same, then I installed auto updates and after next reboot network manager was not loaded. After logout, in login screen, the same story, mouse is still loading.
View 2 Replies
View Related