Page 1 of 1

Help

Posted: Thu Nov 15, 2007 9:20 am
by hull
Dear Forumers,
a friend made for me a Serendipity blog on my web page (www.idrobiologia.org) but after a while the blog diappeared. You can find the blog on the bar at BLOG.
Can I have some help or advice for:
1) reactivating the blog
2) have back the items I wrote on the blog
Thank you so much for your help.
Vincent

Re: Help

Posted: Thu Nov 15, 2007 9:47 am
by garvinhicking
Hi!

This error can happen if the file "serendipity_config_local.inc.php" is missing or not readable. Please check with your friend or hoster what happened with this file.

The file needs to look like this and hold your database access information:

Code: Select all

<?php
        $serendipity['versionInstalled']  = '1.2';
        $serendipity['dbName']            = 'serendipity';
        $serendipity['dbPrefix']          = 'serendipity_';
        $serendipity['dbHost']            = '127.0.0.1';
        $serendipity['dbUser']            = 'root';
        $serendipity['dbPass']            = 'root';
        $serendipity['dbType']            = 'mysql';
        $serendipity['dbPersistent']      = false;
        $serendipity['dbCharset']         = 'latin1';
?>