Previous Thread
Next Thread
Print Thread
Rate Thread
Page 2 of 2 1 2
Joined: Aug 2000
Posts: 18
Junior Member
Junior Member
Offline
Joined: Aug 2000
Posts: 18
Is there anything I can do to modify the program to have it work with v6.05?

The reason I'm hesitant to upgrade to v6.10 is because of all the other hacks I have installed already. I assume I would lose them in the upgrade.

Any suggestions on what I could to make it work with v6.05? I can work on the program if I can get some guidance. Or are there alternative solutions? Thanks

Sponsored Links
Joined: Aug 2000
Posts: 18
Junior Member
Junior Member
Offline
Joined: Aug 2000
Posts: 18
Ok, I went ahead and upgraded to v6.10. Now the DigiChat hack works like a charm. Thanks!!

Two questions:

1) I have the login/password form on my forum summary page. I would like it to open a new window? Where and what file should I edit to do this?

2) Since I have my username/password login on the forum summary page, they currently show up blank when one opens this page. What can I modify in order to have these already filled with the username & password information?

3) Is there a way for DigiChat to remember user settings such as icon and profile?

Thank you for all the help.

LtUSMC

Joined: Jun 2001
Posts: 11
Junior Member
Junior Member
Offline
Joined: Jun 2001
Posts: 11
I have the same question and feel the same as Asniper. . .

Joined: Feb 2000
Posts: 4,625
Member
Member
Offline
Joined: Feb 2000
Posts: 4,625
up

Joined: Mar 2001
Posts: 22
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 22
suh-weet. been waiting for this one. good job guys....

Sponsored Links
Joined: Mar 2001
Posts: 22
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 22
One suggestion. First, I have my UBB set to not allow guests at all. I'm trying to link (from a page outside of the UBB) directly to the digichat login screen, but if you aren't logged in it asks you to do so, and then after you login instead of sending you to the digichat login screen again, it sends you to the main UBB page.

I'm running 6.2.0

Joined: Feb 2000
Posts: 4,625
Member
Member
Offline
Joined: Feb 2000
Posts: 4,625
Updated. Not sure if it will WORK, but...

Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
[code][/code]Why is it needed? tipsy

1. There isn't $in{refer}.
2. $ubb isn't used anywhere.
3. You have more }s than {.
4. You're printing blank variables as cookies.

Joined: Feb 2000
Posts: 4,625
Member
Member
Offline
Joined: Feb 2000
Posts: 4,625
FYI, it's in there for version 2.0, coming to a theatre near you.

Joined: Mar 2001
Posts: 22
Junior Member
Junior Member
Offline
Joined: Mar 2001
Posts: 22
Oh, also another suggestion...

The old digichat hack allowed you to pass variables for avatars and other preferences.

That would be dope.

Sponsored Links
Joined: May 2001
Posts: 11
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 11
Hi LK

Have you managed to call the digichat.cgi directly without
using a form. You seem to say that you can in a earlier note, but
I don't understand what to change. frown I have the form version working
with my board thanks to your later note.

Any ideas on how you could login to DigiChat when you are not already
logged into UBB? At present it logs you into UBB then takes you to the forums.

I would be very grateful for any hints on how to get that to work.

I am now looking at the buddies capability in DigiChat. I think
It should be possible to interface it quite neatly with UBB.
I am going to attempt to write some code and will post it here if
anyone is interested.

Cheers

Websorceror

Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
In digichat.cgi, find:
Code
[/code]Replace with:[code]
Then try to link to digichat.cgi... It's not tested, but I think it should work.

Joined: May 2001
Posts: 11
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 11
Hi LK,

Wow I didn't expect a response that quick, thanks very much I will try that.
Do you know if this hack is going to eventually become a finished application.
It works really well on my board, so I am already pretty happy with it.
Are there any known deficiencies I should be aware of?

Cheers

Websorceror smile

Joined: May 2001
Posts: 11
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 11
Hi LK,

Your suggestion to bypass the form worked like a dream.

Many Thanks

Websorceror

Joined: May 2001
Posts: 11
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 11
Hi Greg and LK,

I have been testing the digichat hack over the past few days and have found one small bug,
so far (pretty good for beta software smile ). If you access the chat using Netscape it fails with
a file not found, this is because the case on the client.jar is wrong. Literally only changing the
uppercase "C" to lowercase will fix the fault.

Find (in digichat.cgi)
ARCHIVE="Client.jar"

Change to
ARCHIVE="client.jar"

I have also found if I use LK's cookie code that it can let people through who do not have post
access under some circumstances when calling the hack directly. I have written a small patch to
fix the problem and will post it when i have tested it works correctly. Thanks for the great
hack it has allowed me to really integrate Digichat in with my UBB membership in record time.

Greg are you still intending to release v2.0, if so could you give any clues as to what it will
contain?

Cheers

Websorceror

Joined: Mar 2001
Posts: 7,394
LK Offline
Admin / Code Breaker
Admin / Code Breaker
Offline
Joined: Mar 2001
Posts: 7,394
Have you ever seen that problem yourself?

Joined: May 2001
Posts: 11
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 11
Hi LK,

I have seen it on my system, it is likely to be rare but I have been able to reproduce it. I will logon to my other system to get the details, should get back to you within 15 mins.

Cheers

Websorceror

Joined: May 2001
Posts: 11
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 11
Hi LK,

I found that users who had been members, but
since had their posting ability turned off could
still access digichat if I called the hack
directly using your cookie suggestion. They
obviously needed to have logged on with posting
rights before, and still have a valid cookie.

To prevent this I added the following code

Find

&DoPostTheReply;

Add this immediately before it

if ($user_profile[4] !~ /Write/i){
print("

Sorry, you not authorised to chat");
exit;
}

So far it seems to solve the problem.

I am also going to try to interface with the UBB buddies facility. I am still learning Perl and
UBB so that should be interesting. Hope the above is useful.

Cheers

Websorceror

Joined: Aug 2001
Posts: 71
Member
Member
Offline
Joined: Aug 2001
Posts: 71
The link is down.. frown

Joined: May 2001
Posts: 11
Junior Member
Junior Member
Offline
Joined: May 2001
Posts: 11
Hi Morpheus,

The link is live again now, I just successfully
downloaded the hack. This is a really good hack,
but make sure you read the posts by LK on how to
install and call it. Great to see someone else
interested in integrating Digichat, good luck and
enjoy.

I have been looking at writing some extensions
for this to allow saving of buddy lists and
possibly more. I may release them here when they
are finished if anyone is interested.

Cheers

Websorceror

Joined: Mar 2002
Posts: 8
Junior Member
Junior Member
Offline
Joined: Mar 2002
Posts: 8
Yeah! Great hack! Nice Work!

Joined: Apr 2001
Posts: 20
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 20
i just cant seem to understand this step
i am using 6.3.0
does that mean it wont work?

[code][/code]Then, use:
| digichat[/b]

Joined: Apr 2001
Posts: 20
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 20
anyone can shed some light on this please?
i seem to have it working but only this part of the linking doesnt seem to work or i dont understand this post above

please help...i have 6.3.0

Joined: Apr 2001
Posts: 20
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 20
bump

help please

Joined: Apr 2001
Posts: 20
Junior Member
Junior Member
Offline
Joined: Apr 2001
Posts: 20
thanks LK for all your help
sorry didnt mean to bother you with the PMs

Joined: Jan 2011
Posts: 3
Lurker
Lurker
Offline
Joined: Jan 2011
Posts: 3
Digichat applet can be assessable by php and mysql! So you can run the applet with php values that can connect to your mysql database:

PHP Code
<applet name="DigiChat" 
codebase="http://hostname/DigiChat/DigiClasses/"
code="com.diginet.digichat.client.DigiChatApplet"
width="200" height="90" align="middle" archive="client.jar">
<
param name="siteID" value="<?php echo $_SESSION['SESS_SITE_ID']; ?>">
<
param NAME="Age" VALUE="<?php echo $_SESSION['SESS_AGE'];?>">
<
param NAME="realname" VALUE="<?php echo $_SESSION['SESS_REAL_NAME'];?>">
<
param NAME="nickname" VALUE="<?php echo $_SESSION['SESS_FIRST_NAME'];?>">
<
param name="url" value="<?php echo $_SESSION['SESS_URL']; ?>">
<
param name="exitmessage" value="<?php echo $_SESSION['SESS_EXIT_MESSAGE']; ?>">
<
param name="comments" value="<?php echo $_SESSION['SESS_COMMENTS']; ?>">
<
param name="cabbase" value="Client.cab">
<
param name="background" value="ffffff">
<
param name="textcolor" value="000000">
<
param value="true" name="RoomsTab">
<
param name="quickload" value="true">
<
param name="signed" value="TRUE">
<
param name="ports" value="7545,7546,7547,7548">
</
applet>

Last edited by xxcorrosionxx; 05/16/2011 8:33 PM.
Joined: Mar 2000
Posts: 21,079
Likes: 3
I type Like navaho
I type Like navaho
Joined: Mar 2000
Posts: 21,079
Likes: 3
Danke xCx


- Allen wavey
- What Drives You?
Page 2 of 2 1 2

Link Copied to Clipboard
Donate Today!
Donate via PayPal

Donate to UBBDev today to help aid in Operational, Server and Script Maintenance, and Development costs.

Please also see our parent organization VNC Web Services if you're in the need of a new UBB.threads Install or Upgrade, Site/Server Migrations, or Security and Coding Services.
Recommended Hosts
We have personally worked with and recommend the following Web Hosts:
Stable Host
bluehost
InterServer
Visit us on Facebook
Member Spotlight
JAISP
JAISP
PA
Posts: 449
Joined: February 2008
Forum Statistics
Forums63
Topics37,573
Posts293,925
Members13,849
Most Online5,166
Sep 15th, 2019
Today's Statistics
Currently Online
Topics Created
Posts Made
Users Online
Birthdays
Top Posters
AllenAyres 21,079
JoshPet 10,369
LK 7,394
Lord Dexter 6,708
Gizmo 5,833
Greg Hard 4,625
Top Posters(30 Days)
Top Likes Received
isaac 82
Gizmo 20
Brett 7
WebGuy 2
Morgan 2
Top Likes Received (30 Days)
None yet
The UBB.Developers Network (UBB.Dev/Threads.Dev) is ©2000-2024 VNC Web Services

 
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20221218)