Upgrade to .8 Didnt Take Me To Hello Screen

Having trouble installing serendipity?
Post Reply
leonardb
Regular
Posts: 53
Joined: Fri Jan 14, 2005 10:27 pm

Upgrade to .8 Didnt Take Me To Hello Screen

Post by leonardb »

Ok, last install to .7 was great, but this version isnt going as easy ..

i followed the directions Here

moved all the files made the necessary permission changes and when i go to the admin panel i see a new iface, but no welcome, hello or update script ..

the main page of the blog isnt functioning either.. all i see is the below

Code: Select all

Query failed:

SELECT 
                    

                    e.id,
                    e.title,
                    e.timestamp,
                    e.comments,
                    e.exflag,
                    e.authorid,
                    e.trackbacks,
                    e.isdraft,
                    e.allow_comments,
                    e.last_modified,

                    a.realname AS author,
                    a.email

                    , e.body, e.extended
                    
                FROM
                    serendipity_entries AS e
                    LEFT JOIN serendipity_authors a
                        ON e.authorid = a.authorid
                    LEFT JOIN serendipity_entrycat ec
                        ON e.id = ec.entryid
                    LEFT JOIN serendipity_category c
                        ON ec.categoryid = c.categoryid
                    
                    WHERE isdraft = 'false' AND e.timestamp <= '1115717198'
                    GROUP BY e.id
                    ORDER BY timestamp DESC
                     LIMIT 15

/ Unknown column 'a.realname' in 'field list'
I dont have my categories, images, archives or anything..

Any help Garvin?
Last edited by leonardb on Tue May 10, 2005 12:24 pm, edited 1 time in total.
leonardb
Regular
Posts: 53
Joined: Fri Jan 14, 2005 10:27 pm

Post by leonardb »

Just to add, im running php-4.3.11, so it isnt the php version..
leonardb
Regular
Posts: 53
Joined: Fri Jan 14, 2005 10:27 pm

Post by leonardb »

hmmm, now im locked out of the admin panel, eventhough im using the correct username and password..
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Leonard - check your serendipity_config_local.inc.php and see which $serendipity['Versioninstalled'] is in there?

If you cannot access the file via PHP write a simple script:

Code: Select all

<?php
chmod('serendipity_config_local.inc.php', 0777);
?>
and then execute that PHP script and you'll be able to edit this local file.

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
leonardb
Regular
Posts: 53
Joined: Fri Jan 14, 2005 10:27 pm

Post by leonardb »

garvinhicking wrote:Leonard - check your serendipity_config_local.inc.php and see which $serendipity['Versioninstalled'] is in there?

If you cannot access the file via PHP write a simple script:

Code: Select all

<?php
chmod('serendipity_config_local.inc.php', 0777);
?>
and then execute that PHP script and you'll be able to edit this local file.

Regards,
Garvin
Well, here is the result to your question..

Code: Select all

<?php
        /*
          Serendipity configuration file
          Written on Tue, 10 May 2005 05:20:54 -0400
        */

        $serendipity['versionInstalled']  = '0.8';
        $serendipity['dbName']            = 'serendipity';
        $serendipity['dbPrefix']          = 'serendipity_';
        $serendipity['dbHost']            = 'localhost';
        $serendipity['dbUser']            = 'Lenny';
        $serendipity['dbPass']            = 'pass';
        $serendipity['dbType']            = 'mysql';
        $serendipity['dbPersistent']      = false;

        // End of Serendipity configuration file
        // You can place your own special variables after here:

?>
Post Reply