The last few days when I invoke the program it freezes as soon as I try to edit a file. I'm using the latest version of Firefox and Windows 7. I haven't changed/added/deleted any programs recently, however I noticed that I had three consecutive nights of Windows Updates.
Did you try reinstalling the HTML editor?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
Hiya Dave,
Did you recently add any script code to the page you are trying to load in the program or is this happening before you have any pages open at all?
If nothing is open at all, then try setting the shortcut to Run as Admin.
To change the compatibility to Run as Administrator do the following:
1. Right click the shortcut on your desktop for the HTML Editor.
2. Choose Properties from the menu.
3. Choose the Compatibility tab on the window that opens.
4. Put a check in the check box at the bottom for Run as Administrator.
5. Click OK and try starting the program again and see if that helps.
Let us know
Did you recently add any script code to the page you are trying to load in the program or is this happening before you have any pages open at all?
If nothing is open at all, then try setting the shortcut to Run as Admin.
To change the compatibility to Run as Administrator do the following:
1. Right click the shortcut on your desktop for the HTML Editor.
2. Choose Properties from the menu.
3. Choose the Compatibility tab on the window that opens.
4. Put a check in the check box at the bottom for Run as Administrator.
5. Click OK and try starting the program again and see if that helps.
Let us know

I'm still having the problem. The file I'm trying to open is at http://genealogyinstlouis.accessgenealo … tL2013.htm
It is also giving me the following error messages
Access violation at address 005AB544 in module of address 4C4C956 (lot of different Hex values)
Access violation at address 005AB544 in module of address 4C4C956 (lot of different Hex values)
Have you tried what we suggested above?
Hi Dave,
It's gotta be something on your page. I can't even get it to load at WC3. http://validator.w3.org/
I also can't load the source code. Do you have some kind of script on there?
It's gotta be something on your page. I can't even get it to load at WC3. http://validator.w3.org/
I also can't load the source code. Do you have some kind of script on there?
I can't hear what I'm looking at.
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
It's easy to overlook something you're not looking for.
This is a site I built for my work.(RSD)
http://esmansgreenhouse.com
This is a site I built for use in my job.(HTML Editor)
https://pestlogbook.com
This is my personal site used for testing and as an easy way to share photos.(RLM imported to RSD)
https://ericrohloff.com
The page opens just fine for me – maybe 'cause I'm in St. Louis 
But clicking on 'view source' crashed the browser (Firefox).
A bit of digging in Firebug turned up this:
Firebug says there is no JS on the page.
This is the first time I've come across a page whos source code can't be viewed. Chrome has been trying to open it for a good 4 minutes now

But clicking on 'view source' crashed the browser (Firefox).
A bit of digging in Firebug turned up this:
There are 62900 DOM elements on the page
A high number of DOM elements can be a symptom that there's something that should be improved with the markup of the page without necessarily removing content. Are you using nested tables for layout purposes? Are you throwing in more <div>s only to fix layout issues? Maybe there's a better and more semantically correct way to do your markup.
Firebug says there is no JS on the page.
This is the first time I've come across a page whos source code can't be viewed. Chrome has been trying to open it for a good 4 minutes now

I love deadlines. I like the whooshing sound they make as they fly by. (Douglas Adams)
https://www.callendales.com
https://www.callendales.com
I got it opened in Ffx eventually, also the source code. The file has over 125000 lines of code and contents!!! No wonder why it makes any programme freeze!
I would suggest that the long list of names is split up in sections, like A - B on one page, C - D on another etc, and then you can link the pages to the opening page.
You could also look into removing old, deprecated presentational html code and make a css file that you link to the html pages. A lot of coding could then be removed.
I would suggest that the long list of names is split up in sections, like A - B on one page, C - D on another etc, and then you can link the pages to the opening page.
You could also look into removing old, deprecated presentational html code and make a css file that you link to the html pages. A lot of coding could then be removed.
Ha en riktig god dag!
Inger, Norway
My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com
Inger, Norway
My work in progress:
Components for Site Designer and the HTML Editor: https://mock-up.coffeecup.com
The file consists of about 130,000 lines, where each of the 60,000+ names is contained in a <p> tag.
The only browser that would give me a source listing is IE10, and even that one gives up after 46,000 lines of code.
The W3C validator shows 62,797 errors. One error each for the 60,000+ names (it doesn't agree with the <p> tag, at least not with the doctype HTML 4.0) plus a few other errors...
In case you are trying to edit the file on-line, I'd suggest you download it instead and work with it locally.
The code, and declared doctype, is very old. I would suggest you upgrade it to current standards. This should be quite easy, since there is very little code on the page before the huge list. The code should start out with these lines:
<!DOCTYPE html>
<html>
<head>
<title>......</title>
You will need to define all styling like fonts, colors, centering, etc. in CSS. Again, this should be easy for you since there is very little of it.
As for the long list of names, there may be different options:
- If you want to keep the current structure of the page, I guess you could remove all the <p> tags and just separate the names with line breaks, <br>. I suspect the browsers, AND the HTML Editor, would find this easier to deal with.
- Or, you could present the names in separate alphabetical chunks, either in separate html pages or in linked pdf files.
EDIT: You beat me to it, Inger!
The only browser that would give me a source listing is IE10, and even that one gives up after 46,000 lines of code.
The W3C validator shows 62,797 errors. One error each for the 60,000+ names (it doesn't agree with the <p> tag, at least not with the doctype HTML 4.0) plus a few other errors...
In case you are trying to edit the file on-line, I'd suggest you download it instead and work with it locally.
The code, and declared doctype, is very old. I would suggest you upgrade it to current standards. This should be quite easy, since there is very little code on the page before the huge list. The code should start out with these lines:
<!DOCTYPE html>
<html>
<head>
<title>......</title>
You will need to define all styling like fonts, colors, centering, etc. in CSS. Again, this should be easy for you since there is very little of it.
As for the long list of names, there may be different options:
- If you want to keep the current structure of the page, I guess you could remove all the <p> tags and just separate the names with line breaks, <br>. I suspect the browsers, AND the HTML Editor, would find this easier to deal with.
- Or, you could present the names in separate alphabetical chunks, either in separate html pages or in linked pdf files.
EDIT: You beat me to it, Inger!

Per
www.mingas.com
www.mingas.com
Have something to add? We’d love to hear it!
You must have an account to participate. Please Sign In Here, then join the conversation.