Results 1 to 10 of 12
-
27th May 2008, 02:15 PM #1OPMember
Error While Posting
I get this error while posting a thread in my steam room on:
http://www.wrzboard.org
Your submission could not be processed because a security token was missing or mismatched.
If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error.
New Thread Link:
http://www.wrzboard.org/newthread.php?do=newthread&f=23
Please help me if you can.
elighted: Ak47Ak47 Reviewed by Ak47 on . Error While Posting I get this error while posting a thread in my steam room on: http://www.wrzboard.org Your submission could not be processed because a security token was missing or mismatched. If this occurred unexpectedly, please inform the administrator and describe the action you performed before you received this error. New Thread Link: http://www.wrzboard.org/newthread.php?do=newthread&f=23 Rating: 5
-
27th May 2008, 02:24 PM #2MemberWebsite's:
warezspark.comits something to do with the host if i am not wrong?
did you try refreshing?
i faced these errors too,but after refresh it worked fine
-
27th May 2008, 02:30 PM #3Member
read this it will help you: solution
Respected and Trusted People: UltimA - Dman - Ak47 - Whoo - CyberDeViLZ - HaxoR - jayfella - jjj - HAWK = <3
-
27th May 2008, 02:57 PM #4Member
Its due to the vb 3.7.0 upgrade. Look it up on vbulletin.org/.com
www.RapidLinks.co.uk VIP Packages -
Donate ?10 and get Four Rapidshare Premium Acounts for 6 Months!
Donate ?15 and get a Megaupload Premium Account for a whole year!
Donate ?25 and get Four Rapidshare Premium Accounts and a Megaupload account for a whole year!
-
27th May 2008, 03:14 PM #5OPMember
Actually Saurav i use 3.6.10
-
27th May 2008, 04:00 PM #6Member
Ahh thats weird. Happened to me when I upgraded to 3.7.0 so I thought it might be that Sorry
www.RapidLinks.co.uk VIP Packages -
Donate ?10 and get Four Rapidshare Premium Acounts for 6 Months!
Donate ?15 and get a Megaupload Premium Account for a whole year!
Donate ?25 and get Four Rapidshare Premium Accounts and a Megaupload account for a whole year!
-
29th May 2008, 10:27 AM #7OPMember
Well it was a problem with the skin that i was using i re-imported it and its working fine now.
-
8th Jun 2008, 06:48 PM #8OPMember
Actually its messed up once again, anymore suggestions?
-
9th Jun 2008, 08:35 PM #9Member
Not to fear Shadow is here! LOL! That was so cheesy...but anyways here is something that might help.
With the new version of vBulletin 3.6.10 and 3.7.0 RC4 +, a new protection against Cross Site Request Forgery (CSRF) has been introduced. This new protection might influence the coding in modifications.
Cross Site Request Forgery (CSRF) involves taking advantage of the stateless nature of HTTP, there are no ways to ensure the exact origin of a request, its also not possible to detect what was actually initiated by a user and what was forced by a third party script. A token was added to the latest version of each of the vBulletin products, with the release of 3.6.10 and 3.7.0 RC4 it is no longer possible to submit a POST request directly without passing in the known token.
The addition of a security token for each POST request removes the ability for a remote page to force a user to submit an action. At the moment this protection will only apply to vBulletin files and third party files will need to opt into this protection and add the appropriate hidden field. This was done to preserve backwards compatibility.
Adding Protection to your own files
To opt your entire file into CSRF protection the following should be added to the top of the file under the define for THIS_SCRIPT.
PHP Code:
Code:define('CSRF_PROTECTION', true);
If this value is set to false then all CSRF protection is removed for the file, this is appropriate for something that intentionally accepts remote POST requests.
You should always add this to your file, even if you don't think the script is ever going to receive POST requests.
An absence of this defined constant within your files will result in the old style referrer checking being performed.
Template Changes
The following should be added to all of the forms which POST back to vBulletin or a vBulletin script. This will automatically be filled out with a 40 character hash that is unique to the user.
PHP Code:
Code:<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
Exempting Certain Actions
It may be appropriate to exempt a particular action from the CSRF protection, in this case you can add the following to the file.
PHP Code:
Code:define('CSRF_SKIP_LIST', 'action_one,action_two');
If the skip list needs to be changed at runtime is it available within the registry object, using the init_startup hook the following code would be used to exempt 'example.php?do=action_three'.
PHP Code:
Code:if (THIS_SCRIPT == 'example') { $vbulletin->csrf_skip_list[] = 'action_three'; }
AJAX requests
.................................................. .................................................. ..
You need to add the security token to AJAX requests using POST. This can be simply added using the variable "SECURITYTOKEN". An example is below.
PHP Code:
Code:YAHOO.util.Connect.asyncRequest('POST', scriptpath + '?do=ajax', { success: this.handle_ajax_response, failure: this.handle_ajax_error, timeout: vB_Default_Timeout, scope: this }, SESSIONURL + 'securitytoken=' + SECURITYTOKEN + '&foo=' + foo);
Searching for templates that need editing
.................................................. .................................................. ..
If you want to search all template that you need to edit to add:
Code:<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
Code:SELECT templateid , title , styleid FROM template WHERE template_un NOT LIKE '%<input type="hidden" name="s" value="$session[sessionhash]" />%<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />%' AND template_un LIKE '%<input type="hidden" name="s" value="$session[sessionhash]" />%' ORDER BY title ASC, styleid ASC;
Security token errors
.................................................. .................................................. ..
In your Admin CP under Styles & Template select Search In Templates...
Search for:
HTML Code:
Code:value="$session[sessionhash]"
PHP Code:
Code:<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
I did not make this tutorial. Credit goes to Hoxxy of LittleWhiteLines.
-
10th Jun 2008, 12:59 PM #10OPMember
Thanks allot no more problems now .
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Getting error when posting (some numbers)
By wtfcrane in forum vBulletinReplies: 10Last Post: 19th Feb 2012, 12:11 PM -
posting for SHIT?????Make money even by posting now.........
By berrycorp in forum Webmasters, Money MakingReplies: 24Last Post: 7th Mar 2011, 12:15 AM -
Adding Domain Error in cPanel (Error from park wrapper:)
By Ryza in forum General DiscussionReplies: 0Last Post: 20th Feb 2011, 01:57 AM -
Getting error when posting new thread! Help!
By Mr.BorisManUtd in forum vBulletinReplies: 5Last Post: 20th Jul 2010, 04:45 PM -
Getting error when posting new thread! Help!
By Mr.BorisManUtd in forum vBulletinReplies: 2Last Post: 16th Jul 2010, 11:08 PM
themaPoster - post to forums and...
Version 5.22 released. Open older version (or...