You are not logged in.
So my stuff was all working fine, and then i get this on a computer:
today I have gotten it on a second computer, but it's still running fine on others. I didn't find anything when searching on this. Anyone have any advice what may be causing it. It happens when a textarea is trying to load.
Offline
i don't think so... i will try to look into it more. it is becoming a bit frustrating. thanks!
Offline
Are the URL's timing out on random or is it a particular file which is the problem? If its in random, are your webserver hosting some heavy sites which at times eats all resources on the server resulting in timeouts for Apache?
If its not on random, is the problem occuring when submitting from the edit page or when entering it? Its hard to guess since I cant accuallu see the filename of the URL on your snapshot...
Offline
the URL's actually aren't timing out. i click a link to go to a page and imediately i get the Operation Aborted and it stops loading w/a blank screen.
it is also strange because i can click the same link and it will give me the error sometimes, and load the text area other times!
Offline
perhaps it could be related to my config? i updated this a while back around when it started happening.
<!--########## TEXT EDITOR CODE ##############-->
<script type="text/javascript">
_editor_url = "edit/";
_editor_lang = "en";
</script>
<!-- load the main HTMLArea file -->
<script type="text/javascript" src="edit/htmlarea.js"></script>
<script type="text/javascript">
HTMLArea.loadPlugin("ContextMenu");
function initDocument() {
var editor = new HTMLArea("editor");
var cfg = editor.config;
editor.registerPlugin(ContextMenu);
editor.config.toolbar =
[
/*["popupeditor","separator"],*/
[/*"formatblock","fontname","fontsize",*/"bold","italic","underline","strikethrough","separator"],
["forecolor","hilitecolor",/*"textindicator",*/"separator"],
/*["subscript","superscript"],*/
[/*"linebreak",*/"justifyleft","justifycenter","justifyright","justifyfull","separator"],
["insertorderedlist","insertunorderedlist","outdent","indent","separator"],
["inserthorizontalrule","createlink","insertimage","inserttable","separator"],
[/*"killword","removeformat","toggleborders","lefttoright", "righttoleft","separator"*/"htmlmode"/*,"about"*/]
];
/*
editor.registerPlugin(Stylist);
cfg.stylistLoadStylesheet('/~bunndjco/style/style.css');
*/
editor.generate();
}
</script>
<!--###########################################-->
Offline
for what it's worth, it works like a champ in firefox.
in IE it seems to randomly decide between
a) working like a champ
b) giving that error and not loading the page at all
c) giving some sort of error about offsetwidth being null or not an object and loading the page but not the text area
when i hit refresh all is fine.
Last edited by KingMoore (2005-06-08 16:54:04)
Offline
Hi KingMoore
I´m having the same problem I´m afraid.. But only on some laptops..
Do you have new information about this problem?
Ys
Michael
Offline
I had the same error message today on my W2k3 IE 6.0.3790.0 Swedish.
After an hour of debugging I found the error to be that I explicitly declared the <base href> in the Xinha-containing page header on HTML 4.01 Transitional in standards mode.
Oddly enough, that single line is magic in some ways, because even if I leave it out of my source, it seems to be added by Zope or some Zope product to the outgoing HTML for some clients (Opera, independant on "user agent" settings and w3c validator service, but not IE or Mozilla).
Offline
I ran into this same issue. Fortunately, hampus's message saved me a HUGE amount of debugging time.
However, I'd like to retain the base href if possible. Ticket #294 is open on this. Does anyone have any ideas why it is happenning? I'd be happy to help narrow it down but I'd love a head start.
-- Jim
Offline