• [MOD] guestbook 5 0 5 1
Currently:  

Author Topic: [MOD] guestbook  (Read 528766 times)

0 Members and 1 Guest are viewing this topic.

Offline lemccoy

  • Jr. Member
  • **
  • Posts: 90
    • View Profile
    • DrunkIsland
Re: [MOD] guestbook
« Reply #195 on: March 28, 2007, 08:42:34 PM »
ditto i need the reinstall file thanks to the stupid tra-la-laing hackers

Offline callmefreak

  • Newbie
  • *
  • Posts: 28
    • View Profile
Re: [MOD] guestbook
« Reply #196 on: March 29, 2007, 08:06:31 AM »
or could anyone at least give us the mysql attributes so we can install that way?

Offline mihagriha

  • Pre-Newbie
  • Posts: 1
    • View Profile
Re: [MOD] guestbook
« Reply #197 on: April 01, 2007, 01:53:49 PM »
Help me, please

Need "install_guestbook.zip"

Offline jrey

  • Full Member
  • ***
  • Posts: 165
    • View Profile
    • http://www.jrey.net
Re: [MOD] guestbook
« Reply #198 on: April 04, 2007, 01:07:23 PM »
I need it too...

Offline son_gokou

  • Full Member
  • ***
  • Posts: 199
    • View Profile
Re: [MOD] guestbook
« Reply #199 on: April 16, 2007, 03:11:28 AM »
I need too

Offline Alessio

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
    • Webax.it [Alessio's photogallery]
Re: [MOD] guestbook
« Reply #200 on: April 25, 2007, 03:50:42 PM »
Instead of using install_guestbook.php try to run this code in your phpmyadmin, but please make a backup before because I'm not sure it's correct!


Code: [Select]
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('guestbook_view', '1');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('user_delete_guestbook', '0');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('guestbook_post', '1');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('user_edit_guestbook', '0');
CREATE TABLE `4images_guestbook` (
`comment_id` mediumint(8) NOT NULL auto_increment,
`user_name` varchar(100) NOT NULL default '',
`comment_site` varchar(255) NOT NULL default '',
`comment_date` int(10) unsigned NOT NULL default '0',
`comment_text` text NOT NULL,
`comment_ip` varchar(20) NOT NULL default '',
PRIMARY KEY (`comment_id`),
KEY `comment_date` (`comment_date`)
) TYPE=MyISAM;
Alessio
my homepage: http://www.webax.it

Offline cuba

  • Pre-Newbie
  • Posts: 1
    • View Profile
install_guestbook.zip
« Reply #201 on: April 26, 2007, 02:11:19 PM »
I must found this file!

Please help me end people from forum.

My email: j_a_k_u_b@tlen.pl
« Last Edit: April 26, 2007, 09:09:34 PM by cuba »

Offline lowwriter

  • Pre-Newbie
  • Posts: 2
    • View Profile
Re: [MOD] guestbook
« Reply #202 on: May 10, 2007, 08:02:46 PM »
Instead of using install_guestbook.php try to run this code in your phpmyadmin, but please make a backup before because I'm not sure it's correct!


Code: [Select]
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('guestbook_view', '1');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('user_delete_guestbook', '0');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('guestbook_post', '1');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('user_edit_guestbook', '0');
CREATE TABLE `4images_guestbook` (
`comment_id` mediumint(8) NOT NULL auto_increment,
`user_name` varchar(100) NOT NULL default '',
`comment_site` varchar(255) NOT NULL default '',
`comment_date` int(10) unsigned NOT NULL default '0',
`comment_text` text NOT NULL,
`comment_ip` varchar(20) NOT NULL default '',
PRIMARY KEY (`comment_id`),
KEY `comment_date` (`comment_date`)
) TYPE=MyISAM;

It works perfectly :D
Thanks!

Offline son_gokou

  • Full Member
  • ***
  • Posts: 199
    • View Profile
Re: [MOD] guestbook
« Reply #203 on: May 14, 2007, 05:05:33 PM »
This MID  isnīt working for me. I use version 1.7.2

Offline Alessio

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
    • Webax.it [Alessio's photogallery]
Re: [MOD] guestbook
« Reply #204 on: June 05, 2007, 08:23:55 PM »
I have a problem, this mod doesn't work if the text of the comment contains accentuated character, why?!

http://www.webax.it/guestbook.php
« Last Edit: June 18, 2007, 07:38:19 PM by Alessio »
Alessio
my homepage: http://www.webax.it

Offline ALev

  • Pre-Newbie
  • Posts: 2
    • View Profile
Re: [MOD] guestbook
« Reply #205 on: June 27, 2007, 07:45:06 PM »
Dear friends!

Badly in need of the file install_guestbook.zip.

Would You zip on the mail rusinter@gmail.com, please.

Offline Po4emu4Man

  • Newbie
  • *
  • Posts: 12
    • View Profile
Re: [MOD] guestbook
« Reply #206 on: June 29, 2007, 02:14:33 AM »
Please, share it with me too!!! (install_guestbook.zip)

mcmoll@breezein.net

This code don't work for me :(
Code: [Select]
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('guestbook_view', '1');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('user_delete_guestbook', '0');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('guestbook_post', '1');
INSERT INTO `4images_settings` (`setting_name`, `setting_value`) VALUES ('user_edit_guestbook', '0');
CREATE TABLE `4images_guestbook` (
`comment_id` mediumint(8) NOT NULL auto_increment,
`user_name` varchar(100) NOT NULL default '',
`comment_site` varchar(255) NOT NULL default '',
`comment_date` int(10) unsigned NOT NULL default '0',
`comment_text` text NOT NULL,
`comment_ip` varchar(20) NOT NULL default '',
PRIMARY KEY (`comment_id`),
KEY `comment_date` (`comment_date`)
) TYPE=MyISAM;

Offline mawenzi

  • Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: [MOD] guestbook
« Reply #207 on: June 29, 2007, 09:54:30 AM »
@Po4emu4Man

... you must run this code in your PhpMyAdmin -> Edit ... !
Your first three "must do" before you ask a question ! ( Đ by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline Po4emu4Man

  • Newbie
  • *
  • Posts: 12
    • View Profile
Re: [MOD] guestbook
« Reply #208 on: June 29, 2007, 10:12:42 AM »
Mawenzi, I know.
I was generating PHP file in SQL Generator. I make my own file with this code, but there was a problem.
Before this installation no problems was detected with that way.

Maybe there was another problems. Thanx for help, but I don't want Guestbook anymore. I'll install the board better.

Offline Alessio

  • Jr. Member
  • **
  • Posts: 59
    • View Profile
    • Webax.it [Alessio's photogallery]
Re: [MOD] guestbook
« Reply #209 on: August 27, 2007, 10:23:30 AM »
I have a problem, this mod doesn't work if the text of the comment contains accentuated character, why?!

http://www.webax.it/guestbook.php

help me, please!
« Last Edit: January 26, 2008, 11:22:41 AM by mawenzi »
Alessio
my homepage: http://www.webax.it