Go Back   Pligg CMS Forum > Pligg Development > Modification Tutorials

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-30-2008, 09:42 AM
netwb's Avatar
Casual Pligger
Pligg Version: 9.8
Pligg Template: Yget - Convergence - GarrX
 
Join Date: Dec 2006
Location: Bruxelles
Posts: 63
Thanks: 20
Thanked 25 Times in 11 Posts
Thumbs up Ajax Chat FOR PLIGG

the ajax chat

example: Messages Box
__________________
Bruxello.com l Europeanpainting.eu l

Last edited by netwb; 07-02-2008 at 08:14 PM..
Reply With Quote
The Following User Says Thank You to netwb For This Useful Post:
  #2 (permalink)  
Old 06-30-2008, 10:29 AM
New Pligger
Pligg Version: 9.9
Pligg Template: eliteadvanced
 
Join Date: Nov 2007
Location: Georgia
Posts: 25
Thanks: 1
Thanked 1 Time in 1 Post
Quote:
Originally Posted by netwb View Post
I'm installed the ajax chat in my sidebar
link: Bruxello / A la Une
example: Messages Box
It's interesting. Does it have controls to only allow registered members to chat? Otherwise it just might be a spam fest. does it allow private chats? It seems more like a "shoutbox" than an IM, which is cool enough, but won't scale for massive users (it will just be a shouting match).
Reply With Quote
  #3 (permalink)  
Old 06-30-2008, 10:31 AM
New Pligger
Pligg Version: 9.9
Pligg Template: eliteadvanced
 
Join Date: Nov 2007
Location: Georgia
Posts: 25
Thanks: 1
Thanked 1 Time in 1 Post
The box seems to overwrite the edge of the story next to it in Firefox.
Reply With Quote
  #4 (permalink)  
Old 06-30-2008, 11:24 AM
netwb's Avatar
Casual Pligger
Pligg Version: 9.8
Pligg Template: Yget - Convergence - GarrX
 
Join Date: Dec 2006
Location: Bruxelles
Posts: 63
Thanks: 20
Thanked 25 Times in 11 Posts
entirely configurable

entirely configurable in php



test admin: click to icone and the login is: "r" and password: "r"
the zip file is: http://bruxello.com/box/idleboxV1.0Beta.zip
__________________
Bruxello.com l Europeanpainting.eu l

Last edited by netwb; 06-30-2008 at 12:02 PM..
Reply With Quote
The Following User Says Thank You to netwb For This Useful Post:
  #5 (permalink)  
Old 06-30-2008, 11:55 AM
clems365's Avatar
Casual Pligger
Pligg Version: 9.8.2
Pligg Template: CMS Theme
 
Join Date: May 2007
Location: santiago chile
Posts: 60
Thanks: 5
Thanked 9 Times in 6 Posts
Merci, je vais tester !!!
__________________
my pligg site: http://www.web2.cl
Reply With Quote
  #6 (permalink)  
Old 06-30-2008, 12:08 PM
netwb's Avatar
Casual Pligger
Pligg Version: 9.8
Pligg Template: Yget - Convergence - GarrX
 
Join Date: Dec 2006
Location: Bruxelles
Posts: 63
Thanks: 20
Thanked 25 Times in 11 Posts
Wink

Quote:
Originally Posted by clems365 View Post
Merci, je vais tester !!!
Salut Clems,
voici le lien et les infos en français!
Bruxello - IdleBox shootbox : une shoutbox totalement en ajax!
et le fichier redme de l'install: Document sans nom
__________________
Bruxello.com l Europeanpainting.eu l
Reply With Quote
  #7 (permalink)  
Old 06-30-2008, 12:14 PM
New Pligger
Pligg Version: 9.9
Pligg Template: eliteadvanced
 
Join Date: Nov 2007
Location: Georgia
Posts: 25
Thanks: 1
Thanked 1 Time in 1 Post
Thanks! That's pretty neat.
Reply With Quote
  #8 (permalink)  
Old 06-30-2008, 12:58 PM
New Pligger
Pligg Version: 9.9
 
Join Date: Jun 2008
Posts: 9
Thanks: 2
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by netwb View Post
I'm installed the ajax chat in my sidebar
link: Bruxello / A la Une
example: Messages Box
hi and thanks for the code, but I am more intrested in learning how you made the "Ils viennent de passer par" latest log on mebers as I assume, and the "Les nouveaux membres" latest members to join as I assume too.
Could you please explain how you acheived those noted models.
Reply With Quote
  #9 (permalink)  
Old 06-30-2008, 03:21 PM
netwb's Avatar
Casual Pligger
Pligg Version: 9.8
Pligg Template: Yget - Convergence - GarrX
 
Join Date: Dec 2006
Location: Bruxelles
Posts: 63
Thanks: 20
Thanked 25 Times in 11 Posts
Talking

Quote:
Originally Posted by Dijridew View Post
hi and thanks for the code, but I am more intrested in learning how you made the "Ils viennent de passer par" latest log on mebers as I assume, and the "Les nouveaux membres" latest members to join as I assume too.
Could you please explain how you acheived those noted models.
Hi Dijridew,
i have installed the code in the module feature_story.tpl but the code is ok to pligg.tpl or index_center.tpl .....
this the code source:
HTML Code:
<center><table border="0" width="100%">
  <tr>
    <td width="40%">
<fieldset><legend><b><font size="3">Ils viennent de passer par ici</font> </b></legend>{php}
			global $db;
			$sql="SELECT user_login from " . table_users . " order by user_lastactivity desc limit 22";
        
			$result = @mysql_query ($sql);
			$rowCount = 0;
			while($row = mysql_fetch_array($result, MYSQL_ASSOC))
			{
				$uname=$row['user_login'];
				if (($rowCount++)%2 == 0)
					echo "<span class='feature-back'><a href='" . getmyurl('user2', $uname, 'history') . "'><img src='". get_avatar('large', "", "$uname","","")."'>&nbsp;</a></span>";
				else
					echo "<a href='" . getmyurl('user2', $uname, 'history') . "'><img src='". get_avatar('large', "", "$uname","","")."'>&nbsp;</a>";
 
        } 
       
			
		{/php}</p>
</fieldset></td>
    <td width="3%">
&nbsp;</td>
    <td width="40%">
<fieldset><legend><b><font size="3">Les nouveaux membres</font> </b></legend>{php}
			global $db;
			$sql="SELECT user_login from " . table_users . " order by user_id desc limit 22";
        
			$result = @mysql_query ($sql);
			$rowCount = 0;
			while($row = mysql_fetch_array($result, MYSQL_ASSOC))
			{
				$uname=$row['user_login'];
				if (($rowCount++)%2 == 0)
					echo "<span class='feature-back'><a href='" . getmyurl('user2', $uname, 'history') . "'><img src='". get_avatar('large', "", "$uname","","")."'>&nbsp;</a></span>";
				else
					echo "<a href='" . getmyurl('user2', $uname, 'history') . "'><img src='". get_avatar('large', "", "$uname","","")."'>&nbsp;</a>";
 
        } 
       
			
		{/php}</p>
</fieldset></td>
  </tr>
</table></center><br /> 
__________________
Bruxello.com l Europeanpainting.eu l
Reply With Quote
  #10 (permalink)  
Old 06-30-2008, 05:02 PM
New Pligger
Pligg Version: 9.9
 
Join Date: Jun 2008
Posts: 9
Thanks: 2
Thanked 0 Times in 0 Posts
Thumbs up thank you

[quote=netwb;63547]Hi Dijridew,
i have installed the code in the module feature_story.tpl but the code is ok to pligg.tpl or index_center.tpl .....
this the code source:
[quote]


Thanks a million netweb
Reply With Quote
Reply

Thread Tools
Display Modes
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On
Similar Threads
Thread Thread Starter Forum Replies Last Post
can i integrate chat? sweinrib Modification Tutorials 14 11-10-2008 03:18 PM
Reque$t: Integrate Blueimp ajax chat with Pligg catchpen Modification Tutorials 4 03-16-2008 05:53 PM
Open Source Chat Software TrailofDead Modification Tutorials 0 03-06-2007 09:45 AM


Search Engine Friendly URLs by vBSEO 3.2.0