473,396 Members | 1,767 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Install php_exif.dll

Using PHP 5.26 Thread Safe.

I noticed that php_exif.dll requires php_mbstring.dll. So both files get
placed into extension_dir folder which loads other files properly.

While trying to figure this out, I noticed some oddities that probably
should get fixed.

1) The PHP website suggests that libeay32.dll and ssleay32.dll should NOT
get placed into the %system% folder.

http://us3.php.net/manual/en/mysql.installation.php

It specifically states the following:

"Although copying libmysql.dll to the Windows system directory also works
(because the system directory is by default in the system's PATH), it's
not recommended."

So I see php5ts.dll resides in the same folder that both, libeay32.dll
and ssleay32.dll reside in. Functions that import from php5ts.dll do not
require php5ts.dll to get placed into either the extension_dir folder,
nor the system32 folder (php_sqlite.dll loads just fine and depends upon
php5ts.dll).

So, here comes oddity #2:

2) php5ts.dll does not exist anywhere in the registry. It ends up as an
unregistered file like many other PHP files. Only one line in PHP.INI
identifies a folder and that's the extension_dir setting. So PHP by
default knows that php5ts.dll resides where it resides. It resides in
the same folder where the httpd.conf loads php (php5_module directive).

So in regards to item (1) above, does anyone have any suggestions on how
to load libeay32.dll and ssleay32.dll and other files? Is there a default
location that php5apache.dll identifies? If not the same folder as that
file, why not? And why not the extensiond_dir setting? Is there another
setting anywhere in the httpd.conf or PHP.INI? I know that a PHPIniDir
directive exists for a later version of Apache - which will soon occur,
but I seek another solution for the Apache version (1.4x), other than
editing the PATH EV and other than placing it into the %system% folder.

Any suggestions are greatly welcomed.

--
Jim Carlock
Natural Cure For Pink-Eye (Conjunctivitis) (And A Sty Too?)
http://www.associatedcontent.com/art...nctivitis.html
Sep 21 '08 #1
1 5290
Jim Carlock wrote:
Using PHP 5.26 Thread Safe.

I noticed that php_exif.dll requires php_mbstring.dll. So both files get
placed into extension_dir folder which loads other files properly.

While trying to figure this out, I noticed some oddities that probably
should get fixed.

1) The PHP website suggests that libeay32.dll and ssleay32.dll should NOT
get placed into the %system% folder.

http://us3.php.net/manual/en/mysql.installation.php

It specifically states the following:

"Although copying libmysql.dll to the Windows system directory also works
(because the system directory is by default in the system's PATH), it's
not recommended."

So I see php5ts.dll resides in the same folder that both, libeay32.dll
and ssleay32.dll reside in. Functions that import from php5ts.dll do not
require php5ts.dll to get placed into either the extension_dir folder,
nor the system32 folder (php_sqlite.dll loads just fine and depends upon
php5ts.dll).

So, here comes oddity #2:

2) php5ts.dll does not exist anywhere in the registry. It ends up as an
unregistered file like many other PHP files. Only one line in PHP.INI
identifies a folder and that's the extension_dir setting. So PHP by
default knows that php5ts.dll resides where it resides. It resides in
the same folder where the httpd.conf loads php (php5_module directive).

So in regards to item (1) above, does anyone have any suggestions on how
to load libeay32.dll and ssleay32.dll and other files? Is there a default
location that php5apache.dll identifies? If not the same folder as that
file, why not? And why not the extensiond_dir setting? Is there another
setting anywhere in the httpd.conf or PHP.INI? I know that a PHPIniDir
directive exists for a later version of Apache - which will soon occur,
but I seek another solution for the Apache version (1.4x), other than
editing the PATH EV and other than placing it into the %system% folder.

Any suggestions are greatly welcomed.
There is no reason any DLL has to be registered if it isn't a system
process and is in the path. In fact, the vast majority of DLL's used
are NOT found in the registry.

All of the DLL's just need to be in a directory which is listed in your
PATH environment. I keep mine in a separate directory (on a different
disk) along with my php files.

And if you don't want to edit your environment variable, start Apache
via a batch job which first sets the environment then starts Apache.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
js*******@attglobal.net
==================

Sep 21 '08 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Yun Guan | last post by:
Hello mysql gurus, I am trying to run perl on mysql database on Red Hat box. I want to install DBI and DBD:mysql using CPAN: perl -MCPAN -e shell cpan>install DBI The above succeeded, but...
1
by: leegold | last post by:
extension=php_exif.dll when I uncomment this apache will not start - what is wrong? I already uncommented mbstring.dll and restarted apached w/no problem. using win2k php5 thanks
1
by: Peter Hartmann | last post by:
How do I influence the platform type during install? Could you look at this and tell me what I'm doing wrong? It's still using information from get_platform instead of using my preference. #...
7
by: p | last post by:
WE had a Crystal 8 WebApp using vs 2002 which we upgraded to VS2003. I also have Crystal 9 pro on my development machine. The web app runs fine on my dev machine but am having problems deploying....
5
by: Ajith Menon | last post by:
I have to install .NET framework 3.0. I already have .NET Framework 1.1 installed on my machine. I don't want to remove framework 1.1 since some of the critical applications are using it. While...
1
by: Sorin Schwimmer | last post by:
Hi All, After a disaster in which I lost my whole harddrive, I decided to install the newest everything that I use. I put the latest Gentoo Linux, with gcc 4.1.1, installed tcl/tk 8.4.14 and...
3
by: Daniel Loose | last post by:
hello, try to install php 5.2 on apache 1.3 on winxp. apache is fine. php says on start "unable to load dynamic library '<path>' " -- but <path> *does* exist! extension_dir...
1
by: =?Utf-8?B?Qi5BaGxzdGVkdA==?= | last post by:
Hi all, This is something that I have been toying with for about a week now. What I want to achieve is Install a Service with Customised parameters (using InstallUtil.exe) for User Name. Example...
3
by: Jean-Marc Blaise | last post by:
Hi, I've been trying for 2 hours to install in silent mode a DB2 9 runtime client. Why didn't you make this process as simple as for the CLIENT install ? It is not the same setup command, you...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.