Home  >  Article  >  Computer Tutorials  >  Browser Cache Clearing Guide

Browser Cache Clearing Guide

王林
王林forward
2024-01-24 20:54:342041browse

Browser Cache Clearing Guide

How to clear browser cache

It is true that if the fast buffer storage area is blocked, it will slow down the browser and even cause it to stop completely. No one wants to get into trouble with this. We are even more so. So, let’s clear the browser’s cache now. Which browser are you using? The following are instructions for clearing the cache of various browsers:

Internet Explorer 6.x for Windows or Firefox 1.x for Mac

If the browser or version you are using is not in the list, you can view the method of clearing the fast cache through the browser's help menu.

Internet Explorer 6.x for Windows

Select the "Tools" menu, then select "Internet Options." This will open the Internet Options window. You need to go to the "General" tab, which is the first tab in the upper left corner of this window. If you are not already in this tab, select it. Look for the Temporary Internet Files header, and within this header section, click the "Delete Files" button. The "Delete File" window will appear on the screen. In this window, you can click "OK" directly. If you prefer, you can also check the "Delete all offline content" box first, and then click "OK." You may have to wait a little while you do this. After the "Delete Files" window closes, you will return to the "Internet Options" window. Look for the "History" heading and click the "Clear History" button in this section. The "Are you sure..." box then opens. Click "Yes". The box closes and you are returned to the Internet Options window. At the bottom of the Internet Options window, click the OK button. Close and reopen Internet Explorer.

Windows or Firefox 1.x for Mac

In Windows operating systems, you can open the Options menu by following these steps: Click Tools and then select Options. This will open the options window. In Mac OS, you can find Personal Settings by following these steps: In the Firefox menu (the first heading in the upper left corner of the window), select Preferences. This will open the preferences dialog. Click the privacy icon (the lock icon on the left). Click the Clear button to the right of the cache. At the bottom of the window, click the OK button. Finally, close and reopen Firefox for the changes to take effect.

How to clear browser cache

There are many methods

The easiest way is to right-click the IE icon-Properties-Temporary Internet Files-Delete File

Or in the tool options of a third-party browser (that is, a browser that does not come with the operating system), there is usually a clear browsing record. Then you can choose to clear IE temporary files, and then the browser will Auto clear

There are also many auxiliary software, such as 360 Security Guard, which also has a junk removal function. You can also use this function to clear system junk

Another method is to search for suffix names such as tmp, temp, and html in Start-Search, find junk files and delete them

Usually the web page cache will be placed in

System disk: In the subdirectory of \Documents and Settings\username (usually Administrator)\Local Settings\Temporary Internet Files\Content.IEX (referring to IE version)

You can manually open and delete the files inside in My Computer

You can also use batch files to automatically delete, just copy the following code into Notepad

@echo off

echo is clearing system junk files, please wait...

del /f /s /q %systemdrive%\*.tmp

del /f /s /q %systemdrive%\*._mp

del /f /s /q %systemdrive%\*.gid

del /f /s /q %systemdrive%\*.chk

del /f /s /q %systemdrive%\*.old

del /f /s /q %systemdrive%\recycled\*.*

del /f /s /q %windir%\*.bak

del /f /s /q %windir%\prefetch\*.*

rd /s /q %windir%\temp & md %windir%\temp

del /f /q %userprofile%\cookies\*.*

del /f /q %userprofile%\recent\*.*

del /f /s /q "%userprofile%\Local Settings\Temporary Internet Files\*.*""

del /f /s /q "%userprofile%\Local Settings\Temp\*.*""

del /f /s /q "%userprofile%\recent\*.*"

echo Clearing system junk is completed!

echo. & pause

Then name the file with the bat suffix, such as Clear Junk.bat, save it and it will be automatically deleted when you open it

Of course the best way is to rely on software to automatically clear it

If your game loading is 50% stuck, it may not be related to the browser cache. If it is still like this after clearing the system garbage, you should change the browser, and it is best to use a non-IE core such as Opera and Firefox. Use the browser to see if you can enter the game. If you can, it’s just a browser problem

If it still doesn’t work after changing the browser, there may be a problem with the game’s server on your side

The above is the detailed content of Browser Cache Clearing Guide. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:docexcel.net. If there is any infringement, please contact admin@php.cn delete