MyBB Community Forums

Full Version: quick edit error 1.4.11
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm sorry if this has been discussed or solved? I did a search and found nothing so:

I just recently upgraded to 1.4.11 from 1.4.1

now i'm getting this error when I do a quick edit of a post:
(image also attached)

Quote:There was an error performing the update.

".$message."


I've turned off all plugs

It does not help

Any ideas? test
URL?? Test account?? That doesn't even appear to be a MyBB message.
The message appears to be from the browser

or windows and not the actual mybb board

it happens in firefox and IE

could it be something with the server or a permission settings on the

file that contains the quick edit code?
Yeah, it is your browser. What version of IE are you using if you are using IE?
URL and test account?
You've got something odd going on here. This is the function that shows these errors (comments and blank lines removed):

function xmlhttp_error($message)
{
	global $charset;
	header("Content-type: text/xml; charset={$charset}");
	echo "<error>".$message."</error>";
	exit;
}

That's probably where it's coming from, but you'd have had to edit this file to break it. Try a new copy of ./xmlhttp.php
(2010-03-20, 11:50 AM)MattRogowski Wrote: [ -> ]You've got something odd going on here. This is the function that shows these errors (comments and blank lines removed):

function xmlhttp_error($message)
{
	global $charset;
	header("Content-type: text/xml; charset={$charset}");
	echo "<error>".$message."</error>";
	exit;
}

That's probably where it's coming from, but you'd have had to edit this file to break it. Try a new copy of ./xmlhttp.php

That fixed it, thankyou very much for your helpSmile