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
Tapas TuloTapas Tulo 

i am stuck with standard list controller(VisualForce Basic) trailhead challenge

Hi All,
i have perfect vf page in my de org,when i go for check challeng it throws an error AccountList(the vf page ) was not found.
 i have been faced the same in my another challenge too.
 help me out pls.

Thanks & Regards.
Tapas
Best Answer chosen by Tapas Tulo
SandhyaSandhya (Salesforce Developers) 
Hi,

The trailhead has been released with new updates as a part of it you see trailhead playgrounds.
Please refer below link for the line no 11 you will be able to do.

https://force.desk.com/customer/portal/articles/2643793-trailhead-profile-signup-login-faq?b_id=13478

If this does not solve your problem, please reach trailhead@salesforce.com

Thanks and Regards
Sandhya

All Answers

SandhyaSandhya (Salesforce Developers) 
Hi,

Please check if you have given same name AccountList as the Visualforce Page name.Please copy paste the name from the trailhead module.

Below is the code which worked for me.
 
<apex:page standardController="Account" recordSetVar="Accounts" >
    <apex:pageblock>
        <apex:repeat var="a" value="{!Accounts}" rendered="true"  id="account_list">
            <li>
                <apex:outputLink value="/{!a.ID}" >
                    <apex:outputText value="{!a.Name}"/>
                </apex:outputLink>
            </li>
        </apex:repeat>
    </apex:pageblock>
</apex:page>

If this does not solve your problem, I would suggest you do this challenge in new DE org.

Hope this helps you!

Please mark it as Best Answer if my reply was helpful. It will make it available for other as the proper solution.
 
Thanks and Regards
Sandhya





Tapas TuloTapas Tulo
Hi Sandhy,
 Thanks For Your responce .
  still i am having the issue.
You Can Cross Check by seeing the screenshotThe Error On TrailHeadHere My VF Page
i Hope i ll get the Answer ,Finger crossed  
SandhyaSandhya (Salesforce Developers) 
Hi,

I see that everything is perfect, but there are few things you need to check.

1.When you are checking the challenge are you launching the same developer edition where you have done this challenge?

Go to your trailhead --settings --  set the DE org you are using as default -- now check the challenge, and you will be able to pass the challenge.

Hope this helps you!

Please mark it as Best Answer if my reply was helpful. It will make it available for other as the proper solution.
 
Thanks and Regards
Sandhya






 
Tapas TuloTapas Tulo
hey 
Sandhya ,
 i am using DE edition .my trailhead org and DE org both are same .that  i have checked.
when i cliked on connect DE org it says that:-
You are attempting to log into Trailhead to complete challenges with an org that isn't supported. When you are completing Trailhead hands-on challenges, you cannot use a production or sandbox org. You must use a Developer Edition (DE) org to complete Trailhead challenges.
SandhyaSandhya (Salesforce Developers) 
Hi,

The trailhead has been released with new updates as a part of it you see trailhead playgrounds.
Please refer below link for the line no 11 you will be able to do.

https://force.desk.com/customer/portal/articles/2643793-trailhead-profile-signup-login-faq?b_id=13478

If this does not solve your problem, please reach trailhead@salesforce.com

Thanks and Regards
Sandhya
This was selected as the best answer
Amit Chaudhary 8Amit Chaudhary 8
Please try below step:-
1) Please delete your page and recreate.
2) Logout again and login again.