Sometimes you need to log on to multiple accounts on the same machine to play web games, but the server uses cookies to save your session information, under normal circumstances, you can only log on to one account on the same server using the same browser.
There are two ways to achieve the goal:
1)
Use several different browsers (such as Firefox, ie, Mozilla,...), so that cookies between different browsers do not interfere with each other.
2)
Create multiple profiles for Firefox to run firefox based on different profiles, so that the cookies used by Firefox processes do not interfere with each other.
To create different profiles, follow these steps:
1)
If Firefox is running, disable it first.
2) In Windows, enter "Firefox-P" in "start-> Run", and then press OK.
3)
Use the pop-up Firefox profile management to create a new profile. Assume that the name is "ff1"
4)
Create a BAT file named "ff1.bat", which contains the following script.
Set pai_no_remote = 1
Start "% ProgramFiles %/Mozilla Firefox/firefox.exe"-P ff1
5) To Run ff1.bat, Firefox will run based on the profile named "ff1.
6)
Repeat the preceding steps to create multiple profiles.