NetTalk Central

Author Topic: Problem with IE  (Read 3443 times)

sylvain

  • Newbie
  • *
  • Posts: 13
    • View Profile
    • Email
Problem with IE
« on: August 23, 2009, 03:57:47 PM »
Strange problem,
change the path of the files to be determined in the web handle procedure.
Now, wit IE, nothing works (I'm stuck at the login page that make a loop)
With other browser (opera, google chrome, firefox) all works fine.

The only modification I've made was to make the file path relative, as explain in this forum (I've also modified the class definition to be p_web in the extension to be able to get the relative path like this : file17=clip(p_web.gsv('repertoire'))&'gps.tps' )

Any idea ?

Bruce

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 11250
    • View Profile
Re: Problem with IE
« Reply #1 on: August 23, 2009, 09:31:54 PM »
are you sure it's the file name that's causing the problem?
what is the file name set to by the time you get to the login procedure?

Cheers
Bruce

sylvain

  • Newbie
  • *
  • Posts: 13
    • View Profile
    • Email
Re: Problem with IE
« Reply #2 on: August 24, 2009, 03:42:12 AM »
Hi,
I'm not sure it's the file name that cause the problem, but, before changing that, all was working fine.
The files for login (3 files, Users Groups and Levels) are set when the webserver is launch (in my webserver procedure, before the open files in the init procedure). They are reset in the webhandler in the processlink before parent call (they remain identical but the other files are set to the correct path according to the user).
In IE, I go to the login page and when I press the login button, there's a long time before I can see login OK (one of my page). When I click on the link that is supposed to bring me on the account page (another page of my website where the user must be logged) I'm sent back to the login page.
With the other browser, nothing like that, all works fine.

Sylvain

sylvain

  • Newbie
  • *
  • Posts: 13
    • View Profile
    • Email
Solved :Re: Problem with IE
« Reply #3 on: August 25, 2009, 05:03:28 AM »
Hi,
finaly solve the problem. Nothing to do with relative path but wit IE security restriction.
When I've made the webserver, all is local (127.0.0.1) during my developpement phase. When I publish, my nettalk part remain on my server and the static part goes on a provider server. In the static page, I have to specifies the IP address for the nettalk server (for searching in a database for example). All works fine if I access via the provider server (via the internet world). But, I was making some more test this week (on the local server) and I've just forgot to reset the address in the static page to be local ---> problem with IE that cut all the cookies but not with the other browsers.
Hope that can help others to avoid loosing time
Sylvain