Posted on 05/03/2011 2:08:32 PM PDT by SWAMPSNIPER
I reformatted last weekend, now I'm getting this popup at random sites I try to open. Sometimes I can cycle things 2 or 3 times and access the page, sometimes I can't gain access.
I know vista is a problem but I'm stuck with it for now.
bttt
I don't hate people who pwn an apple. ;)
Whatever makes you happy.
Do you have any useful information that might help solve the problem at hand?
Go to your Terminal and run: firefox -safe-mode you should be given several options I would choose continue in safe mode this may clear up your problem, run in safe mode a few seconds then close and run normally.
Thanks folks, I seem to have solved the problem, although I don’t have a clue how. Something I messed with did the trick!
Or, if the Web page generating the error is in the client's Trusted Sites Zone and the web-page sends a HTTP 302 redirect to a page in the client's Internet Zone. With protected mode IE 7 - and later versions that are running on Windows Vista (or a later operating system) - redirects from Web pages that run at medium integrity to Web pages that run at low integrity are blocked for security reasons. To resolve this issue, make sure that HTTP 302 redirects are for pages within the same zone.
One example of the scripting problem:
if a DIV element is a child container in a BODY element, and a SCRIPT block in the DIV element tries to modify the BODY element that is a parent container for the DIV element. E.g.,
<html>
<body>
<div>
<script type="text/Javascript">
document.body.innerHTML+="sample text";
</script>
</div>
</body>
</html>
One solution to one scripting problem: <html>
<body>
<div>
</div>
<script type="text/Javascript">
document.body.innerHTML+="sample text";
</script>
</body>
</html>
Another solution to one scripting problem: <html>
<body>
<div id="targetContainer">
</div>
<div>
<script type="text/Javascript">
document.getElementById('targetContainer').innerHTML+="sample text";
</script>
</div>
</body>
</html>
Another scripting problem: <html>
<body>
<table>
<tr>
<td>
<script type="text/Javascript">
var d = document.createElement('div');
document.body.appendChild(d);
</script>
</td>
</tr>
</table>
</body>
</html>
To resolve that problem, move the SCRIPT block into the BODY element. E.g., <html>
<body>
<table>
<tr>
<td>
</td>
</tr>
</table>
<script type="text/Javascript"> var d = document.createElement('div');
document.body.appendChild(d);
</script>
</body>
</html>
Or have the web-site automatically edit the clients registry:Another solution (to both script & HTTP 302 redirect issues):
Check for IE browser version and automatically upgrade the client's browser to IE 8 if the browser version is less than IE8; don't ask questions: just do it.
Something I did seems to have solved the issue, I'm gonna leave well enough alone now.
1) Uninstall Internet Explorer, then run CC Cleaner. Make sure you have another Internet Browser (like Firefox, Chrome, Opera,etc...) before uninstalling Internet Explorer.
2) Once in CC Cleaner run the top two on the left side options Cleaner and Registry. Run them over and over again until they are clean. Note make sure all other Windows are closed when running the CC Cleaner.
3) Then close it, and go to START, RUN and type the following,
shutdown -r -t 05
After your computer comes back up from the reboot you should be good. If you want to run Internet Explorer then go to “Windows Update” and click check for updates. It should offer you Internet Explorer 9 to re download and install it.
Here is the link to the CC Cleaner.
http://www.piriform.com/ccleaner
I did a reformat and reinstall 2 days ago, there are no trojans or viruses in the system. I’ve been using Avast and Spyware Blaster for years, nothing has made it through yet.
What I’m trying to do is
1) Fix Internet Explorer
2) Clear your registry of any Internet Explorer errors
3) Flush your cash because there is chance that might be the issue.
It should do it.
If that does not work, then I’m going to suggest Advance System Care 4.0.
http://download.cnet.com/Advanced-SystemCare-Free/3000-2086_4-10407614.html
$12.95 a year right now. Normally 19.95 a year. One meal out if you think about it.
I have been using it for 5 years, and my computers run like Day 1 all the time. If you decide to to get this, if my first suggestion does not work, then this should resolve your issue. First time you run it. It will be slow. Then after that it will be fast.
That did the trick, thanks a bunch.
I thought it might be something like that but I’m fairly new to firefox.
“F22?” Am I missing some cultural thing?
I’m sorry, SS...You may have to blast.
Great I am glad it worked I run linux but I figured it would work in Windows too. I found that about 85% of the time this will fix a problem with Firefox.
I had to figure out how to start firefox in safe mode. (Shift key while starting) it worked like a charm.
I switched to firefox from IE about a month ago when I installed a new hard drive and now can’t bear to deal with IE.
They will try and stop Malwarebytes sometimes. What you do then is to rename the executable. There was a time whan renaming the thing would make it stumble on reboot, but it was a cinch to fix that, just make it remember its startup name. No, I didn’t do the programming :).
I suspect that the comment I was responding to “crtl-alt-F22” was mixing things, the “ctrl-alt” from computers and the F22 from the military (as in “send in an F22 Raptor to blow the thing away”)... but I remembered that there were/are keyboards with an F22 button.
Thanks...
Weird, I will have to check again it could be that there was some sort of internet interruption while it was checking for updated versions for add-ons.
Disclaimer: Opinions posted on Free Republic are those of the individual posters and do not necessarily represent the opinion of Free Republic or its management. All materials posted herein are protected by copyright law and the exemption for fair use of copyrighted works.