Invalid Session. Please resubmit the form.
Forumsregeln
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Auch wenn hier der Support für phpBB 2 weiterhin aufrecht erhalten bleibt, weisen wir darauf hin, dass das phpBB 2 nicht mehr offiziell unterstützt und weiterentwickelt wird!
Invalid Session. Please resubmit the form.
After I update to 2.0.22 I have this error when I sending a PM.
What can be wrong?
What can be wrong?
ok I will check file privmsg.php again with update instructions.
TNX
on other forums I didn't find any working solutions.
This happends when I post PM first time, than I get this message and then I submit again and it works.
It is problem because of quick reply in PM I think.
TNX
on other forums I didn't find any working solutions.
This happends when I post PM first time, than I get this message and then I submit again and it works.
It is problem because of quick reply in PM I think.
Zuletzt geändert von Blisk am Fr 05.Jan, 2007 13:15, insgesamt 1-mal geändert.
-
schmidtedv
- Beiträge: 607
- Registriert: So 13.Feb, 2005 10:46
- Wohnort: St. Blasien (seit 01.06)
- Kontaktdaten:
Use the solution posted here... http://www.phpbbstyles.com/viewtopic.php?p=86275#86275 ..should work for quick rply in pm, too!
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
The main problem:
A missing SID!
I've just entered it here at oxpus.de, too, and the PM Quick Reply works now fine...
A missing SID!
I've just entered it here at oxpus.de, too, and the PM Quick Reply works now fine...
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
Here in the privmsg.php:
Note the variable $s_hidden_fields...
Code: Alles auswählen
if ( $folder == 'inbox' && $privmsg['user_absence'] == FALSE )
{
$s_hidden_fields .= '<input type="hidden" name="reply" value="1" /><input type="hidden" name="id" value="'.$privmsg_id.'" /><input type="hidden" name="sid" value="'.$userdata['session_id'].'" />';
$template->assign_block_vars('quickreply', array(Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
I putted in tpl file like folks said on forum but didn't work.
Now I putted here in privmsg.php
It is the closest I can find, from your advice.
Is it ok?
Now I putted here in privmsg.php
It is the closest I can find, from your advice.
Is it ok?
Code: Alles auswählen
if ( $folder == 'inbox' )
{
$post_img = $post_icons['post_img'];
$reply_img = $post_icons['reply_img'];
$quote_img = $post_icons['quote_img'];
$edit_img = '';
$post = $post_icons['post'];
$reply = $post_icons['reply'];
$quote = $post_icons['quote'];
$edit = '';
$l_box_name = $lang['Inbox'];
}
else if ( $folder == 'outbox' )
{
$post_img = $post_icons['post_img'];
$reply_img = '';
$quote_img = '';
$edit_img = $post_icons['edit_img'];
$post = $post_icons['post'];
$reply = '';
$quote = '';
$edit = $post_icons['edit'];
$l_box_name = $lang['Outbox'];
}
else if ( $folder == 'savebox' )
{
if ( $privmsg['privmsgs_type'] == PRIVMSGS_SAVED_IN_MAIL )
{
$post_img = $post_icons['post_img'];
$reply_img = $post_icons['reply_img'];
$quote_img = $post_icons['quote_img'];
$edit_img = '';
$post = $post_icons['post'];
$reply = $post_icons['reply'];
$quote = $post_icons['quote'];
$edit = '';
}
else
{
$post_img = $post_icons['post_img'];
$reply_img = '';
$quote_img = '';
$edit_img = '';
$post = $post_icons['post'];
$reply = '';
$quote = '';
$edit = '';
}
$l_box_name = $lang['Saved'];
}
else if ( $folder == 'sentbox' )
{
$post_img = $post_icons['post_img'];
$reply_img = '';
$quote_img = '';
$edit_img = '';
$post = $post_icons['post'];
$reply = '';
$quote = '';
$edit = '';
$l_box_name = $lang['Sent'];
}
$s_hidden_fields = '<input type="hidden" name="mark[]" value="' . $privmsgs_id . '" />';
$s_hidden_fields .= '<input type="hidden" name="reply" value="1" /><input type="hidden" name="id" value="'.$privmsg_id.'" /><input type="hidden" name="sid" value="'.$userdata['session_id'].'" />';
$page_title = $lang['Read_pm'];
include($phpbb_root_path . 'includes/page_header.'.$phpEx);
Zuletzt geändert von Blisk am Mo 08.Jan, 2007 20:05, insgesamt 1-mal geändert.
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
Search for
and the $s_hidden_fields near this line.
Code: Alles auswählen
$template->assign_block_vars('quickreply', array(Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
Then you may have an other quick reply mod there as mine...
Zuletzt geändert von oxpus am Mo 08.Jan, 2007 21:53, insgesamt 1-mal geändert.
Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
this mod I have installed and it was downloaded from your download page.
Code: Alles auswählen
-- Code dropped by OXPUS --
Zuletzt geändert von Blisk am Di 09.Jan, 2007 10:35, insgesamt 1-mal geändert.
- oxpus
- Administrator
- Beiträge: 28735
- Registriert: Mo 27.Jan, 2003 22:13
- Wohnort: Bad Wildungen
- Kontaktdaten:
Hmmm, I thought this would the same as I uses here...
Okay, then search for the $s_hidden_fields around
and insert there the hidden input for the SID...
Okay, then search for the $s_hidden_fields around
Code: Alles auswählen
'MESSAGE_REPLY'=> $username,Karsten Ude
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!
-={ Das Mädchen für alles }=-
Kein Support per Messenger, Email oder PN! Unaufgeforderte Nachrichten werden ignoriert!
No support per Messenger, Email or PM. Each unasked message will be ignored!