Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

et-chat-infusions

Asked Modified Viewed 1,742 times
M
Manuel1986
M
PHP Fusion Version 9.03.110.
Material Theme
PHP Version 7.4
  • Member, joined since
  • Contributed 82 posts on the community forums.
  • Started 38 threads in the forums
  • Started this discussions
asked
Member

I am looking for someone to further develop the ET chat ET Chat Infusions for me

For the php fusion v9

Link https://github.com/etchatv/et-chat-infusionss
Edited by Falk on 25-02-2021 08:37,
Manuel1986 attached the following file:
et-chat-infusionss-main.zip [No information available / 120 Downloads]
0 replies

13 posts

D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

You want the bridge infusion be updated to V9?
I can do it for you.
Do you have a demo or something running?
I tried to install the infusion, but no luck, but I saw the problem with that already

Which php-fusion version is your target?

What is your compensation?

Sent me pm if interested.
0 replies
M
Manuel1986
M
PHP Fusion Version 9.03.110.
Material Theme
PHP Version 7.4
  • Member, joined since
  • Contributed 82 posts on the community forums.
  • Started 38 threads in the forums
  • Started this discussions
answered
Member

The infusion was for PHP Fusion v7.02.07
Edited by Manuel1986 on 25-02-2021 14:48,
0 replies
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

I have infusion running on Php-Fusion V8.00.70, but the chat program will not run properly. Even if I install the chat stand alone it will not run ok
0 replies
M
Manuel1986
M
PHP Fusion Version 9.03.110.
Material Theme
PHP Version 7.4
  • Member, joined since
  • Contributed 82 posts on the community forums.
  • Started 38 threads in the forums
  • Started this discussions
answered
Member

I have a new version of ET Chat here
https://github.com/etchatv/-ET-Chat-v-3-0-8-Beta

it works on php 7.4
0 replies
M
Manuel1986
M
PHP Fusion Version 9.03.110.
Material Theme
PHP Version 7.4
  • Member, joined since
  • Contributed 82 posts on the community forums.
  • Started 38 threads in the forums
  • Started this discussions
answered
Member

If the infusion no longer works, here are instructions for integrating ET Chat

<?php
session_start();
//*****************************************************************************
// Für die Realisierung der Anbindung des Chats an Ihr Userverwaltungssystem aus einem
// Forum, CMS, usw. m�ssen Sie lediglich die unten stehenden Sessionvariablen
// in Ihrem System mit dem Usernamen belegen und den User mit einem
// Link auf diese Datei f�hren. Beachten Sie dass dabei der Username ohne Passwort �bertragen wird.
// Sie dürfen also in Chat keine Passw�rter f�r Admins und Mods anlegen. F�r einen Chatbenutzer ist die
// �bergabe des Usernamen �ber die Sessionvar. $_SESSION['etchat_username'] aus Ihrem
// System ausreichend.

$username = $_SESSION['etchat_username'];
$gender = $_SESSION['etchat_gender']; //[optional] 'f' or 'm' system default 'n' if unset

// Die Admins und Mods sollen ohne PW im Chat angelegt werden!
// Die class/Index.class.php soll gel�scht werden, damit niemand unbefugt als Afmin rein kann!

// WICHTIG!
// In der config.php sollte die Option der Namereservierungen ausgeschaltet sein, wenn die Anbindung
// an eine Benutzerverwaltung verwendet wird.
// >>>>>>>>>>>>>>>>>>> $allow_nick_registration = false; <<<<<<<<<<<<<<<<<<<<


//---------------------------------------------------------------------------
// oder als GET oder POST �bergabe, jedoch unsicher und sollte kodiert werden
// $username = $_REQUEST['etchat_username'];
// $gender = $_REQUEST['etchat_gender'];
//---------------------------------------------------------------------------

// Weiterleitung nach dem Logout(die Session bleibt bestehen,
// da sonst der User aus Ihrem System rausfliegt.)

// WICHTIG!!! '...db1_...' sollte dem Tabellenprefix in der config.php ($prefix) entsprechen!!!

$_SESSION['etchat_db1_logout_url']="http://www.Ihre_Webseite.de/aus_dem_chat_ausgeloggt.html";

##############################################################
# DO NOT EDIT BELOW ###############################################
##############################################################

function __autoload($class_name) {
require_once ('class/'.$class_name.'.class.php'wink;
}

// initialise
new CheckUserName(true, $username, $gender);

?>
Please tell me what you want for how much
They want compensation for it
0 replies
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

Ok Standalone seems running with the new version. But very slow and some sort of gear is rotating on the right side of the screen, don know what is is for? Seems some sort of jquery busy sign.
0 replies
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

In what file do I need to put the instructions for integrating the chat?
0 replies
R
Anonymous User
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
answered
Veteran Member

@Manuel1986 code and instructions should be in English.
0 replies
M
Manuel1986
M
PHP Fusion Version 9.03.110.
Material Theme
PHP Version 7.4
  • Member, joined since
  • Contributed 82 posts on the community forums.
  • Started 38 threads in the forums
  • Started this discussions
answered
Member


<?php
session_start();
//*****************************************************************************
// For the implementation of the connection of the chat to your user management system from one
// Forum, CMS, etc. you just need the session variables below
// assign the user name in your system and assign the user a
// Create a link to this file. Note that the username is transferred without a password.
// So you are not allowed to create passwords for admins and mods in chat. For a chat user, this is
// Transfer of the username via the session var. $ _SESSION ['etchat_username'] from your
// system sufficient.

$username = $_SESSION['etchat_username'];
$gender = $_SESSION['etchat_gender']; //[optional] 'f' or 'm' system default 'n' if unset

// The admins and mods should be created in the chat without a PW!
// The class / Index.class.php should be deleted so that nobody can enter it as Afmin without authorization!

// IMPORTANT!
// In the config.php the option of name reservations should be switched off, if the connection
// is used in a user administration.
// >>>>>>>>>>>>>>>>>>>> $ allow_nick_registration = false; <<<<<<<<<<<<<<<<<<<<<

//---------------------------------------------------------------------------
// or as GET or POST transfer, but insecure and should be coded
// $username = $_REQUEST['etchat_username'];
// $gender = $_REQUEST['etchat_gender'];
//---------------------------------------------------------------------------

// Forwarding after logout (the session remains,
// otherwise the user will be kicked out of your system.)


// IMPORTANT!!! '... db1 _...' should correspond to the table prefix in config.php ($ prefix) !!!

$_SESSION['etchat_db1_logout_url']="http://www.Your_Webseite.de/aus_dem_chat_ausgeloggt.html";

##############################################################
# DO NOT EDIT BELOW ###############################################
##############################################################

function __autoload($class_name) {
      require_once ('class/'.$class_name.'.class.php');      
}

// initialise
new CheckUserName(true, $username, $gender);

?>




Edited by Manuel1986 on 25-02-2021 15:50,
0 replies
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

I got the infusion running under PHP7.4 and PHP-Fusion 8.00.70. The chat works with the new 3.0.8-Beta. But the infusion needs to be adapted.
0 replies
M
Manuel1986
M
PHP Fusion Version 9.03.110.
Material Theme
PHP Version 7.4
  • Member, joined since
  • Contributed 82 posts on the community forums.
  • Started 38 threads in the forums
  • Started this discussions
answered
Member

What would it cost me if you adjusted the infusion for php-fusion 9.03 because we work with php-fusion 9.03
0 replies
D
douwe_yntema
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
answered
Senior Member

I will do that for 50 euro.
0 replies
M
Manuel1986
M
PHP Fusion Version 9.03.110.
Material Theme
PHP Version 7.4
  • Member, joined since
  • Contributed 82 posts on the community forums.
  • Started 38 threads in the forums
  • Started this discussions
answered
Member

Oky Send me your bank details PN
0 replies

Category Forum

Panels and Infusions

Labels

Statistics

  • Views 0 views
  • Posts 13 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

D
D
  • Senior Member, joined since
  • Contributed 667 posts on the community forums.
  • Started 57 threads in the forums
  • Answered 1 question
R
R
Anonymous User 367
  • Veteran Member, joined since
  • Contributed 939 posts on the community forums.
  • Started 2 threads in the forums
  • Answered 20 questions
M
M
PHP Fusion Version 9.03.110.
Material Theme
PHP Version 7.4
  • Member, joined since
  • Contributed 82 posts on the community forums.
  • Started 38 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet