Welcome, Guest. Please Login or Register.
April 20, 2024, 01:14:11 PM
Home Help Search Log in Register
News: If you are still using YaBB SE, please consider upgrading to SMF as soon as possible.

YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.4.x/1.5.x - UPDATE] IM Status V1.3 « previous next »
Pages: 1 [2] 3 Reply Ignore Print
Author Topic: [Done 1.4.x/1.5.x - UPDATE] IM Status V1.3  (Read 9793 times)
Koth
Jr. Member
**
Posts: 91


Your mother was a ham sandwich.

Re:[Done 1.4.0/1.4.1] IM Status
« Reply #15 on: October 05, 2002, 01:23:23 PM »
Reply with quote

Quote from: Eloya on October 04, 2002, 10:13:46 AMGrin... not really ;)

I've installed the Mod which gives you these neat checkboxes. After that I installed the mod.

You can look at the code if you use: http://www.travar.de/im.txt -

Anyone an idea?

Nico

Change the code in the 5th step of the mod to display 6 cols instead of 5 and you should be good to go.


Also it will need to search for 5 cols instead of four
Logged


 
Eloya
Full Member
***
Posts: 127


Magistrat

nschunter@eloya.net WWW
Re:[Done 1.4.0/1.4.1 - UPDATE] IM Status
« Reply #16 on: October 05, 2002, 01:33:39 PM »
Reply with quote

I install always per Hand *g*

Thjank you, it worked. Must be blind not seeing that obvious thin *shame on me*

Greetings,

Nico
Logged

"Der Unterschied zwischen Magie und Alltag ist die Betrachtungsweise!"
http://www.travar.de
MC600
YaBB God
*****
Posts: 968


Jetzt habe ich Zähne!

ICQ - 168723559 WWW
Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #17 on: December 27, 2002, 05:32:41 AM »
Reply with quote

Update now, see first contribution - for YaBB SE 1.5.0
Logged

Freundliche Grüße aus Hönow - MC600 - Forum Gegen Krebs
Newsletter Service - Info´s über MOD´s von MC600 - Hier eintragen
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #18 on: December 27, 2002, 05:50:12 AM »
Reply with quote

Error: [edit: in english.lng, possibly german.lng]

this:
$txt['archiv4'] = 'This Message wasn't read by recipient yet!';
should be:
$txt['archiv4'] = 'This Message wasn\'t read by recipient yet!';
In the newest version (1.5)

-[Unknown]
« Last Edit: December 27, 2002, 06:09:54 AM by [Unknown] » Logged
MC600
YaBB God
*****
Posts: 968


Jetzt habe ich Zähne!

ICQ - 168723559 WWW
Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #19 on: December 27, 2002, 06:01:37 AM »
Reply with quote

Thanks *Fixed*
Logged

Freundliche Grüße aus Hönow - MC600 - Forum Gegen Krebs
Newsletter Service - Info´s über MOD´s von MC600 - Hier eintragen
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #20 on: December 28, 2002, 01:13:21 PM »
Reply with quote

I have 1.4.1. It seems to install ok.. but all my IMs always show as READ  ???

I have tried testing. The status doesnt change.

 ???
Logged
MC600
YaBB God
*****
Posts: 968


Jetzt habe ich Zähne!

ICQ - 168723559 WWW
Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #21 on: December 28, 2002, 01:45:06 PM »
Reply with quote

You have installed with Boardmod or by hand
Logged

Freundliche Grüße aus Hönow - MC600 - Forum Gegen Krebs
Newsletter Service - Info´s über MOD´s von MC600 - Hier eintragen
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #22 on: December 28, 2002, 01:46:29 PM »
Reply with quote

By hand.

I have 1.4.1 (with speedup mod).. boardmod had problems finding stuff
Logged
MC600
YaBB God
*****
Posts: 968


Jetzt habe ich Zähne!

ICQ - 168723559 WWW
Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #23 on: December 28, 2002, 03:43:39 PM »
Reply with quote

OK, check whether the following code is installed correctly


Quote<search for>
   $request = mysql_query("SELECT ID_IM, toName, subject, body, msgtime FROM {$db_prefix}instant_messages WHERE ID_MEMBER_FROM=$ID_MEMBER AND deletedBy != 0 ORDER BY ID_IM");
</search for>

<replace>
   $request = mysql_query("SELECT ID_IM, toName, subject, body, msgtime, readBy, deletedBy FROM {$db_prefix}instant_messages WHERE ID_MEMBER_FROM=$ID_MEMBER AND deletedBy != 0 ORDER BY ID_IM");
</replace>

Quote$request = mysql_query("SELECT ID_IM, toName, subject, body, msgtime, readBy, deletedBy FROM {$db_prefix}instant_messages WHERE ID_MEMBER_FROM=$ID_MEMBER AND deletedBy != 0 ORDER BY ID_IM");
Logged

Freundliche Grüße aus Hönow - MC600 - Forum Gegen Krebs
Newsletter Service - Info´s über MOD´s von MC600 - Hier eintragen
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #24 on: December 28, 2002, 03:51:00 PM »
Reply with quote

Thanks! I must be blind  ;D

All working great now  ;D
Logged
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #25 on: December 30, 2002, 03:41:37 PM »
Reply with quote

I dont think this change is mentioned in the 1.1 zip on the first post

Quote from: MC600 on December 28, 2002, 03:43:39 PMOK, check whether the following code is installed correctly


Quote<search for>
   $request = mysql_query("SELECT ID_IM, toName, subject, body, msgtime FROM {$db_prefix}instant_messages WHERE ID_MEMBER_FROM=$ID_MEMBER AND deletedBy != 0 ORDER BY ID_IM");
</search for>

<replace>
   $request = mysql_query("SELECT ID_IM, toName, subject, body, msgtime, readBy, deletedBy FROM {$db_prefix}instant_messages WHERE ID_MEMBER_FROM=$ID_MEMBER AND deletedBy != 0 ORDER BY ID_IM");
</replace>

Quote$request = mysql_query("SELECT ID_IM, toName, subject, body, msgtime, readBy, deletedBy FROM {$db_prefix}instant_messages WHERE ID_MEMBER_FROM=$ID_MEMBER AND deletedBy != 0 ORDER BY ID_IM");
Logged
MC600
YaBB God
*****
Posts: 968


Jetzt habe ich Zähne!

ICQ - 168723559 WWW
Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #26 on: December 30, 2002, 08:42:53 PM »
Reply with quote

Sorry, my fault, this was for 1.5

You have problems ? then send yours to me InstantMessage.php - I look purely
Logged

Freundliche Grüße aus Hönow - MC600 - Forum Gegen Krebs
Newsletter Service - Info´s über MOD´s von MC600 - Hier eintragen
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #27 on: December 30, 2002, 09:42:43 PM »
Reply with quote

I have applied the latest speedup mod to my 1.4.1.

That line you suggested fixed my problem. Works great now.

I have one problem though... when an IM already contains a quote.. and the quoted again. One of the quote tags seems to get deleted  ???

Not a major problem though.

Logged
Rpg Cyco
Full Member
***
Posts: 197


bradgordon51@hotmail.com WWW
Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #28 on: December 31, 2002, 09:02:52 AM »
Reply with quote

I have applied this MOD on YaBBSE 1.5.0 with [Unknown]'s latest bugfix and it works perfectly... Thank you!

l8ter

Rpg Cyco
Logged

MC600
YaBB God
*****
Posts: 968


Jetzt habe ich Zähne!

ICQ - 168723559 WWW
Re:[Done 1.4.x/1.5.x - UPDATE] IM Status
« Reply #29 on: January 03, 2003, 03:00:54 PM »
Reply with quote

*Update*

V1.3 : the only small changes to write
Logged

Freundliche Grüße aus Hönow - MC600 - Forum Gegen Krebs
Newsletter Service - Info´s über MOD´s von MC600 - Hier eintragen
Pages: 1 [2] 3 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.4.x/1.5.x - UPDATE] IM Status V1.3 « 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.027 seconds with 20 queries.