i have started to create custom section based on "www.geckonewmedia.com/.../how-to-create-a-custom-section-in-umbraco-4" article. but the custom section is not appearing for me. i have cleared the cache
and tried but still its not coming. I also noticed that there are some
more entries other than default sections in “umbracoApp” and
“[umbracoAppTree]” table, those are also not appeared. Please help me
to get this working for me.. Thanks.
I ran the below query to insert into UmbracoApp & umbracoAppTree table
INSERT INTO [umbracoApp]([sortOrder],[appAlias],[appIcon],[appName]) VALUES (9,‘custom’,‘custom.gif’,‘custom’)
INSERT INTO [umbracoAppTree]([treeSilent],[treeInitialize],[treeSortOrder],[appAlias],[treeAlias],[treeTitle],[treeIconClosed],[treeIconOpen],[treeHandlerAssembly],[treeHandlerType]) VALUES(0,1,0,‘custom’,‘custom’,‘custom’,‘.sprTreeFolder’,‘.sprTreeFolder_o’,‘CustomUmbracoSection’,‘Trees.LoadCustomTree’)
You probably didn't add the section to your user. You should allow your user to see the section, just like the default umbraco ones need permission. Or your image isn't displaying. Try is with a standard icon :)
Yes, Its working now. The problem is with the section user mapping. Its got working after i inserted the entry for my userid in umbracoUser2app table. Thank you so much for all ur support.
Problem in creating custom section.
i have started to create custom section based on "www.geckonewmedia.com/.../how-to-create-a-custom-section-in-umbraco-4" article. but the custom section is not appearing for me. i have cleared the cache and tried but still its not coming. I also noticed that there are some more entries other than default sections in “umbracoApp” and “[umbracoAppTree]” table, those are also not appeared. Please help me to get this working for me.. Thanks.
What did you add to the umbracoApp-table?
Hi Thanks for the reply,
I ran the below query to insert into UmbracoApp & umbracoAppTree table
INSERT INTO [umbracoApp]([sortOrder],[appAlias],[appIcon],[appName])
VALUES (9,‘custom’,‘custom.gif’,‘custom’)
INSERT INTO [umbracoAppTree]([treeSilent],[treeInitialize],[treeSortOrder],[appAlias],[treeAlias],[treeTitle],[treeIconClosed],[treeIconOpen],[treeHandlerAssembly],[treeHandlerType]) VALUES(0,1,0,‘custom’,‘custom’,‘custom’,‘.sprTreeFolder’,‘.sprTreeFolder_o’,‘CustomUmbracoSection’,‘Trees.LoadCustomTree’)
You probably didn't add the section to your user. You should allow your user to see the section, just like the default umbraco ones need permission. Or your image isn't displaying. Try is with a standard icon :)
Hi,
Thanks for your reply, I have used the below query to map the section with user
INSERT INTO [umbracoUser2app]([user],[app])VALUES(0,'custom').
i also checked with the image and tried with standard icon. still its not working..
restarted IIS? Logout/login?
Yes, I did all. but nothing is working.. Is there any other table to control these sections?
Yes, Its working now. The problem is with the section user mapping. Its got working after i inserted the entry for my userid in umbracoUser2app table. Thank you so much for all ur support.
is working on a reply...