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
Sherry DunnSherry Dunn 

The Static Resource 'vfimagetest' was not found

Hi,
This code is pretty straight forwad, but I got error from developer console, "Static Resource named vfimagetest doesn't exist, Check spelling. it was downloaded by default to Download folder when clicking on "This file" in the Challenge. Did I miss anything?

Thanks.

<apex:page >
    <apex:image value="{!URLFOR($Resource.vfimagetest, '/cats/kitten1.jpg')}" />
</apex:page>
Amit Chaudhary 8Amit Chaudhary 8
Please check below post
1) https://developer.salesforce.com/forums/?id=906F0000000B2DIIA0
 
<apex:image value="{!URLfor($Resource.vfimagetest, 'cats/kitten1.jpg')}"/>
<apex:page>

<apex:image url="{!URLFOR($Resource.vfimagetest, 'cats/kitten1.jpg')}" />

</apex:page>

go to the Appsetup> Develop>static resources and check if vfimagetest exists. From the error its not available in your org. Either name is differecnt or its missing.

Let us know if this will help you