do you use any chat application inside egroupware?
I'm looking for some application. I already used chatty app in older times.
But as I perceived that this app is no longer in egw.
Expresso Livre (an egw fork) have jMessenger embedded, this fork is
very limited, only 5 modules.
I still looking for a chat app.
thank you all.
--
Guilherme Rocha
GF7 Doc & Systems - Soluções Tecnológicas
Pesquisa e Desenvolvimento - World Wide
R. João Goulart, 170 - Rio Pardo - RS - CEP 96640-000
Mobile: +55 51 81400360 - Home Page: http://www.gf7.com.br
--
--
Guilherme Rocha
GF7 Doc & Systems - Soluções Tecnológicas
Pesquisa e Desenvolvimento - World Wide
R. João Goulart, 170 - Rio Pardo - RS - CEP 96640-000
Mobile: +55 51 81400360 - Home Page: http://www.gf7.com.br
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects _______________________________________________
eGroupWare-users mailing list
eGroupWare-users@... https://lists.sourceforge.net/lists/listinfo/egroupware-users
This is what I did. It is extremely dirty and I cannot recommend it. But it works for my wife and I, and this is the beaty of open source, you can even mutilate the software.
1 Downloaded phpfreechat and put this inside my egroupware folder.
2 Inserted this in the same dir as chat.php
function createFloatingPane(divId, title, x, y, width, height) {
var pane = new dojox.layout.FloatingPane({
'title': title,
'id': divId + "_floater",
'closeable': true,
'resizable': true,
'dockable': false
}, divId);
// quick fix for positioning, does not seem necessary in source code
// example (FloatingPane test), but was necessary with dojo bin and
// Firefox 3.0.1
pane.domNode.style.right = x + "px";
pane.domNode.style.bottom = y + "px";
pane.resize({ 'w': width, 'h': height });
pane.startup();
return pane;
}
function load() {
var floatingPane = createFloatingPane("chatter", "Drag me", 10, 140, 500, 100);
floatingPane.bringToTop();
}
If you use this, you will have to play with the outline of the chatbox, because I also deleted some buttons from phpfreechat. This can be done by setting parameters x and y.
>
> This is what I did. It is extremely dirty and I cannot recommend it. But it
> works for my wife and I, and this is the beaty of open source, you can even
> mutilate the software.
>
> 1 Downloaded phpfreechat and put this inside my egroupware folder.
> 2 Inserted this in the same dir as chat.php
>
> <?php
> require_once dirname(__FILE__).'/phpfreechat/src/phpfreechat.class.php';
> $params = array();
> $params["serverid"] = md5("your_servername_here");
> $params["title"] = "Chat to online users";
> $params["height"] = "120px";
> $params["showsmileys"] = false;
> $params["displaytabclosebutton"] = false;
> $params["theme"] = "msn";
> $params["display_ping"] = false;
> $params["channels"] = array("Public room");
> $params["nick"] = $_SESSION[egw_info_cache][user][account_firstname];
> $params['admins'] = array('adminname' => 'adminpasswd');
> $params["max_msg"] = 10;
> $params["shownotice"] = 0;
> $chat = new phpFreeChat($params);
> if($_SESSION[egw_info_cache][user][account_primary_group] == -1){
> print("<div id='chatter'>");
> $chat->printChat();
> print("</div>");
> }
> ?>
>
> 3 Made symlinks to this file and phpfreechat from every app dir that I want
> to show a chat window
>
> 4 Inserted this at line 674 of class.idots_framework.inc.php (inside
> phpgwap/templates/idots:
> $lastdir = array_pop(split('/', getcwd()));
> if($lastdir == 'egroupware'){
> include_once('chat.php');
> } elseif($lastdir != 'gallery'){
> include_once('../chat.php');
> }
>
> 5 downloaded dojo to my server and added this to my egroupware dir
>
> 6 Added this to the head of head.tpl (inside phpgwapi/template/default):
>
> <script type="text/javascript"
> src="https://your_server_name/egroupware/dojo-release-1.3.1/dojo/dojo.js"
> djConfig="isDebug: false, parseOnLoad: true">
> </script>
> <script type="text/javascript">
> dojo.require("dojox.layout.FloatingPane");
>
> function createFloatingPane(divId, title, x, y, width,
> height) {
> var pane = new dojox.layout.FloatingPane({
> 'title': title,
> 'id': divId + "_floater",
> 'closeable': true,
> 'resizable': true,
> 'dockable': false
> }, divId);
> // quick fix for positioning, does not seem
> necessary in source code
> // example (FloatingPane test), but was necessary
> with dojo bin and
> // Firefox 3.0.1
> pane.domNode.style.right = x + "px";
> pane.domNode.style.bottom = y + "px";
> pane.resize({ 'w': width, 'h': height });
> pane.startup();
> return pane;
> }
>
> function load() {
> var floatingPane =
> createFloatingPane("chatter", "Drag me", 10, 140, 500, 100);
> floatingPane.bringToTop();
> }
>
> dojo.addOnLoad(load);
> </script>
>
>
> Again, this is a dirty hack but it works...
>
>
>
>
> --
> View this message in context: http://www.nabble.com/chat-application-tp24036298s3741p24055128.html > Sent from the egroupware-users mailing list archive at Nabble.com.
>
>
> ------------------------------------------------------------------------------
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables unlimited
> royalty-free distribution of the report engine for externally facing
> server and web deployment.
> http://p.sf.net/sfu/businessobjects > _______________________________________________
> eGroupWare-users mailing list
> eGroupWare-users@... > https://lists.sourceforge.net/lists/listinfo/egroupware-users >
--
--
Guilherme Rocha
GF7 Doc & Systems - Soluções Tecnológicas
Pesquisa e Desenvolvimento - World Wide
R. João Goulart, 170 - Rio Pardo - RS - CEP 96640-000
Mobile: +55 51 81400360 - Home Page: http://www.gf7.com.br
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects _______________________________________________
eGroupWare-users mailing list
eGroupWare-users@... https://lists.sourceforge.net/lists/listinfo/egroupware-users
>
> If you use this, you will have to play with the outline of the chatbox,
> because I also deleted some buttons from phpfreechat. This can be done by
> setting parameters x and y.
> --
> View this message in context: http://www.nabble.com/chat-application-tp24036298s3741p24055334.html > Sent from the egroupware-users mailing list archive at Nabble.com.
>
>
> ------------------------------------------------------------------------------
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables unlimited
> royalty-free distribution of the report engine for externally facing
> server and web deployment.
> http://p.sf.net/sfu/businessobjects > _______________________________________________
> eGroupWare-users mailing list
> eGroupWare-users@... > https://lists.sourceforge.net/lists/listinfo/egroupware-users >
--
--
Guilherme Rocha
GF7 Doc & Systems - Soluções Tecnológicas
Pesquisa e Desenvolvimento - World Wide
R. João Goulart, 170 - Rio Pardo - RS - CEP 96640-000
Mobile: +55 51 81400360 - Home Page: http://www.gf7.com.br
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects _______________________________________________
eGroupWare-users mailing list
eGroupWare-users@... https://lists.sourceforge.net/lists/listinfo/egroupware-users
Had to delete some private info ;), but here is what it looks like:
(you can see from the empty online users list, that this server is only used by me and my family. You will get a lot more names there if more users belonging to group -1 (default) are online.
>
> Had to delete some private info ;), but here is what it looks like:
>
> (you can see from the empty online users list, that this server is only used
> by me and my family. You will get a lot more names there if more users
> belonging to group -1 (default) are online.
>
> http://www.nabble.com/file/p24055929/egw.jpg > --
> View this message in context: http://www.nabble.com/chat-application-tp24036298s3741p24055929.html > Sent from the egroupware-users mailing list archive at Nabble.com.
>
>
> ------------------------------------------------------------------------------
> Crystal Reports - New Free Runtime and 30 Day Trial
> Check out the new simplified licensing option that enables unlimited
> royalty-free distribution of the report engine for externally facing
> server and web deployment.
> http://p.sf.net/sfu/businessobjects > _______________________________________________
> eGroupWare-users mailing list
> eGroupWare-users@... > https://lists.sourceforge.net/lists/listinfo/egroupware-users >
--
--
Guilherme Rocha
GF7 Doc & Systems - Soluções Tecnológicas
Pesquisa e Desenvolvimento - World Wide
R. João Goulart, 170 - Rio Pardo - RS - CEP 96640-000
Mobile: +55 51 81400360 - Home Page: http://www.gf7.com.br
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects _______________________________________________
eGroupWare-users mailing list
eGroupWare-users@... https://lists.sourceforge.net/lists/listinfo/egroupware-users
Just found out that this does not work with ie.... <tired>of course not, how could I ever think this would be work on ie</tired> The dojo part does not work very well in ie. Looking for other solution than. Without the dojo, a box under your app is printed, not free floating, and from left to right. Maybe my own free floating box will work. Looking after it. Will report on this thread when done.
as2 schrieb:
> 1 Downloaded phpfreechat and put this inside my egroupware folder.
> 2 Inserted this in the same dir as chat.php
Do you think, there could be a possibility like for the gallery module
which is also "plugged in" via remote SVN? Such way, only the eGw
application registration, application wrapping and user management code
is inside eGw.
A solution like that could be most future-proof because only the
integration part would need to be maintained by eGroupware...
Best regards,
Hans-Jürgen
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects _______________________________________________
eGroupWare-users mailing list
eGroupWare-users@... https://lists.sourceforge.net/lists/listinfo/egroupware-users
Ik think you can answer this question much better yourself. I did not read
the fabulous documentation about how to develop an application in eGW. I
just made it work in this dirty / hackish / raw way.
For the moment though I do not see problems
1 License is ok, LGPL as long as you provide the logo see
http://www.phpfreechat.net/ for details
2 No database needed, only write permissions to the data directory
3 Logo is loaded from their website, you have to make provisions for this,
but no big deal I presume
4 The way I implemented user management is very rudimentary and not suitable
for a real-life company
After all I have seen this chat script as a module for Drupal and if you
look at the faq at their website it is possible to connect it to punBB,
phpBB, and fudForum.
>From the screenshots of Expresso Livre it looks like this is a much more
mature implementation.
Maybe Guilherme Rocha can comment on this too as he said:
I received other testimonials about Jmessenger inside egw.
R
------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables unlimited
royalty-free distribution of the report engine for externally facing
server and web deployment.
http://p.sf.net/sfu/businessobjects _______________________________________________
eGroupWare-users mailing list
eGroupWare-users@... https://lists.sourceforge.net/lists/listinfo/egroupware-users
R. Oosterhoff schrieb:
> Ik think you can answer this question much better yourself. I did not read
> the fabulous documentation about how to develop an application in eGW. I
> just made it work in this dirty / hackish / raw way.
Me neither, but I gave it a try. It's an integration just like gallery.
I had to fight a bit with the order of calling this and that and also a
small fight between egroupware xajax and phpfreechat's ajax. ;-)
It's working fine here (except, I do not like my logo). ;-)
Me neither, but I gave it a try. It's an integration just like gallery.
I had to fight a bit with the order of calling this and that and also a
small fight between egroupware xajax and phpfreechat's ajax. ;-)
It's working fine here (except, I do not like my logo). ;-)
------------------------------------------------------------------------------
Are you an open source citizen? Join us for the Open Source Bridge conference!
Portland, OR, June 17-19. Two days of sessions, one day of unconference: $250.
Need another reason to go? 24-hour hacker lounge. Register today!
http://ad.doubleclick.net/clk;215844324;13503038;v?http://opensourcebridge.org _______________________________________________
eGroupWare-users mailing list
eGroupWare-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/egroupware-users
Congratulations, I tested it yesterday and it works very well. Think this is a great addition to eGW.
I insert parameters to phpfreechat_config.php, but it dont work. After I try index.php in folder phpfreechat, but neither is it work...
How U configure it?
Hello laco,
try with admin rights in the phpfreechat editline the command /rehash to enforce a reload of the configuration ( this is an implemented function of phpfreechat itself) ->
http://www.phpfreechat.net/commands
<<
rehash
This command deletes the cached configuration
/rehash
>>
@Hans-Juergen Tappe, if you read this:
Any doubts about this proposal?
Thank you Jurgen.
On the server if work fine (on the localhost i dont know why not work)...
I have 1 problem now. When I use chat sometimes disconnect me from the chat, and dont signalize that.
I try to use parameter "timeout", but i dont know what is a good value.
How I set up, that never disconnect me form chat?
Thank you...
Juergen Dlugi wrote:
laco wrote:
Hi
I have question for configuratin phpfreechat.
I insert parameters to phpfreechat_config.php, but it dont work. After I try index.php in folder phpfreechat, but neither is it work...
How U configure it?
Hello laco,
try with admin rights in the phpfreechat editline the command /rehash to enforce a reload of the configuration ( this is an implemented function of phpfreechat itself) ->
http://www.phpfreechat.net/commands
<<
rehash
This command deletes the cached configuration
/rehash
>>
@Hans-Juergen Tappe, if you read this:
Any doubts about this proposal?