NEW version of GBook: 1.7.2

Dr. GBooky is here to help you with your guestbook problems ...
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

NEW version of GBook: 1.7.2

Post by Klemen »

A new version of GBook has just been released: 1.7.2

1.7.1 was just a minor change fixing a small bug (disable smileys don't work) and a modification to prevent false antivirus alerts. I hope I have time finish the full version 1.8 soon :oops:

1.7.2 fixes a missing language tag in 1.7.1

DOWNLOAD 1.7.2:
http://www.phpjunkyard.com/php-guestbook-script.php
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Re: NEW version of GBook: 1.7.1

Post by Henrie »

Hi Klemen,

I never noticed that the disable smileys option did not work, and I have played a lot with the Gbook version 1.7 in the 5 years this version was online. It seems not many users use it, but good to have it fixed anyway.

I am looking forward to see what version 1.8 brings.
It seems to me not as many people use Gbook anymore because not many questions anymore in the forum and my topic with HL-mods does not get as many viewers as it used to.

Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: NEW version of GBook: 1.7.1

Post by Klemen »

More and more antivirus software marked GBook as a "potential virus" due to the encoded license and spam protection code, so hopefully this is one of the steps helping improve it :wink:

I have 1.8 like 80% ready (the changes in 1.7.1 were actually backported from 1.8), also LinkMan 2.0 (with same UI update as CCount received), just need to find more time to actually finish, test and release them. Oh, an HESK 2.6.0 is also nearing beta status :)
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Re: NEW version of GBook: 1.7.1

Post by Henrie »

Hi Klemen,

I looked at the new code and indeed not many changes. But I found that you did not use all the latest Gbook files in your update.

On November 25th, 2009 you have added a translation string that is not included in version 1.7.1
language.inc

Code: Select all

/* Added 25th November 2009 */
$lang['t88']='Submit My Comment';
sign_form.php
In version 1.7.1

Code: Select all

<input type="submit" value="Submit My Comment" class="submit" />
In version 1.7

Code: Select all

<input type="submit" value="<?php echo $lang['t88']; ?>" class="submit" />
Will there be version 1.7.2 soon or just a silent version update with only a new date added in the language.inc file as you did previously?

Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: NEW version of GBook: 1.7.1

Post by Klemen »

Thanks for the heads up, Henrie. This is exactly why silent updates are bad and should never be used, even if file changes only minutes after publishing... :oops:

I released 1.7.2 with this fixed.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Henrie
Posts: 1095
Joined: Sun Aug 14, 2005 8:57 pm

Re: NEW version of GBook: 1.7.2

Post by Henrie »

I fully agree with you about silent updates.
That is why on my local harddisk the latest GBook 1.7 version I have is version 1.7f :wink:

Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
StephenTaylor
Posts: 8
Joined: Wed Jul 24, 2013 11:38 am

Re: NEW version of GBook: 1.7.2

Post by StephenTaylor »

Klemen wrote:A new version of GBook has just been released: 1.7.2

1.7.1 was just a minor change fixing a small bug (disable smileys don't work) and a modification to prevent false antivirus alerts. I hope I have time finish the full version 1.8 soon :oops:

1.7.2 fixes a missing language tag in 1.7.1

DOWNLOAD 1.7.2:
http://www.phpjunkyard.com/php-guestbook-script.php
Just updated! :). Thanks man!.
StephenTaylor
Posts: 8
Joined: Wed Jul 24, 2013 11:38 am

Re: NEW version of GBook: 1.7.2

Post by StephenTaylor »

I just found this in my error log. PHP Notice: Undefined index: add in /home/public_html/gbook.php on line 751

Its when i was testing my gbook after the update. And i click submit post without anything entered in the boxes. And then it pops up this error message. I have never had any error logs before with gbook. Do you now how i could stop this from happening.
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: NEW version of GBook: 1.7.2

Post by Klemen »

You can change this in your settings.php file

Code: Select all

ini_set('log_errors', 1);
to

Code: Select all

ini_set('log_errors', 0);
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
StephenTaylor
Posts: 8
Joined: Wed Jul 24, 2013 11:38 am

Re: NEW version of GBook: 1.7.2

Post by StephenTaylor »

Klemen wrote:You can change this in your settings.php file

Code: Select all

ini_set('log_errors', 1);
to

Code: Select all

ini_set('log_errors', 0);
Thank you so much!. That worked perfect. 8)
djames
Posts: 9
Joined: Sun Mar 17, 2013 12:02 am

Re: NEW version of GBook: 1.7.2

Post by djames »

I have upgraded to V.1.7.2 and all looks fine, with all the old messages displaying, until I try to sign the guestbook when I get a message - "You cannot sign this guestbook at this time!"

I've checked everything many times, including file/folder permissions, but can't see the problem.

Address is http://www.kenilworth.qld.au/gbook/gbook.php

The session_test and phpinfo zip files are in the gbook folder - do they need to be expanded?

Any suggestions appreciated.

Dennis James
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Re: NEW version of GBook: 1.7.2

Post by Klemen »

I was able to add a message to your guestbook without problems. Try closing all browser windows then try again.

Also see readme.html file for details about the $settings['one_per_session'] variable.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
djames
Posts: 9
Joined: Sun Mar 17, 2013 12:02 am

Re: NEW version of GBook: 1.7.2

Post by djames »

Hello Klemen,

Thanks but I still can't get this to work from my website (www.kenilworth.qld.au). The guestbook opens in a new window and an iframe. Could this be a problem?
djames
Posts: 9
Joined: Sun Mar 17, 2013 12:02 am

Re: NEW version of GBook: 1.7.2

Post by djames »

Hello Klemen,

Please ignore the last post - discovered an error in the site code accessing an old setup file.

Thanks again,

Dennis James
japioo
Posts: 5
Joined: Sat Apr 11, 2015 3:23 pm

Re: NEW version of GBook: 1.7.2

Post by japioo »

Hi Klemen,

I installed 1.7.2 but cannot find the possibility to require email address in the settings.php ( Bold ) anymore ?

Jaap.
Post Reply