Okay... so I've created the admin section of our site and it now checks the
users authentication and their user groups. I want users to be able to
create content using a simple dropdown on the admin site (and not the
Webtop) that allows them to create any content that they have the
permissions for.
 
I've then set up a page called createContent.cfm that takes a content type
ID and will start the PLP for that content type. However, it's not working.
What am I missing?
 
My edit method calls a PLP, so I assumed that the PLP would then take over
until the PLP completes. Can anybody explain how to make this work?
 
Here's the code on the createContent.cfm page.
 
-----
 
<CFIF ISDEFINED("form.submitTypeID")>
    <CFSET theID = CREATEUUID()>
    <CFA_contentObjectCreate
        DATASOURCE="#request.cfa.objectstore.dsn#"
        OBJECTID="#theID#"
        TYPEID="#form.submitTypeID#"
        METHOD="edit"
        >
</CFIF>

-
Nate Smith, 
Lead Developer 
[EMAIL PROTECTED] 
www.doceus.com 

 


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to