force new process

  • Thread starter Thread starter Johannes Müller
  • Start date Start date
J

Johannes Müller

I'm trying to get different php-Sessions for different ie-windows created
with CreateObject("InternetExplorer.Application").
I found out, that there is always only one ie-process for the windows,
so there is only one php-session, too.
So, is there a possibility to start each ie-window in a new process?

TIA, Jo
 
You'll have to call on IE to execute a new process by activating
iexplore.exe.

Cases where a new instance of IE is started is used:

1. User starts a new window of IE using the Start menu
(Start|Programs|Internet Explorer)
2. User clicks the IE desktop icon

Cases where a new window is created using a shared instance:

1. User clicks CTRL-N User chooses File|New|Window in the browser menu
2. User clicks a “external” link in a Web page
3. User accesses a Web site that automatically opens multiple windows

You can check out the above, and take a look at Task Manager.

More info on how IE invokes a new process automatically now - since IE 5.01:
http://support.microsoft.com/default.aspx?scid=kb;en-us;240928
 
Back
Top