Welcome, Guest. Please Login or Register.
April 26, 2024, 03:53:21 PM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  Development  |  Completed mods  |  [Beta 1.5.1] AdvIM « previous next »
Pages: 1 ... 12 13 [14] 15 Reply Ignore Print
Author Topic: [Beta 1.5.1] AdvIM  (Read 45390 times)
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] AdvIM
« Reply #195 on: May 06, 2003, 11:15:01 PM »
Reply with quote

Server is down right now. As CrazyC said those should be fixed in the latest version.
Logged
Tilton53
Jr. Member
**
Posts: 73


I'm a llama!

Re:[Beta 1.5.1] AdvIM
« Reply #196 on: May 08, 2003, 02:05:57 PM »
Reply with quote

I get this error
You have an error in your SQL syntax near 'TO' at line 1
File: /data/members/free/tripod/uk/t/i/l/tilton53/htdocs/Sources/InstantMessage.php
Line: 752

downloaded the zip 5 minutes ago
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] AdvIM
« Reply #197 on: May 08, 2003, 07:19:02 PM »
Reply with quote

Can you paste your line 752?
Logged
Tilton53
Jr. Member
**
Posts: 73


I'm a llama!

Re:[Beta 1.5.1] AdvIM
« Reply #198 on: May 09, 2003, 03:28:08 AM »
Reply with quote

ok download the zip from your server open up Instant Message.php got  line 725

there you go!
Logged
Tilton53
Jr. Member
**
Posts: 73


I'm a llama!

Re:[Beta 1.5.1] AdvIM
« Reply #199 on: May 09, 2003, 08:59:10 AM »
Reply with quote

Somebody help me!
Logged
McGilljam
Noobie
*
Posts: 19


I'm a tigger...

mcgilljam@hotmail.com WWW
Re:[Beta 1.5.1] AdvIM
« Reply #200 on: May 11, 2003, 01:11:10 AM »
Reply with quote

 ???

When i want to make an backup I've got an javascript error...

javascript:DoConfirm('Backup%20this%20message?','http://213.226.73.114/yabbse/index.php?action=imbackup;caller=1;ID_IM=229;sesc=1774b344855ddb83f412c5195285254e');

And when I want to delete a message I've got one more java error...

javascript:DoConfirm('Remove%20this%20message?','http://213.226.73.114/yabbse/index.php?action=imremove;caller=1;ID_IM=229;sesc=1774b344855ddb83f412c5195285254e');

IE6 say something like..

Line: 1
Char: 1
ERROR: Object expected
Code: 0
URL: http://213.226.73.114/yabbse/index.php?action=imview;caller=1;ID_IM=229

My YaBBSE is 1.5.2

I followed all the steps in right order due installation of the mod. Whats wrong?
Logged
McGilljam
Noobie
*
Posts: 19


I'm a tigger...

mcgilljam@hotmail.com WWW
Re:[Beta 1.5.1] AdvIM
« Reply #201 on: May 11, 2003, 01:21:22 AM »
Reply with quote

Oh....

Sorry.. got it now...

You should add this to the install instructions:

6. add the following line somewhere in your template.php file, preferably between the <head> tags:
<script language="javascript" type="text/javascript" src="/yabbse/ubbc.js"></script>

Works fine now...  ;D when I found the right posts in here...
Logged
Tilton53
Jr. Member
**
Posts: 73


I'm a llama!

Re:[Beta 1.5.1] AdvIM
« Reply #202 on: May 11, 2003, 06:34:20 PM »
Reply with quote

Yeah well that is javascript and the is my sql!

:P

I know how to prgram javascript but this harder
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] AdvIM
« Reply #203 on: May 11, 2003, 08:56:05 PM »
Reply with quote

I asked you to post that line because I don't get that error message. Anyway is this the line you have?

         $request = mysql_query("SELECT ID_MEMBER_TO, toName, ID_MEMBER_FROM, fromName, msgtime, subject, body FROM {$db_prefix}instant_messages WHERE (ID_IM = $id AND ID_MEMBER_" . ($caller == 1 ? 'TO' : 'FROM') . " = '$ID_MEMBER' AND readBy <> -1)") or database_error(__FILE__, __LINE__);
Logged
Tilton53
Jr. Member
**
Posts: 73


I'm a llama!

Re:[Beta 1.5.1] AdvIM
« Reply #204 on: May 11, 2003, 11:14:44 PM »
Reply with quote

yes ;D
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] AdvIM
« Reply #205 on: May 12, 2003, 12:22:37 AM »
Reply with quote

Ok well try changing that line to this:

        $query = "SELECT ID_MEMBER_TO, toName, ID_MEMBER_FROM, fromName, msgtime, subject, body FROM {$db_prefix}instant_messages WHERE (ID_IM = $id AND ID_MEMBER_" . ($caller == 1 ? 'TO' : 'FROM') . " = '$ID_MEMBER' AND readBy <> -1)";
        fatal_error($query);


Then cut&paste the error message that should show up.
Logged
Tilton53
Jr. Member
**
Posts: 73


I'm a llama!

Re:[Beta 1.5.1] AdvIM
« Reply #206 on: May 12, 2003, 01:14:58 AM »
Reply with quote

SELECT ID_MEMBER_TO, toName, ID_MEMBER_FROM, fromName, msgtime, subject, body FROM yabbse_instant_messages WHERE (ID_IM = 11 AND ID_MEMBER_TO = '1' AND readBy <> -1)
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] AdvIM
« Reply #207 on: May 12, 2003, 01:25:15 AM »
Reply with quote

There is nothing wrong with the SQL syntax that you just posted... so I have no clue why you would get that error.
Logged
Tilton53
Jr. Member
**
Posts: 73


I'm a llama!

Re:[Beta 1.5.1] AdvIM
« Reply #208 on: May 12, 2003, 03:53:38 AM »
Reply with quote

oh well I will disable the back up box and use the other settings!  :(
Logged
Valconeye
Full Member
***
Posts: 190


Re:[Beta 1.5.1] AdvIM
« Reply #209 on: June 21, 2003, 01:17:16 AM »
Reply with quote

It works great! except when i goto my inbox it says "To" and then i goto my outbox and it says "From" is it susposed to be like that? or how can i fix it?
Logged
Pages: 1 ... 12 13 [14] 15 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Beta 1.5.1] AdvIM « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.015 seconds with 20 queries.