Page 1 of 1
You cannot signup this guestbook at the moment!
Posted: Sun Jul 02, 2006 12:26 am
by trmay0519
Script URL: (Removed by Klemen as requested by Author)
Version of script: 1.41
Version of PHP: ??
Hosting company: none
Have you searched THIS FORUM for your problem: thoroughly
(if not please do before posting)
If so, what terms did you try: error
Write your message below:
I have tried almost every combination to stop getting this error message. I would love to get this set up for my daughter. If I have "angered the SPAM gods" please help me please them!
Posted: Sun Jul 02, 2006 2:15 pm
by Klemen
Hi,
You have some other problem, probably with sessions. What is your $settings['junkmark_limit'] set to in setting.php?
Also upload these two files to your server and post a link to them here:
http://www.phpjunkyard.com/extras/phpinfo.zip
http://www.phpjunkyard.com/extras/session_test.zip
You haven't been editing gbook.php, have you?
Posted: Sun Jul 02, 2006 2:56 pm
by trmay0519
What is your $settings['junkmark_limit'] set to in setting.php?
It is 60
(Removed by Klemen as requested by Author) is where I posted the files.
You haven't been editing gbook.php, have you?
I only changed one line I found that you posted to change the date stamp to include the time. It was doing this before the change. I also only changed the 'style.css' file to change the background color.
Thanks for all your help. I'm learning how to do all this stuff as I go.
Here is what my settings file is currently just so you can see
/* Use "Your website" field? 1 = YES, 0 = NO */
$settings['use_url']=0;
/* Allow private posts (readable only by admin)? 1 = YES, 0 = NO */
$settings['use_private']=1;
/* Allow smileys? 1 = YES, 0 = NO */
$settings['smileys']=1;
/* Send you an e-mail when a new entry is added? 1 = YES, 0 = NO */
$settings['notify']=1;
/* Your e-mail. Only required if $settings['notify'] is set to 1 */
$settings['admin_email']='hadley@***************;
/* URL of the gbook.php file. Only required if $settings['notify'] is set to 1 */
$settings['gbook_url']=(Removed by Klemen as requested by Author);
/* Filter bad words? 1 = YES, 0 = NO */
$settings['filter']=1;
/* Filter language. Please refer to readme for info on how to add more bad words
to the list! */
$settings['filter_lang']='en';
/* Prevent automated submissions (recommended YES)? 1 = YES, 0 = NO */
$settings['autosubmit']=1;
/* Checksum - just type some digits or chars. Used to help prevent SPAM */
$settings['filter_sum']='***********';
/* Use JunkMark(tm) SPAM filter (recommended YES)? 1 = YES, 0 = NO */
$settings['junkmark_use']=1;
/* JunkMark(tm) score limit after which messages are marked as SPAM */
$settings['junkmark_limit']=60;
/* Show "NO GUESTBOOK SPAM" banner? 1 = YES, 0 = NO */
$settings['show_nospam']=0;
/* Prevent multiple submissions in the same session? 1 = YES, 0 = NO */
$settings['one_per_session']=0;
/* Maximum chars word length */
$settings['max_word']=75;
/* >>> OPTIONAL SETTINGS <<< */
/* Name of the file where guestbook entries will be stored */
$settings['logfile']="entries.txt";
/* DO NOT EDIT BELOW */
if (!defined('IN_SCRIPT')) {die('Invalid attempt!');}
?>
Posted: Mon Jul 03, 2006 8:07 am
by Klemen
Hello,
Just as I thought, you are having problems with sessions. Contact your hosting company and ask them to check PHP setup because sessions don't seem to work. You can give them this simple test file for reference:
(Removed by Klemen as requested by Author)
Posted: Wed Jul 05, 2006 4:03 am
by trmay0519

That was the correct problem! My host had to set the session save path!
Thank you so much for this script and all your help!
info
Posted: Wed Jul 12, 2006 7:16 pm
by ravetildon1
I have been trying to sign a couple guestbooks and get that same message.
Posted: Thu Jul 13, 2006 9:44 am
by Klemen
Ravetildon1,
Please don't post the same question in 8 topics, posting it ONCE is enough.
If you read any of the topics you posted to you would have already known - the "You cannot signup this guestbook at the moment!" appears when you do something to angry the JunkMark filter. Once you get that message GBook will not allow you to post anything during the same browser session. You need to close ALL browser windows before you will be able to post again.
You can enable posting URL simply by setting $settings['use_url'] to 1 in settings (version 1.41). This will add the "Website URL" field to the GBook but you still won't be able to post URLs in comments because they do not belong there and posting URLs in comments is being abused by spammers.
The philosophy behind is that a GUESTBOOK is meant for other people to post comments about YOUR website and not advertise their own sites.
sorry
Posted: Thu Jul 13, 2006 9:50 am
by ravetildon1
sorry, my bad.
I though i had read em, but coudl not figure it out...
same problem
Posted: Fri Jul 14, 2006 2:38 pm
by dlarocca
Hello, I am getting the same error as trmay0519. I have gone through all the fixes and I'm still getting the "You cannot signup this guestbook at the moment!" error.
Here is my settings.php code:
Code: Select all
<?php
/* >>> SETUP YOUR GUESTBOOK <<< */
/* Detailed information found in the readme file */
/* File version: 1.4 $ Timestamp: May 9 2006 17:48 */
/* Password for admin area */
$settings['apass']='******';
/* Website title */
$settings['website_title']="Cerebral-Art";
/* Website URL */
$settings['website_url']='http://www.Cerebral-Art.com/';
/* Guestbook title */
$settings['gbook_title']="Cerebral-Art - guestbook";
/* Use "Your website" field? 1 = YES, 0 = NO */
$settings['use_url']=1;
/* Allow private posts (readable only by admin)? 1 = YES, 0 = NO */
$settings['use_private']=1;
/* Allow smileys? 1 = YES, 0 = NO */
$settings['smileys']=1;
/* Send you an e-mail when a new entry is added? 1 = YES, 0 = NO */
$settings['notify']=1;
/* Your e-mail. Only required if $settings['notify'] is set to 1 */
$settings['admin_email']='Cerebr4l@gmail.com';
/* URL of the gbook.php file. Only required if $settings['notify'] is set to 1 */
$settings['gbook_url']='http://www.cerebral-art.com/guestbook/gbook.php';
/* Filter bad words? 1 = YES, 0 = NO */
$settings['filter']=0;
/* Filter language. Please refer to readme for info on how to add more bad words
to the list! */
$settings['filter_lang']='en';
/* Prevent automated submissions (recommended YES)? 1 = YES, 0 = NO */
$settings['autosubmit']=1;
/* Checksum - just type some digits or chars. Used to help prevent SPAM */
$settings['filter_sum']='du3psfwewr';
/* Use JunkMark(tm) SPAM filter (recommended YES)? 1 = YES, 0 = NO */
$settings['junkmark_use']=1;
/* JunkMark(tm) score limit after which messages are marked as SPAM */
$settings['junkmark_limit']=60;
/* Show "NO GUESTBOOK SPAM" banner? 1 = YES, 0 = NO */
$settings['show_nospam']=0;
/* Prevent multiple submissions in the same session? 1 = YES, 0 = NO */
$settings['one_per_session']=1;
/* Maximum chars word length */
$settings['max_word']=75;
/* >>> OPTIONAL SETTINGS <<< */
/* Name of the file where guestbook entries will be stored */
$settings['logfile']="entries.txt";
/* DO NOT EDIT BELOW */
if (!defined('IN_SCRIPT')) {die('Invalid attempt!');}
?>
--------
I also uploaded both of the files you suggested to trmay0519 and they are located here:
http://www.cerebral-art.com/gbook/
Thanks very much for giving out this guestbook! I just want to get it to work

[/code]
Posted: Fri Jul 14, 2006 4:59 pm
by Klemen
This is one of the first 5 topics in GBook forum (sticky), have you READ it?
viewtopic.php?t=938
Posted: Fri Jul 14, 2006 6:06 pm
by dlarocca
Yes, I read it. I closed all browser windows, I tried using firefox and IE, I turned urls on and off and it still doesn't work. Am I missing something?
Posted: Sat Jul 15, 2006 12:37 pm
by Klemen
Ah, you seem to have problems with sessions..Upload these two files to your server and post a link to them here, will have a look:
http://www.phpjunkyard.com/extras/phpinfo.zip
http://www.phpjunkyard.com/extras/session_test.zip
Posted: Sat Jul 15, 2006 7:21 pm
by dlarocca
The files have been uploaded here:
http://www.cerebral-art.com/gbook/
Thanks for taking a look.
Posted: Sat Jul 15, 2006 9:54 pm
by Klemen
Yep, you're having problems with sessions in general.
Contact your hosting company and ask them to properly configure PHP sessions. Changing session.save_path in php.ini from the default value /var/php_sessions to a valid session folder should fix everything.
Posted: Wed Jul 19, 2006 1:34 pm
by dlarocca
That fixed it, thanks!