I have "InfoCaster.Umbraco.DateFolders.dll" in my "bin" folder.
"DateFolders" (version 1.4) shows under "Installed packages" in Umbraco admin
I have put added the following to my Web.config <add key="datefolders:ItemDocType" value="NewsItem" /> <add key="datefolders:DateFolderDocType" value="DateFolder" /> <add key="datefolders:CreateDayFolders" value="false" />
I have created document types with aliases "NewsItem" and "DateFolder"
But I'm creating documents of type "NewsItem" and publishing them and nothing happens - they just publish like normal.
I saw that but wasn't sure how to include it. Turns out I was able to just dump it in the "App_Code" directory (although I had to add a reference to make it recognise "Node" ) and then compile and voila.
So I debugged and got it to work. It seems my Web.config wasn't saving properly. Once I got it to be reading the correct values from my Web.config it all worked.
Nothing happens...
I think I've installed DateFolders correctly.
<add key="datefolders:ItemDocType" value="NewsItem" />
<add key="datefolders:DateFolderDocType" value="DateFolder" />
<add key="datefolders:CreateDayFolders" value="false" />
Seems like you haven't missed anything, what umbraco version are you using?
Version 4.7.2.
Is there any way to debug it at all?
Sure, the source code is available on the project's page...
I saw that but wasn't sure how to include it. Turns out I was able to just dump it in the "App_Code" directory (although I had to add a reference to make it recognise "Node" ) and then compile and voila.
So I debugged and got it to work. It seems my Web.config wasn't saving properly. Once I got it to be reading the correct values from my Web.config it all worked.
Thanks all :)
is working on a reply...