Ok so if you're on your own for the server maintenance, you should be able to do this :
http://dev.mysql.com/doc/refman/5.0/en/old-client.html

2

(2 replies, posted in PunBB 1.2 troubleshooting)

Thanks for the info. ^^

Hmm check the punbb config.php file for

$db_type = 'mysql';

and change mysql to mysql4 or vice versa.

config.php is a file inside your forum root folder, you have to edit everything that has changed (since you moved to a new server).
So you'll need :

- your new mysql server url (for $db_host value) the old one was set to 'localhost' the new one may be different.
- your new database name (for $db_name value)
- your new database username (for $db_username value) old one was 'lintec_jeremy'
- your new database password (for $db_password value)

your host probably gave you all those informations by e-mail along with your ftp info.

If you didn't already do it, you'll also have to make a backup of your old database and import it into the new one by using phpmyadmin for example.
Have fun. tongue

In config.php :

$db_host = 'localhost';
$db_name = 'blabla';
$db_username = 'blabla';
$db_password = 'blabla';

replace everything that has changed, like $db_host for example.

style/imports/base.css

.tcr {WIDTH: 32%; TEXT-ALIGN: left}

wink

This type of url doesn't work : [url]http://www.domain.com/file_[32FB8244].txt[/url] neutral
I know it's because of the opening bracket, but I don't know what I should change to repair this... something in do_clickable() $text = preg_replace(...) probably ?

Thanks for your help. big_smile