I have a Solaris box running Apache 1.3.26 that uses mod_auth_external to restrict access to certain directories. This module allows me to pass the username & password to an external program (hence the name) in order to authenticate the user. I have a large number of users and using regular htaccess password files is not practical.
My problem is this: I store my user accounts in MySql and want to use a Perl/DBI script as the password checker. However, when the perl program is invoked by the mod_auth_external module, it does not inherit the web server's environment variables. Without the LD_LIBRARY_PATH variable set to include "/usr/local/mysql/lib", the DBI connection fails every time because it cannot find the libmysqlclient.so files. I have tried setting the environment variable in my httpd.conf file and in the script itself like this:
$ENV{'LD_LIBRARY_PATH'} = '/usr/lib:/usr/local/lib:/usr/local/mysql/li
+b';
but from what I understand you cannot change an environment variable after the script has been executed.
Does anyone know of a workaround for this? I would prefer to simply call a single perl program and not have to call one program to set an ENV variable, then call another to actually run the DBI:mysql call. Any suggestions would be very appreciated. Thanks.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.