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
1 2005-10-17 20:21
Re: Error: Unable to connect to MySQL server. (11 replies, posted in PunBB 1.2 troubleshooting)
2 2005-10-17 07:11
Re: url containing [ (2 replies, posted in PunBB 1.2 troubleshooting)
Thanks for the info. ^^
3 2005-10-17 06:22
Re: Error: Unable to connect to MySQL server. (11 replies, posted in PunBB 1.2 troubleshooting)
Hmm check the punbb config.php file for
$db_type = 'mysql';
and change mysql to mysql4 or vice versa.
4 2005-10-17 05:46
Re: Error: Unable to connect to MySQL server. (11 replies, posted in PunBB 1.2 troubleshooting)
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.
5 2005-10-17 04:34
Re: Error: Unable to connect to MySQL server. (11 replies, posted in PunBB 1.2 troubleshooting)
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.
6 2005-10-17 04:04
Re: как изменить ширину колонки? (2 replies, posted in Archive)
style/imports/base.css
.tcr {WIDTH: 32%; TEXT-ALIGN: left}
7 2005-10-17 03:16
Topic: url containing [ (2 replies, posted in PunBB 1.2 troubleshooting)
This type of url doesn't work : [url]http://www.domain.com/file_[32FB8244].txt[/url]
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.