function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Stephanie_ArceStephanie_Arce 

Visualforce tab doesn't always redirect correctly

We have a Visualforce tab that users go to and occassionally get "stuck" on at a URL similar to this:

https://cs67.salesforce.com/servlet/servlet.Integration?lid=01r0n000000D6k3&ic=1&linkToken=VmpFPSxNakF4T0Mwd09DMHhNMVF5TURveE5Eb3pNUzR5TnpsYSx3YmJfXzV3ZnVOREVtdXlTcm9ldWFwLFlXWmtNR0po

The Visualforce page ends up not loading. Normally, they'll see this URL for just a second and then get directed to the Visualforce page, for example: https://c.cs67.visual.force.com/apex/sa_testredirect?sfdc.tabName=01r0n000000D6k3

Does anyone know what could cause this? It does not happen consistently, however I have only seen it in Chrome. The Visualforce page also ends up loading correctly if the user refreshes the page. I also haven't tested this with every Visualforce tab we have, but I suspect it's a general issue. I've been able to replicate it both with custom Visualforce pages we've developed and others from managed packages.

Thanks!
ProlayProlay
It seems to be not the general issue. Please check the code of your custom Visualforce Page. Some HTML elements or JavaScript scripts are causing the problem with Chrome Browser. I would suggest testing your Visualforce page with every browser.
Stephanie_ArceStephanie_Arce
Thanks for the response Prolay. I just created a very simple Visualforce page for troubleshooting - just some text - and I still have this issue occassionally, and it only seems to happen in Chrome. Here is the Visualforce page:
 
<apex:page >
    page text
</apex:page>

Do you know what could cause that?