Search found 197 matches

by tumba25
06 Mar 2015, 15:57
Forum: Modders MOD support
Topic: Recent issue with MCHAT
Replies: 6
Views: 26935

Re: Recent issue with MCHAT

or is usually compiled into php.

Go to your forum ACP > General and click on PHP information. Then search for the string and poke your host if it's missing (and Rich if it's there :) ).
by tumba25
22 Feb 2015, 21:33
Forum: phpBB Modders
Topic: Is anyone still active here??
Replies: 8
Views: 31738

Re: Is anyone still active here??

Welcome.
by tumba25
17 Feb 2015, 00:31
Forum: phpBB Modders
Topic: Function "find a member"
Replies: 3
Views: 11452

Re: Function "find a member"

by tumba25
30 Jan 2015, 15:44
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

by tumba25
28 Jan 2015, 14:35
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

by tumba25
28 Jan 2015, 11:14
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

Great. Want to share the needed info?
by tumba25
27 Jan 2015, 15:51
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

by tumba25
25 Jan 2015, 14:25
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

by tumba25
25 Jan 2015, 12:52
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

@RMcGirr83: Do you have a non mini version of mchat_ajax_mini.js?

@deejay_xb: You really need to get the form token and form created time from mChat. The best would have been a API, but since the author didn't think about that you need to scrape it from the site.
by tumba25
25 Jan 2015, 11:48
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

You will also need $config['form_token_lifetime'] . If it's -1 , then you don't need to bother with the form creation time. If not, you need to. $max = max(30, $config['form_token_lifetime']); $diff = time() - abs($form_creation_time); if ($diff <= $max) { // Good to go. } else { // Form to ...
by tumba25
25 Jan 2015, 10:14
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

Ok, played a bit with this, here is what I found. $token_sid = ($user->data['user_id'] == ANONYMOUS && !empty($config['form_token_sid_guests'])) ? $user->session_id : ''; That makes $token_sid empty for logged in users. It only holds a value for guests. And the form name is mchat_posting . T...
by tumba25
24 Jan 2015, 13:23
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

by tumba25
23 Jan 2015, 17:58
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 209885

Re: mChat add message

by tumba25
21 Jan 2015, 22:14
Forum: Modders MOD support
Topic: mchat input delay/lag
Replies: 3
Views: 11200

Re: mchat input delay/lag

If the site/internet is slow some might press the send button twice.
by tumba25
20 Jan 2015, 22:00
Forum: 3.0 Code snippets
Topic: 2 Column Forum Layout
Replies: 14
Views: 44367

Re: 2 Column Forum Layout

Yes, but it would require some coding. With all phpBB 3.0 MODs being converted to 3.1 Extensions I don't think anybody has any free time for it now.

Go to advanced search