Hello Everyone,
I am a newbie to DRUPAL, i am working on drupal6.10. In the guestbook 6.x-1.1 module where can i retrieve/find the entries written by anonymous user for Site Guestbook. When i click on Guestbooks, i donot find any entry of users( i have entered 5 times in my site guestbook as anonymous user). What i actually want is to whenever a user enters in my siteguestbook, all the entries along with the current users entry should be displayed just below the siteguestbook or if possible provide a separate link for users to see the guestbook entries.

Can anyone give me step by step procedure on how to achieve this?
Any suggestions would be greatly appreciated. thanks in advance

Regards,
judef

Comments

judef’s picture

Hello anybody out there with a similar issue, can provide help.
Regards,
judef

judef’s picture

Status: Active » Fixed

Hello everyone,
Finally its fixed, there was a database script error in guestbook.install. The database table was not created due to this error and i could see only the form on the page. I created the table manually and then installed the module. Here`s the query

CREATE TABLE guestbook (
`id` INT unsigned NOT NULL auto_increment,
`recipient` INT unsigned NOT NULL DEFAULT 0,
`author` INT unsigned NOT NULL DEFAULT 0,
`anonname` VARCHAR(128),
`anonemail` VARCHAR(128),
`anonwebsite` VARCHAR(128),
`message` TEXT NOT NULL,
`commentauthor` INT unsigned NOT NULL DEFAULT 0,
`comment` TEXT NULL,
`created` INT unsigned NOT NULL DEFAULT 0,

PRIMARY KEY (id),
INDEX recipient (recipient),
INDEX commentauthor (commentauthor),
INDEX created (created)
)

Regards,
Judef

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.