Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Rob, Ok - well your sock is correct! I did have some issues with character sets, hence those lines. They may also be not relevant. CFLAGS="-DHAVE_MYSQL_H -I/usr/local/include/mysql/ -L/usr/local/lib/ mysql/" ./configure [ your configure details --] I am not sure, b

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Rob Sterenborg
On Thu, September 21, 2006 10:12, Ben wrote: > Hi Rob, > Just 'cos I got it working on one machine doesn't say so much - > thanks for having a go. > > It may be a good idea to get a tail on the mysql log ( hostname.err ) This is the complete MySQL error log. As it is a fresh install, there's not m

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Rob Sterenborg
On Thu, September 21, 2006 07:44, Philip M. Gollucci wrote: >> I installed MySQL-5.0.24a from source into /usr/local, set it up (have >> it running), modified /etc/ld.so.conf and ran ldconfig. I downloaded >> httpd-2.2.3 and apr_dbd_myqsl.c again and applied your proposed changes to >> all those f

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
= When running make, I get these errors (sorry for the wrapping..): [your apu did not compile with mysql linked in.] --with-mysql=DIR also see above for the 1.2.8-dev requirement. I was not able to get this to work in 1.2.7 which comes with 2.2.3. Hi Philip, I go

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Rob, Just 'cos I got it working on one machine doesn't say so much - thanks for having a go. It may be a good idea to get a tail on the mysql log ( hostname.err ) Also, because I had put mysql into a custom directory, I needed to change some of the variables in my.cnf - that may make a

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-21 Thread Ben
Hi Philip, If you can provide a set of unambiguous buildsteps for MySQL 5.0.24a over httpd-2.2.3, that would be very useful. Anything else just doesn't really help me very much - due to the large number of interdependant factors involved. -b. On 21 Sep 2006, at 06:44, Philip M. Gollucci wr

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-20 Thread Philip M. Gollucci
> I installed MySQL-5.0.24a from source into /usr/local, set it up (have > it running), modified /etc/ld.so.conf and ran ldconfig. > I downloaded httpd-2.2.3 and apr_dbd_myqsl.c again and applied your > proposed changes to all those files. I'm using the apr/apr-util that is > included with httpd-2.

RE: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-20 Thread Rob Sterenborg
Ben wrote: ... > vi apr_dbd_mysql.c #rewrite the functions dbd_mysql_error and > dbd_mysql_check_conn as follows - > /* apr_dbd_mysql.c > -*/ > //Rewrite function dbd_mysql_check_conn (5 lines at line 744) ...

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Ben
Ben,   Thank you so much for spending time with this.   When I do   cd $HP_SRC/srclib/apr-util   ldd .libs/libaprutil-1.so   I do not see mysql in there.  How come?Vasiliy Boulytchev[EMAIL PROTECTED]I am not sure if you actually have the  .libs/libaprutil-1.so fileif you do, and libmysqlclient_r is

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Vasiliy Boulytchev
Ben, Thank you so much for spending time with this. When I do cd $HP_SRC/srclib/apr-util ldd .libs/libaprutil-1.so I do not see mysql in there. How come? Vasiliy Boulytchev [EMAIL PROTECTED] Ben wrote: Hi Vasily - you are lucky .. only one day wasted!! I just saw your sec

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Ben
Hi Vasily - you are lucky .. only one day wasted!! I just saw your second mail cd $HP_SRC/srclib/apr-util ./buildconf You don't need to do configure or make here - as it is taken care of later on by the big configure The need to run buildconf is so that the configure file gets to notic

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Vasiliy Boulytchev
Gents, Right after this step... cd $HP_SRC/srclib/apr-util ./buildconf should I do anything else? Such as ./configure, make make install? THANKS! Vasiliy Boulytchev [EMAIL PROTECTED] Ben wrote: (related to Re: [EMAIL PROTECTED] A NetHack-esque Journey of the da

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Vasiliy Boulytchev
Gents, A very sad day here at the office. After following your directions, step by step, I still get the error when firing up apache DBD: No driver for mysql Which step do you think I am missing? THANKS!!! Vasiliy Boulytchev [EMAIL PROTECTED] Ben wrote: On 15 Sep 2006, a

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Ben
On 15 Sep 2006, at 16:23, Nick Kew wrote: On Friday 15 September 2006 16:03, Ben wrote: The following method should build correctly. Moreover, error reporting is more informative - and has saved me a lot of time already - It's easy to misconfigure something, and get an error happening somew

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Nick Kew
On Friday 15 September 2006 16:03, Ben wrote: > The following method should build correctly. Moreover, error > reporting is more informative - and has saved me a lot of time already - > It's easy to misconfigure something, and get an error happening > somewhere. I don't have time to review this n

Re: [EMAIL PROTECTED] httpd-2.2.3 / MySQL 5.0.24a - buildsteps and improved error reporting

2006-09-15 Thread Ben
(related to Re: [EMAIL PROTECTED] A NetHack-esque Journey of the dark arts for DBD (mysql) under httpd-2.2.3 and Re: [EMAIL PROTECTED] Apache 2.2.3 and MySQL 5.0.24a Re: [EMAIL PROTECTED] mod_dbd mod_authn_dbd mod_authz_dbd confusion ) The following method should build corre