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
AVINASH UPADHYAAVINASH UPADHYA 

Public Page acess!

Hello All,
Can any one please tell me what are the permissions are required to allow a VF Page/App to give a public acess as in the bellow URL
http://demopoint-developer-edition.ap1.force.com/apex/wrapperAccountSelect

It looks like we need to use Site.com.. If yes please give some suggetions on what are the setups required for this?

Thanks in advance!
Avinash
KaranrajKaranraj
Avinash,

 Create a Force.com site using the following steps:
1. From Setup, click Develop > Sites.
2. Click New to create new public site
3. Click save.

You can able to provide necessary access in the Public access seetings.
Public access settings control what public users can do on each Force.com site. To set the public access settings for your site:
1. From Setup, click Develop > Sites.
2. Click the name of the site you want to control.
3. Click Public Access Settings to open the Profile page for your site profile.

This page includes all the functionality for viewing and editing profile permissions and settings. For more details check this implementation guide - https://help.salesforce.com/help/pdfs/en/salesforce_platform_portal_implementation_guide.pdf
AVINASH UPADHYAAVINASH UPADHYA
Thank you Karanraj for the wonderful answer. Let me check this sit.com documentation which you shared. But one small question, I have a simple apage HelloWorld as bellow
<apex:page standardController="Account">
    <apex:pageBlock title="Hello {!$User.FirstName}">
    <p> You are viewing the {!account.name} </p>
        <b> Hello {!$User.FirstName} </b>
        </apex:pageBlock>
        <apex:detail />
        <apex:detail subject="{!account.ownerId}" relatedList="false" title="false"/>
        
</apex:page>

i Just want to enable this page for my site. but when i give the Https://Sit URL/HelloWorld its throwing me a Authorization Required error, though i have listed HelloWorld page under "Enabled Visualforce Page Access". 

I might find answer to this in the Documentation, but i am just curious before that itself.   
KaranrajKaranraj
In the visualforce page you are accessing Account object informations. So you have to enable public access for the 'Account' object also under
1. From Setup, click Develop > Sites.
2. Click the name of the site you want to control.
3. Click Public Access Settings to open the Profile page for your site profile.