Topic: Deleted my config.php

Deleted my config.php then i set it back up and my database backups wouldent work what do i do now yikes

Re: Deleted my config.php

What do you mean your database backups wont work. Enable debug mode and paste the error message, Is all the details correct?

Sorry. Unactive due to personal life.

Re: Deleted my config.php

um... i backed up using godaddy DB backup godaddy.com is my hosters

Re: Deleted my config.php

i think he means, he deleted his config.php by mistake.

MyFootballCafe.com  is Now Online!

Re: Deleted my config.php

You can manually create config.php. Here is an example of it:

<?php

$db_type = 'mysqli';
$db_host = 'localhost';
$db_name = 'pun13';
$db_username = 'root';
$db_password = '1234567';
$db_prefix = 'punbb_';
$p_connect = false;

$base_url = 'http://localhost/forum';

$cookie_name = 'forum_cookie';
$cookie_domain = '';
$cookie_path = '/';
$cookie_secure = 0;

define('FORUM', 1);

$db_type is a type of your DB, possible values: "mysqli" (MySQL Improved), "mysql" (MySQL), "pgsql" (PostgreSQL), "sqlite" (SQLite). If you have questions about other variables in config.php, feel free to ask.