Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - clubsociety

Pages: [1] 2
1
Hi!

Is there a current HowTo to install this mod PM v2?


reagrds

clubsociety

2
Mods & Plugins (Releases & Support) / Re: [Mod] Avatar v2.01
« on: August 29, 2009, 09:59:19 PM »
But any time I only get one avatar to choose from with the second option 'none'. If I upload more avatars ther's still only one in the box. I don't understand why. I can not find a mistake in the source code.

Any other ideas?

Regards

3
Mods & Plugins (Releases & Support) / Re: [Mod] Avatar v2.01
« on: August 25, 2009, 09:09:59 PM »
Hi V@no,

I'm using firefox latest release.

The users take different bowsers.

My understandig is: I can upload several avatars. They will be listed in the box and I can choose from. Am I right?

Regards

4
Mods & Plugins (Releases & Support) / Re: Signature image v2.23
« on: August 25, 2009, 07:48:02 PM »
Hi,

how can I get the image to my 4images comments now?

Regards Clubsociety

5
Mods & Plugins (Releases & Support) / Re: [Mod] Avatar v2.01
« on: August 08, 2009, 12:08:52 AM »
Hi v@no,

it's me again.

Some user tried to change their avatars. But I got feedback that it doesn't work. The old picture is still in and there's no entry of a 2nd custom avatar in the list box.  :(

I checked the source code two times but can not find a mistake. Do you have any idea where to search for a solution?

Regards clubsociety

6
Discussion & Troubleshooting / Re: Edit Comment, Edit Image
« on: July 18, 2009, 11:55:02 PM »
Thnx to RINALDOS!

Works 100% perfect!

clubsociety

7
Hi V@no,

thanks a lot. It's working now.


Regards clubsociety

8
Hi men,

what did you finally changethat the numers per page was working? I've the same problem. Only 6 pictures are shown, even I choose 12, 18 ....

See: www.brambrink-net.de/4images


Thanx


9
Hi,

I found following link:
http://www.4homepages.de/forum/index.php?topic=5490.0

V@no is takling about a MOD named "MembersPersonalCategory". I can't find any info about it.  :oops:

I hope I didn't mak a mistake because I don't want to complain anyone.

clubsociety

10
Hi there,

after a long search I was not able to find the right MOD for my problem.

Some users of my page asked me, if it's possible to edit/change their comments. I found one post of V@no, but I think it was incomplete....or I was stupid.


Hope you can help me.


Clubsociety

11
Thanx, now it's workung fine.

I think I've to learn more about mySQL in the future.

Clubsociety

12
Mods & Plugins (Releases & Support) / Re: [Mod] bbcode Smileys
« on: June 07, 2009, 09:22:30 PM »
Thanx a lot!! :D

Everything is working fine.

clubsociety

13
Hi,

I changed what you mentioned:
Code: [Select]
// ***** Skype Status 04.06.09 *****************************************
$comment_user_skype = (isset($comment_row[$i]['user_skype'])) ? format_text($comment_row[$i]['user_skype']) : "";
if (!empty($comment_user_skype)) {
$comment_user_skype_button = "<a href=\"callto://".$comment_user_skype."\">Test1</a>Test2<img src=\"http://mystatus.skype.com/smallicon/".$comment_user_skype."\" /></a>";
        }
// ***** Skype Status 04.06.09 *****************************************

... but it still does not work.

Any idea???

Regards clubsociety

14
Mods & Plugins (Releases & Support) / Skype status shown in comment
« on: June 07, 2009, 04:24:42 AM »
Hi there,

I've a problem (...of course, otherwise I would not use the board). I wanted to show the Skype status of the comment's authors.

I already read many things about this mod in the board and I added it to my page, BUT I think the value, whitch I get from my database is empty I and don't understand why. I already checked the table and the cell is not empty.

I added .get_user_table_field(", u.", "user_skype") as follows in details.php:

Code: [Select]
 $sql = "SELECT c.comment_id, c.image_id, c.user_id, c.user_name AS comment_user_name, c.comment_headline, c.comment_text, c.comment_ip, c.comment_date".get_user_table_field(", u.", "user_level").get_user_table_field(", u.", "user_name").get_user_table_field(", u.", "user_email").get_user_table_field(", u.", "user_showemail").get_user_table_field(", u.", "user_invisible").get_user_table_field(", u.", "user_joindate").get_user_table_field(", u.", "user_lastaction").get_user_table_field(", u.", "user_comments").get_user_table_field(", u.", "user_homepage").get_user_table_field(", u.", "user_icq").get_user_table_field(", u.", "user_skype")."
          FROM ".COMMENTS_TABLE." c
          LEFT JOIN ".USERS_TABLE." u ON (".get_user_table_field("u.", "user_id")." = c.user_id)
          WHERE c.image_id = $image_id
          ORDER BY c.comment_date ASC";
  $result = $site_db->query($sql);

And I added lines 6 to 11 to show the status, if a Skype name is set:
Code: [Select]
       $comment_user_icq = (isset($comment_row[$i][$user_table_fields['user_icq']])) ? format_text($comment_row[$i][$user_table_fields['user_icq']]) : "";
        if (!empty($comment_user_icq)) {
          $comment_user_icq_button = "<a href=\"http://www.icq.com/people/about_me.php?uin=".$comment_user_icq."\" target=\"_blank\"><img src=\"http://status.icq.com/online.gif?icq=".$comment_user_icq."&img=5\" width=\"18\" height=\"18\" border=\"0\" alt=\"".$comment_user_icq."\" /></a>";
        }

// ***** Skype Status 04.06.09 *****************************************
$comment_user_skype = (isset($comment_row[$i][$user_table_fields['user_skype']])) ? format_text($comment_row[$i][$user_table_fields['user_skype']]) : "";
if (!empty($comment_user_skype)) {
$comment_user_skype_button = "<a href=\"callto://".$comment_user_skype."\">Test1</a>Test2<img src=\"http://mystatus.skype.com/smallicon/".$comment_user_skype."\" /></a>";
        }
// ***** Skype Status 04.06.09 *****************************************


But it look like that $comment_user_skype is empty, because nothig is shown as long I remove the ! in front of empty in line 8.

Of course I added the variable to comment_bit.html:
Code: [Select]
   {comment_user_icq_button}
<!-- ***** Skype Status 04.06.09 ***********************************-->
    {comment_user_skype_button}
<!-- ***** Skype Status 04.06.09 ***********************************-->


I'm not familiar with mySQL and I don't know what kind of mistake I made. So please feel free to help me.

Regards

clubsociety

15
 :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D

Huurrrraaaaaa.....

folgende Zeile wurde ind der Datei ...\templates\YOUR_TEMPLATE\media\jpg.html geändet und der blaue Rahmen ist verschwunden:

Code: [Select]
<!-- Template file for JPG Files -->
<img src="{media_src}" border="1" alt="{image_name}"{width_height} usemap="#navi" ><br />

nach

Code: [Select]
<!-- Template file for JPG Files -->
<img src="{media_src}" border="0" alt="{image_name}"{width_height} usemap="#navi" ><br />

Somit ist dieses Problem für mich erledigt!!!

 :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D :D


Ich danke Nobby für seine Gedankenanstöße und aufgewendete Zeit!

Pages: [1] 2