• [MOD] guestbook 5 0 5 1
Currently:  

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

0 Members and 1 Guest are viewing this topic.

Offline Lucifix

  • Hero Member
  • *****
  • Posts: 710
    • View Profile
    • http://www.slo-foto.net
Re: [MOD] guestbook
« Reply #90 on: September 12, 2005, 10:03:08 AM »
Are you sure you click on this link?

http://www.slo-foto.net/download-file-17.html

Offline gifwav

  • Newbie
  • *
  • Posts: 37
    • View Profile
    • http://www.funpics4u.com
Re: [MOD] guestbook
« Reply #91 on: September 12, 2005, 10:11:22 AM »
Yes, I've tried it in Internet Explorer and Firefox and no result.
I retyped the displayed (red) password and clicked "Fetch It".
A new screen appears with the text:
Quote
Stran ne obstaja!

www.slo-foto.net

Offline Lucifix

  • Hero Member
  • *****
  • Posts: 710
    • View Profile
    • http://www.slo-foto.net
Re: [MOD] guestbook
« Reply #92 on: September 12, 2005, 10:22:49 AM »
You're right, I'll fix this as soon as I come home (4 hours) ;)

Offline Lucifix

  • Hero Member
  • *****
  • Posts: 710
    • View Profile
    • http://www.slo-foto.net
Re: [MOD] guestbook
« Reply #93 on: September 12, 2005, 03:56:58 PM »
It should work now!

Offline fuzionative

  • Pre-Newbie
  • Posts: 4
    • View Profile
Re: [MOD] guestbook
« Reply #94 on: September 12, 2005, 03:57:41 PM »
Great, much apreciated  :D

Offline Amosnet

  • Full Member
  • ***
  • Posts: 104
    • View Profile
    • Bilder verkaufen
Re: [MOD] guestbook
« Reply #95 on: September 13, 2005, 10:10:32 PM »
Also a big thank you from me

Can anybody tell me, how can i only allow registered user to write into the book`?
I love 4images! http://www.fotos-verkaufen.de Fotos verkaufen online Tips und Tricks und http://www.fotoskaufen.de

Offline obmob01

  • Jr. Member
  • **
  • Posts: 60
    • View Profile
Re: [MOD] guestbook
« Reply #96 on: September 25, 2005, 05:03:41 PM »
You know, i never neede to delete or edit guestbook posts, as an admin i tried, it opens the right template, but empty, no options to edit or delete the item.

I must do this via PHPmyAdmin, anyone has this same problem? 8O

Offline kief24

  • Sr. Member
  • ****
  • Posts: 267
    • View Profile
Re: [MOD] guestbook
« Reply #97 on: September 25, 2005, 07:11:26 PM »
Quote
Every Day at the same time i become a Spam Entry in my Guestbook.

I have the same problem ...

I tried this mod

http://www.4homepages.de/forum/index.php?topic=6989.0

but I either did something wrong or it does not work ...  :|

the same for me.
I installed it. Everything looks good, no error messages, but it doesn't stop the spam

V@no says something there about editing the code from simonconsulting.com to make it work with 4 images, but i don't understand.

Quote
there are two things I must add:
1) 4images prepare "super globals" (_GET and _POST) to work properly with "magic quotes" turned on, so for better compability u should use $HTTP_POST_VARS (dont foget add them to global list.)
2) $session_info['session_ip'] should be replace with $site_sess->session_info['session_ip'] and global $site_sess; should be used for that too.

Maybe it's because of that that the mod doesn't work properly.

Offline Flo2005

  • Full Member
  • ***
  • Posts: 237
  • Copy & Paste Profi :)
    • View Profile
    • snuup.de! - Bilder - Sounds - Videos - fun4FREE!
Re: [MOD] guestbook
« Reply #98 on: October 11, 2005, 07:16:05 PM »
Hi!

My Guestbook is missing the bbcode.js

Now I build this file

Quote
tag_prompt = "{lang_tag_prompt}";

link_text_prompt = "{lang_link_text_prompt}";
link_url_prompt = "{lang_link_url_prompt}";
link_email_prompt = "{lang_link_email_prompt}";

list_type_prompt = "{lang_list_type_prompt}";
list_item_prompt = "{lang_list_item_prompt}";

tags = new Array();

function getarraysize(thearray) {
  for (i = 0; i < thearray.length; i++) {
    if ((thearray == "undefined") || (thearray == "") || (thearray == null)) {
      return i;
    }
  }
  return thearray.length;
}

function arraypush(thearray,value) {
  thearraysize = getarraysize(thearray);
  thearray[thearraysize] = value;
}

function arraypop(thearray) {
  thearraysize = getarraysize(thearray);
  retval = thearray[thearraysize - 1];
  delete thearray[thearraysize - 1];
  return retval;
}

function bbcode(theform,bbcode,prompttext) {
  inserttext = prompt(tag_prompt+"\n["+bbcode+"]xxx[/"+bbcode+"]",prompttext);
  if ((inserttext != null) && (inserttext != "")) {
    theform.comment_text.value += "["+bbcode+"]"+inserttext+"[/"+bbcode+"] ";
    theform.comment_text.focus();
  }
}

function namedlink(theform,thetype) {
  linktext = prompt(link_text_prompt,"");
  var prompttext;
  if (thetype == "URL") {
    prompt_text = link_url_prompt;
    prompt_contents = "http://";
  }
  else {
    prompt_text = link_email_prompt;
    prompt_contents = "";
  }
  linkurl = prompt(prompt_text,prompt_contents);
  if ((linkurl != null) && (linkurl != "")) {
    if ((linktext != null) && (linktext != "")) {
      theform.comment_text.value += "["+thetype+"="+linkurl+"]"+linktext+"[/"+thetype+"] ";
    }
    else {
      theform.comment_text.value += "["+thetype+"]"+linkurl+"[/"+thetype+"] ";
    }
  }
  theform.comment_text.focus();
}

function dolist(theform) {
  listtype = prompt(list_type_prompt, "");
  if ((listtype == "a") || (listtype == "1")) {
    thelist = "[list="+listtype+"]\n";
    listend = "[/list="+listtype+"] ";
  }
  else {
    thelist = "
    \n";
        listend = "
";
  }
  listentry = "initial";
  while ((listentry != "") && (listentry != null)) {
    listentry = prompt(list_item_prompt, "");
    if ((listentry != "") && (listentry != null)) {
      thelist = thelist+"
  • "+listentry+"\n";

    }
  }
  theform.comment_text.value += thelist+listend;
  theform.comment_text.focus();
}

function smilie(theform,smiliecode) {
  theform.comment_text.value += smiliecode;
  theform.comment_text.focus();
}

Is this bbcode.js okay?

But still I get an error message "error on this page" in MS Internet Explorer when I want write a comment in my guestbook.

THX by Flo

Project offline

Offline djith

  • Jr. Member
  • **
  • Posts: 73
    • View Profile
Re: [MOD] guestbook
« Reply #99 on: November 03, 2005, 08:51:46 PM »
Hello,
i'm about to install this mod... my template version is 1.7.1 ... will it work ? many people had troubles whit version 1.7.1...
what to correct or change to let it work in 1.7.1 ?

another question.... what to do whit install guestbook.php ?
the link http://your_4images_site/install_guestbook.php
seems dead to me and maybe it had the instructions how to use it .....

i think a guestbook on your site make the site more communicable to the site owner and find it very usefull .... so hopefull i can run it on my site :)

 

Offline kief24

  • Sr. Member
  • ****
  • Posts: 267
    • View Profile
Re: [MOD] guestbook
« Reply #100 on: November 03, 2005, 10:24:12 PM »

another question.... what to do whit install guestbook.php ?
the link http://your_4images_site/install_guestbook.php
seems dead to me and maybe it had the instructions how to use it .....


upload install_guestbook.php to root folder
backup database
go to the link http://avatarcorner.com/install_guestbook.php
delete install_guestbook.php

 :wink:


Offline Bear

  • Jr. Member
  • **
  • Posts: 56
    • View Profile
Re: [MOD] guestbook
« Reply #101 on: November 04, 2005, 10:54:17 PM »
working great with 1.7.1 and does pay to read all the posts/replies to find the answer for youe problems.

thanks to all

Offline iicee

  • Pre-Newbie
  • Posts: 3
    • View Profile
Re: [MOD] guestbook
« Reply #102 on: November 14, 2005, 02:43:09 PM »

Offline lemccoy

  • Jr. Member
  • **
  • Posts: 90
    • View Profile
    • DrunkIsland
Re: [MOD] guestbook
« Reply #103 on: November 16, 2005, 05:23:58 AM »
I have a problem with the "edit" link for the admin.  Only thing that comes up is the Name that is editable and then "Your Homepage: " with no box or following text. any ideas?

Offline Olphi

  • Full Member
  • ***
  • Posts: 101
    • View Profile
Re: [MOD] guestbook
« Reply #104 on: November 25, 2005, 10:14:27 PM »
Salü

I am a Newbie in .php and i have no Idea what I should do:  Fatal error: Call to undefined function: get_smiles_text() in c:\appserv\www\gdc\guestbook.php on line 362 Paburmester had the same problem, but nobody helped him.....
I use the version 1.7.1!

My questions: - Can someone help me with the Fatal error....?
                        - Is it possible to post the full installation way with more details (eg. where can I place a link, that means i want the guestbook link on the leftside and the opened guestbook on the right side with the template style....)


Thanks for your help....