Expand my Community achievements bar.

SOLVED

No Page Properties for AEM tutorial site and not able to create a page.

Avatar

Level 2

Trying my first AEM project. 
I can build my project, and I see the site is created. However, when I try to create a Content Page, I don't see any of the page properties, and the Create button is disabled. Does anyone know how to resolve this error? 

Links I am referring: 
https://github.com/adobe/aem-guides-wknd
https://experienceleague.adobe.com/en/docs/experience-manager-learn/getting-started-wknd-tutorial-de... 

1 Accepted Solution

Avatar

Correct answer by
Level 7

@picklepa 

Can you download package from below link and then install it directly using package manager and then try again

https://github.com/adobe/aem-guides-wknd/releases/download/aem-guides-wknd-3.2.0/aem-guides-wknd.all...

View solution in original post

13 Replies

Avatar

Level 7

hi @picklepa ,

Is it with specific template or with all template.

It can be template issue or that template might not be supposed to create a page

Thanks

Avatar

Level 2

I only have one site in my local instance, and only one template Content Page. I am facing the problem for the content page template

Avatar

Level 7

@picklepa 

Can you verify if you have templates deployed at path /conf/wknd/settings/wcm/templates

Enable the templates, if they are disabled

 

Avatar

Level 2

conf/wknd/settings/wcm/templates I can see the template here. I don't see a disable option here 

Avatar

Level 8

Are you using AEM 6.5.x or AEMaaCS SDK ? 

If you have cloned the wknd repo then
For cloud service SDK, you need to run -> 

mvn clean install -PautoInstallSinglePackage

and for 6.5.x you need to run -> 

mvn clean install -PautoInstallSinglePackage -Pclassic

 Alternatively just download the built package from here 
https://github.com/adobe/aem-guides-wknd/releases/tag/aem-guides-wknd-3.2.0 

Then you can continue on creating pages etc. 



Avatar

Level 2

I tried mvn commands but still not working. I am planning to do some custom component development so want to get a boilerplate code on my localhost 

Avatar

Level 8

If you just need the boilerplate code, AEM archetype would serve you better. Generate aem project using following mvn command (you can change the params as per your requirements. Details here : https://github.com/adobe/aem-project-archetype ) :

mvn -B org.apache.maven.plugins:maven-archetype-plugin:3.2.1:generate -D archetypeGroupId=com.adobe.aem -D archetypeArtifactId=aem-project-archetype -D archetypeVersion=49 -D appTitle="My Site" -D appId="mysite" -D groupId="com.mysite" -D aemVersion=6.5.8

Once this is generated, you can build this project using 

mvn clean install -PautoInstallSinglePackage

Once it is deployed. Then you can start creating pages and doing your custom development. If needed, you can still install the built wknd package on top of this from the link which I provided earlier.
Hope this helps. 

 

Avatar

Administrator

@picklepa Did you find the suggestion helpful? Please let us know if you require more information. Otherwise, please mark the answer as correct for posterity. If you've discovered a solution yourself, we would appreciate it if you could share it with the community. Thank you!



Kautuk Sahni

Avatar

Level 2

I am still having the same issue .. none of the suggestions are working. Is there another "hello world" project that I can use and try it out? 

Avatar

Correct answer by
Level 7

@picklepa 

Can you download package from below link and then install it directly using package manager and then try again

https://github.com/adobe/aem-guides-wknd/releases/download/aem-guides-wknd-3.2.0/aem-guides-wknd.all...