Search found 87 matches

by deejay_xb
30 Jan 2015, 17:23
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

the app will be available on google play when it will be ready.
by deejay_xb
28 Jan 2015, 15:38
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

here is the custom login.. this returns all the needed info for mchat post from outside client :D <?php define('IN_PHPBB', true); $phpbb_root_path = './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); // Basic parameter data $id = request_var('i', ''); $...
by deejay_xb
28 Jan 2015, 11:45
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

the problem was curl related, and mchat post link is like this: mchat.php?sid=usersessionid&mode=add&the rest of variables autogenerated like time form_token.. so i made a custom login.php that returns in json format all the variables i need when i login, then with that variables i make the ...
by deejay_xb
28 Jan 2015, 00:43
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

nevermid my previous messages i've succeded in postin mchat message from outside :D
by deejay_xb
27 Jan 2015, 21:55
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

doesnt work..
when posting message it says that i'm not logged in, but i am..

@rich - can you please help? :D
why mchat says i'm not logged in but i am logged in in phpbb? how to post message without using cookies? with sid (from users_table) it does not work..
by deejay_xb
27 Jan 2015, 10:30
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

do i need to send also some session id?
like mchat.php?sid=dsahfkah114143mhaafa&mode=add&......
by deejay_xb
27 Jan 2015, 07:02
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

do i need something else because: http://www.gameforest.ro/mchat.php?mode=add&message=testdecacat2&addbbcode20=100&addbbcode_custom=%23&creation_time=1421350220&form_token=cc82c5c4493aa22shjewja6800618817930fe57 does not work.. it does nothing, no error, no message in mchat..
by deejay_xb
25 Jan 2015, 15:40
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

ok so token is sha1('time''user_form_salt''mchat_posting') :D and it seems that is correct: time() = 1421591728 user_form_salt = 68cb19d150c03331 form_name = postform string = 142159172868cb19d150c03331mchat_posting token = sha1(142159172868cb19d150c03331mchat_posting) token = 379ad196d7b4b446d96b88...
by deejay_xb
24 Jan 2015, 16:46
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

this is in functions.php $now = time(); $token_sid = ($user->data['user_id'] == ANONYMOUS && !empty($config['form_token_sid_guests'])) ? $user->session_id : ''; $token = sha1($now . $user->data['user_form_salt'] . $form_name . $token_sid); time() is current php time; $token_sid = $user->sess...
by deejay_xb
24 Jan 2015, 10:36
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

ty, but i need to find how the autogenerate form_token is made..
maybe rich can help?
by deejay_xb
21 Jan 2015, 19:54
Forum: Modders MOD support
Topic: mchat input delay/lag
Replies: 3
Views: 11207

Re: mchat input delay/lag

that double message in mchat sometimes is also on my site, i think the problem has something to do with the internet lag or host lag.. i have not found a cure for this problem.
by deejay_xb
20 Jan 2015, 09:14
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

phpbb 3.0.12 :D
by deejay_xb
20 Jan 2015, 08:56
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

IF the app will work then it will be a free app.
for now to start and develop the app i need to figure out how to make the generated add mchat link..
by deejay_xb
19 Jan 2015, 15:15
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

cool, then we can make some tests also here :D
by deejay_xb
18 Jan 2015, 16:14
Forum: Modders MOD support
Topic: mChat add message
Replies: 40
Views: 210441

Re: mChat add message

time() is the same, i've used the time() from the mchat autogenerated url
also i put form_name empty but also got different sha1..

Go to advanced search