• [MOD] Per User Shouts/Guestbook V1.1 5 0 5 1
Currently:  

Author Topic: [MOD] Per User Shouts/Guestbook V1.1  (Read 54956 times)

0 Members and 1 Guest are viewing this topic.

Offline quokka

  • Newbie
  • *
  • Posts: 11
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #15 on: October 07, 2008, 04:04:05 PM »
Hi Deskcom
Lovely mod! Thanks a lot for the efford of publishing this  :D
Quokka
"Only two things are infinite, the universe and human stupidity, and I'm not sure about the former."

Offline Falldog

  • Newbie
  • *
  • Posts: 27
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #16 on: November 20, 2008, 10:34:51 PM »
I installed this mod. seems to be working fine.

Only issue I have is that on the page where you can enter post a new entry, I have the following problem...

http://gundamgallery.com/member.php?action=showprofile&user_id=1

Something, don't think it's the entry box, is causing it to elongate. Any idea?

Offline Deskcom

  • Newbie
  • *
  • Posts: 41
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #17 on: November 21, 2008, 05:54:48 PM »
Change In your user_gb_new.html

Code: [Select]
<textarea class=input name=comment_text rows=6 cols=120></textarea>
To:

Code: [Select]
<textarea class=textarea name=comment_text rows=6 cols=120></textarea>

Offline 4ella

  • Jr. Member
  • **
  • Posts: 90
    • View Profile
    • http://www.dancersrecruit.com/pictures/
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #18 on: May 03, 2009, 09:43:29 PM »
very good mod , works excellent !! Thanks Daniel

http://www.dancersrecruit.com/pictures/
4IMAGES 1.7.6 version/default theme
Apache version   2.2.11 (Unix)
PHP version   5.2.9
MySQL version   5.0.75-community-log
Architecture   x86_64
Operating system   Linux

Offline Sunny C.

  • Addicted member
  • ******
  • Posts: 1.806
  • I ♥ 4I
    • View Profile

Offline fermachado

  • Jr. Member
  • **
  • Posts: 92
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #20 on: August 27, 2009, 12:00:41 AM »
Thank's for this Mod.

Work's great.

Can you help me with one thing.
Now with this Mod installed de guest's don't have permission to see the member profile.It's possible change that?

Thanks,
Fernando
www.globalfoto.net

Sintra - Portugal

Offline Deskcom

  • Newbie
  • *
  • Posts: 41
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #21 on: August 27, 2009, 12:59:43 AM »
i will try to work on it later tonight or tom. ty for letting me know of the bug

Offline ante226

  • Newbie
  • *
  • Posts: 24
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #22 on: September 22, 2009, 09:44:09 PM »

Warning: mysql_result() expects parameter 1 to be resource, boolean given in /users/ante226/www/kay/includes/page_header. php on line 158

das kommt bei mir auf der seite

hat einer eine idee ???

Offline V@no

  • If you don't tell me what to do, I won't tell you where you should go :)
  • Global Moderator
  • 4images Guru
  • *****
  • Posts: 17.849
  • mmm PHP...
    • View Profile
    • 4images MODs Demo
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #23 on: September 23, 2009, 03:13:43 AM »
Welcome to 4images forum.

Re-do steps 5a, 5b and 6b
Your first three "must do" before you ask a question:
Please do not PM me asking for help unless you've been specifically asked to do so. Such PMs will be deleted without answer. (forum rule #6)
Extension for Firefox/Thunderbird: Master Password+    Back/Forward History Tweaks (restartless)    Cookies Manager+    Fit Images (restartless for Thunderbird)

Offline ante226

  • Newbie
  • *
  • Posts: 24
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #24 on: September 23, 2009, 09:56:12 AM »
Okay, I've found the error was due to the database

so my question is now I have to shout right there, you can enter the reinschreiben?? can not find a setting here is the link

to look

xxx: ante226. bplaced. net/kay

Offline fermachado

  • Jr. Member
  • **
  • Posts: 92
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #25 on: September 25, 2009, 10:24:38 AM »
Hi,

Is any solution for this.

Now with this Mod installed de guest's don't have permission to see the member profile.It's possible change that?



Thanks a lot, and great work with this mod.
www.globalfoto.net

Sintra - Portugal

Offline Deskcom

  • Newbie
  • *
  • Posts: 41
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #26 on: October 10, 2009, 05:27:55 AM »
I'm sorry for the long delay. Here is the fix for the problem you been having. I also updated the original scripting. Have fun.

Open member.php

Find
Code: [Select]
 elseif ($afg == "false")
  {
    $id = $_GET['user_id'];
  }
    if ($user_info['user_level'] == GUEST)
    {
       show_error_page($lang['no_permission']);
    exit;
  }

Replace it with:

Code: [Select]
 elseif ($afg == "false")
  {
    $id = $_GET['user_id'];
  }

Hope this helps everyone out. Thank you for your patients.

Offline fermachado

  • Jr. Member
  • **
  • Posts: 92
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.0
« Reply #27 on: October 11, 2009, 11:09:53 AM »
I'm sorry for the long delay. Here is the fix for the problem you been having. I also updated the original scripting. Have fun.

Open member.php

Find
Code: [Select]
 elseif ($afg == "false")
  {
    $id = $_GET['user_id'];
  }
    if ($user_info['user_level'] == GUEST)
    {
       show_error_page($lang['no_permission']);
    exit;
  }

Replace it with:

Code: [Select]
 elseif ($afg == "false")
  {
    $id = $_GET['user_id'];
  }

Hope this helps everyone out. Thank you for your patients.

Thanks al lot for your work!!!

Works very fine!!!

Thanks
www.globalfoto.net

Sintra - Portugal

Offline cyberax

  • Pre-Newbie
  • Posts: 9
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.1
« Reply #28 on: October 12, 2009, 05:50:18 PM »
Hallo.

Ich habe alle Änderungen wie beschrieben vorgenommen, aber bei mir funktioniert einiges... noch nicht.
Irgendwie funktioniert der Datenbankzugriff nicht richtig. Neue Einträge werden geschrieben, aber beispielsweise bei der Anzeige im Menü steht statt der Menge der Einträge "(Array)". Also konnte die Menge nicht richtig ermittelt werden.
Wenn ich im Benutzerprofil bin, zeigt es mir meine Einträge so an...
Code: [Select]
Array Shouts prev next
max
Member

w23sefrwesf
12.10.2009 at 17:27:52 [Löschen]
   prev next

...
also auch hier wieder nur "Array" statt der Menge.

Genauso hier...

Code: [Select]
received Entrys:   Array
written Entrys: Array

Wo könnte da der Fehler liegen??

Vielen Dank schonmal

P.S.: Wenn ich mir in der page_header.php mal
Code: [Select]
$site_db->query_firstrow($query); Also echo ausgeben lasse, kommt als Wert -> Array!
« Last Edit: October 12, 2009, 06:13:40 PM by cyberax »

Offline Deskcom

  • Newbie
  • *
  • Posts: 41
    • View Profile
Re: [MOD] Per User Shouts/Guestbook V1.1
« Reply #29 on: October 13, 2009, 09:01:14 AM »
Danke für das Informieren ich. Ich arbeite an ihm morgen, wenn ich oder Mittwoch kann. Bekannt gibt die Verlegenheit a bald tgibt, wie möglich.