A cheap way to generate a graphic of web site pages relations…

Do you need a free tool to generate a graphical representation of a web site ?
More...

The MySQL "lost connection problem" when using mysql.rb gem

This problem may have various origins, some related to not using the right libmysql or the correct gcc to build the mysql native adapter.
The source of the problem may also be related to the fact that your MysQL database is using the old password format while the MySQL version being > 4.1.
In that case, mysql.rb assumes your database is using the new password format.
Either you ugrade your database to use the new password format, either you patch mysql.rb to force use the old format:
change the
@pre_411 assignment in real_connect to @pre_411 = true (and comment the change !!!)
More...