Page 1 of 1

Uploads: "Error: Category not found!"

Posted: Fri Nov 07, 2008 1:13 am
by JaymeNYC
I'm not sure how to fix this! It seemed to be working before I'm not sure whats going on. I've tried both of these:

Code: Select all

{ if $ccuser->loggedin() }
	{cms_module module="Uploads" category="downloads" mode="summary" sortorder="date_desc" detailtemplate="default"}
{else}
	<p>This is a private area.</p>
	{cms_module module=FrontEndUsers form="login" nocaptcha="1" returnto="$page_alias"}
{/if}

Code: Select all

{cms_module module=FrontEndUsers form="login" nocaptcha="1" returnto="$page_alias"}
{ if $ccuser->loggedin() }
	{cms_module module="Uploads" category="Downloads" mode="summary" sortorder="date_desc" detailtemplate="default"}
{else}
	<p>This is a private area.</p>
{/if}
Is 1 of these better than the other??

I'm trying to display files that can be downloaded for registered users. 

Here is a picture of the Uploads Category section
Image

Whats going on?

Re: Uploads: "Error: Category not found!"

Posted: Fri Nov 07, 2008 2:48 am
by jmcgin51
try capitalizing the category name in your module call.  It's capitalized in the Admin section.

Re: Uploads: "Error: Category not found!"

Posted: Sun Nov 09, 2008 5:51 am
by JaymeNYC
jmcgin51 wrote: try capitalizing the category name in your module call.  It's capitalized in the Admin section.
Tried that and it didnt work.. even tried renaming the category section from "Downloads" to "downloads" and even that doesnt work.. is there anything else I can do ??