Well I made it all the way to the last point. Then I got this line (in the database section of the installer):
Failed to create table "fud_forum_notify" ("CREATE UNIQUE INDEX fud30_forum_notify_i_uf ON fud30_forum_notify (user_id,forum_id)"), SQL Reason: INDEX command denied to user 'web58'@'localhost' for table 'fud30_forum_notify'
Maybe something with my permission rights, but what I don't understand is why the table is created and the installer return this "error"? Is it a bug??? How can I get around this?
Looks like your MySQL user was granted permission to create tables, but not indexes. You may need to contact your hosting provider to grant you access.
% mysql -u root mysql
GRANT INDEX ON fuddb.* TO web58'@'localhost';
FLUSH PRIVILEGES;