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
Sourabh KhoslaSourabh Khosla 

Standard Button Override using VF page - time out issues

Hi Folks, 

I am trying to override the New Button from the Recent Views section of the Custom object. I guess you know why, because I cannot take it out and I don't want users to use this button to create new records for the Custom Object directly. So, they still need the access so that they can get this custom object record created but it needs to come thru an Account object and not directly thru the Custom object itself. 


Anyways, long story short... so I created this VF page and associated it to the button but it keeps on timing out.... not sure why... I am just displaying a single H1 tag thats all... no fetching, no querying... can anyone of you please assist? 
 
<apex:page docType="html-5.0" showHeader="false" standardStylesheets="false" standardController="Custom__c" >
    
    <h1>
         Sample error message
    </h1>
</apex:page>



It is really really really simple but I do not understand why would I be getting time out error on such a simple tag. 

Thanks in advance.