We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 16633
    • 116 Posts
    I Have a large form that using formit, formit2resource and formit2file. It stores all of the details in a resource and uploads files as well. Now it typically works but sometimes redirects to the homepage, which is a problem. There are no errors being thrown which throws a large kink into things as well.

    Here is my formit code
    [[!FormIt?
        &hooks=`spam,formit2file,formit2resource,email,FormItAutoResponder,redirect`
        &preHooks=`resource2formit`
    
        &path = `assets/uploads/`
        &extensions = `jpg,JPG,jpeg,JPEG,doc,docx,pdf,txt,png,zip,mov,avi,mpeg,mp4`
        &maxsize = `31457280`
        &published=`1`
        &template=`2`
    
        &emailTpl=`nominateEmailTpl`
        &emailTo=`[email protected]`
        &emailSubject=`Emerald Awards Nomination`
        &emailFrom=`[email protected]`
    
        &fiarTpl=`nominateEmailTpl`
        &fiarSubject=`Your Emerald Awards Nomination`
        &fiarToField=`nominator_email`
        &fiarFrom=`[email protected]`
    
        &resource2formitfields=`parent,pagetitle,nominee,project,nominee_type,
        nominee_title,nominee_contact,nominee_position,nominee_department,nominee_organization,nominee_address_type,nominee_address,nominee_city,nominee_province,
        nominee_postalcode,nominee_phone,nominee_fax,nominee_email,nominee_website,
        nominator_same,nominator_title,nominator_contact,nominator_position,nominator_department,nominator_organization,nominator_address_type,nominator_address,nominator_city,nominator_province,
        nominator_postalcode,nominator_phone,nominator_fax,nominator_email,nominee_category,
        
        nomination_summary,nomination_environmental,nomination_commitment,nomination_sharing,nomination_innovation,nomination_sharedfootprints,nomination_worthy,
        nomination_file,nomination_file2,nomination_file3,nomination_weblink,    
        
        condition_1,condition_2,condition_3,condition_4,condition_name,condition_phone,condition_email,
        emerald_hearabout,emerald_other`
    
        &pagetitle=`nominee`
    
        &redirectTo=`80`
    ]]
    
    <p>Please carefully read through the <a href="assets/PDF/2012 Instructions_for_Completing_an_Emerald_Award_Nomination.pdf" target="_blank">Instructions for Completing an Emerald Award Nomination</a> before filling out the nomination form.</p>
    <p class="error"><strong>Please note: this form cannot be saved, so please prepare your answers on a word document prior to nominating and then simply "cut and paste" your answers into the appropriate fields on this form.</strong></p>
    <p class="error">Once you hit the submit button, the system will review your nomination form and accept it.  Once it is accepted, you will be taken to a new screen with a completion message, and you will also receive an email confirmation.  If this does not happen, that means there is a problem with your nomination (perhaps you missed checking off a box or entered information incorrectly?).  Please review the form to identify the problem, correct the problem and hit submit again.  Thank you for taking the time to nominate an environmental leader!</p>
    <p class="error">If you have any problems or questions, please <a href="mailto:[email protected]">contact us</a>.</p>
    <p>Nomination forms must be submitted by 4pm on Friday, February 24, 2012</p>
    <p>[[+fi.error.error_message]]</p>
    
    <form action="[[~[[*id]]]]" method="post" enctype="multipart/form-data">
        <input name="nospam:blank" type="hidden" />
        <input name="resource_id" type="hidden" value="[[+fi.id]]" />
        <input name="parent:required" type="hidden" value="43" />
        <input name="pagetitle:required" type="hidden" value="Nominee" />
    
        <h2>Nominee Name and Project</h2>
        <div class="row clearfix">
            <div class="label">Nominee <br /><span class="error">[[+fi.error.nominee]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee" name="nominee:required" type="text" value="[[+fi.nominee]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Project <br /><span class="error">[[+fi.error.project]]</span></div> <!-- end of .label -->
            <div class="input"><input id="project" name="project:required" type="text" value="[[+fi.project]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Nominee Type <br /><span class="error">[[+fi.error.nominee_type]]</span></div> <!-- end of .label -->
            <div class="input">
                <input type="hidden" name="nominee_type:required" value="" />
    
                <input id="nominee_type" type="radio" name="nominee_type:required" value="individual" [[+fi.nominee_type:is=`individual`:then=`checked="checked"`]] /> individual
                <input id="nominee_type" type="radio" name="nominee_type:required" value="organization" [[+fi.nominee_type:is=`organization`:then=`checked="checked"`]] /> organization
            </div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
    
    
        <p> </p>
        <h2>Nominee Contact Information</h2>
    
        <div class="row clearfix">
            <div class="label">Title <br /><span class="error">[[+fi.error.nominee_title]]</span></div> <!-- end of .label -->
            <div class="input">
                <input type="hidden" name="nominee_title:required" value="" />
    
                <input id="nominee_title_mr" type="radio" name="nominee_title:required" value="mr" [[+fi.nominee_title:is=`mr`:then=`checked="checked"`]] /> Mr.
                <input id="nominee_title_mrs" type="radio" name="nominee_title:required" value="mrs" [[+fi.nominee_title:is=`mrs`:then=`checked="checked"`]] /> Mrs.
                <input id="nominee_title_ms" type="radio" name="nominee_title:required" value="ms" [[+fi.nominee_title:is=`ms`:then=`checked="checked"`]] /> Ms.
                <input id="nominee_title_dr" type="radio" name="nominee_title:required" value="dr" [[+fi.nominee_title:is=`dr`:then=`checked="checked"`]] /> Dr.
                <input id="nominee_title_other" type="radio" name="nominee_title:required" value="other" [[+fi.nominee_title:is=`other`:then=`checked="checked"`]] /> Other
            </div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Nominee Contact Name <br /><span class="error">[[+fi.error.nominee_contact]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_contact" name="nominee_contact:required" type="text" value="[[+fi.nominee_contact]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Position <br /><span class="error">[[+fi.error.nominee_position]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_position" name="nominee_position:required" type="text" value="[[+fi.nominee_position]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Department <br /><span class="error">[[+fi.error.nominee_department]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_department" name="nominee_department:required" type="text" value="[[+fi.nominee_department]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Organization <br /><span class="error">[[+fi.error.nominee_organization]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_organization" name="nominee_organization:required" type="text" value="[[+fi.nominee_organization]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Address</div> <!-- end of .label -->
            <div class="input">
                <input type="hidden" name="nominee_address_type:required" value="" />
    
                <input id="nominee_address_type_personal" type="radio" name="nominee_address_type:required" value="personal" [[+fi.nominee_address_type:is=`personal`:then=`checked="checked"`]] /> personal
                <input id="nominee_address_type_business" type="radio" name="nominee_address_type:required" value="business" [[+fi.nominee_address_type:is=`business`:then=`checked="checked"`]] /> business
                <br /><span class="error">[[+fi.error.nominee_address_type]]<br /></span>
    
                <input id="nominee_address" type="text" name="nominee_address:required" value="[[+fi.nominee_address]]" />
                <br /><span class="error">[[+fi.error.nominee_address]]</span>
            </div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">City <br /><span class="error">[[+fi.error.nominee_city]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_city" name="nominee_city:required" type="text" value="[[+fi.nominee_city]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Province <br /><span class="error">[[+fi.error.nominee_province]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_province" name="nominee_province:required" type="text" value="[[+fi.nominee_province]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Postal Code <br /><span class="error">[[+fi.error.nominee_postalcode]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_postalcode" name="nominee_postalcode:required" type="text" value="[[+fi.nominee_postalcode]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Telephone <br /><span class="error">[[+fi.error.nominee_phone]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_phone" name="nominee_phone:required" type="text" value="[[+fi.nominee_phone]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Fax <br /><span class="error">[[+fi.error.nominee_fax]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_fax" name="nominee_fax:required" type="text" value="[[+fi.nominee_fax]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Email <br /><span class="error">[[+fi.error.nominee_email]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_email" name="nominee_email:required:email" type="text" value="[[+fi.nominee_email]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Website <br /><span class="error">[[+fi.error.nominee_website]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominee_website" name="nominee_website:required" type="text" value="[[+fi.nominee_website]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
    
        <p> </p>
        <h2>Nominator Contact Information</h2>
        <div class="row clearfix">
            <div class="label">Same as Nominee?</div>  <!-- end of .label -->
            <div class="input"><input id="nominator_same" type="checkbox" name="nominator_same" value="same_as_nominee" [[!+fi.nominator_same:FormItIsChecked=`same_as_nominee`]] /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Title <br /><span class="error">[[+fi.error.nominator_title]]</span></div> <!-- end of .label -->
            <div class="input">
                <input type="hidden" name="nominator_title:required" value="" />
    
                <input id="nominator_title_mr" type="radio" name="nominator_title:required" value="mr" [[+fi.nominator_title:is=`mr`:then=`checked="checked"`]] /> Mr.
                <input id="nominator_title_mrs" type="radio" name="nominator_title:required" value="mrs" [[+fi.nominator_title:is=`mrs`:then=`checked="checked"`]] /> Mrs.
                <input id="nominator_title_ms" type="radio" name="nominator_title:required" value="ms" [[+fi.nominator_title:is=`ms`:then=`checked="checked"`]] /> Ms.
                <input id="nominator_title_dr" type="radio" name="nominator_title:required" value="dr" [[+fi.nominator_title:is=`dr`:then=`checked="checked"`]] /> Dr.
                <input id="nominator_title_other" type="radio" name="nominator_title:required" value="other" [[+fi.nominator_title:is=`other`:then=`checked="checked"`]] /> Other
            </div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Nominator Contact Name <br /><span class="error">[[+fi.error.nominator_contact]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_contact" name="nominator_contact:required" type="text" value="[[+fi.nominator_contact]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Position <br /><span class="error">[[+fi.error.nominator_position]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_position" name="nominator_position:required" type="text" value="[[+fi.nominator_position]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Department <br /><span class="error">[[+fi.error.nominator_department]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_department" name="nominator_department:required" type="text" value="[[+fi.nominator_department]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Organization <br /><span class="error">[[+fi.error.nominator_organization]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_organization" name="nominator_organization:required" type="text" value="[[+fi.nominator_organization]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Address</div> <!-- end of .label -->
            <div class="input">
                <input type="hidden" name="nominator_address_type:required" value="" />
    
                <input id="nominator_address_type_personal" type="radio" name="nominator_address_type:required" value="personal" [[+fi.nominator_address_type:is=`personal`:then=`checked="checked"`]] /> personal
                <input id="nominator_address_type_business" type="radio" name="nominator_address_type:required" value="business" [[+fi.nominator_address_type:is=`business`:then=`checked="checked"`]] /> business
                <br /><span class="error">[[+fi.error.nominator_address_type]]<br /></span>
    
                <input id="nominator_address" type="text" name="nominator_address:required" value="[[+fi.nominator_address]]" />
                <br /><span class="error">[[+fi.error.nominator_address]]</span>
            </div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">City <br /><span class="error">[[+fi.error.nominator_city]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_city" name="nominator_city:required" type="text" value="[[+fi.nominator_city]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Province <br /><span class="error">[[+fi.error.nominator_province]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_province" name="nominator_province:required" type="text" value="[[+fi.nominator_province]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Postal Code <br /><span class="error">[[+fi.error.nominator_postalcode]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_postalcode" name="nominator_postalcode:required" type="text" value="[[+fi.nominator_postalcode]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Telephone <br /><span class="error">[[+fi.error.nominator_phone]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_phone" name="nominator_phone:required" type="text" value="[[+fi.nominator_phone]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Fax <br /><span class="error">[[+fi.error.nominator_fax]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_fax" name="nominator_fax:required" type="text" value="[[+fi.nominator_fax]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
        <div class="row clearfix">
            <div class="label">Email <br /><span class="error">[[+fi.error.nominator_email]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nominator_email" name="nominator_email:required:email" type="text" value="[[+fi.nominator_email]]" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
    
        <p> </p>
        <h2>Category</h2>
        <p><span class="error">[[+fi.error.nominee_category]]</span></p>
        <p>Please indicate one category for which you wish your nomination to be considered.  The Judges reserve the right to move nominations from one award category to another where appropriate.</p>
    
        <div class="row clearfix">
            <div class="label"> </div> <!-- end of .label -->
            <div class="input">
                <input type="hidden" name="nominee_category:required" value="" />
    
                <input id="nominee_category" type="radio" name="nominee_category:required" value="nonprofit" [[+fi.nominee_category:is=`nonprofit`:then=`checked="checked"`]] /> Not-For-Profit<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="community group" [[+fi.nominee_category:is=`community group`:then=`checked="checked"`]] /> Community Group<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="businesslarge" [[+fi.nominee_category:is=`businesslarge`:then=`checked="checked"`]] /> Large Business (101+ employees)<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="businesssmall" [[+fi.nominee_category:is=`businesssmall`:then=`checked="checked"`]] /> Small Business (100 employees or less)<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="education: school" [[+fi.nominee_category:is=`education: school`:then=`checked="checked"`]] /> Education: School or Classroom<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="public education outreach" [[+fi.nominee_category:is=`public education outreach`:then=`checked="checked"`]] /> Public Education & Outreach<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="emerald challenge award" [[+fi.nominee_category:is=`emerald challenge award`:then=`checked="checked"`]] /> Emerald Challenge Award: Alberta's Oil Sands<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="government institution" [[+fi.nominee_category:is=`government institution`:then=`checked="checked"`]] /> Government Institution<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="individual commitment" [[+fi.nominee_category:is=`individual commitment`:then=`checked="checked"`]] /> Individual Commitment<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="youth" [[+fi.nominee_category:is=`youth`:then=`checked="checked"`]] /> Youth<br />
                <input id="nominee_category" type="radio" name="nominee_category:required" value="shared footprints" [[+fi.nominee_category:is=`shared footprints`:then=`checked="checked"`]] /> Shared Footprints - Integrated Land Management
            </div> <!-- end of .input -->
        </div> <!-- end of .row -->
    
    
        <p> </p>
        <h2>The Nomination</h2>
    
        <p><strong>1. Please provide an executive summary of the nominated project. This summary will be used on the AEF website as well as possibly in the Emerald Awards print program and other communications materials, so please ensure your summary is eloquent and easy to understand.</strong></p>
        <div class="row clearfix">
            <div class="label"><i>150 word limit</i><br /><span class="error">[[+fi.error.nomination_summary]]</span></div> <!-- end of .label -->
            <div class="input"><textarea id="nomination_summary" name="nomination_summary:required:stripTags">[[+fi.nomination_summary]]</textarea></div> <!-- end of .input -->
        </div> <!-- end of .row -->    
        
        <p><strong>2. Environmental Benefit & Outcomes</strong></p>
        <ul>
            <li>Identify what environmental receptor or element of the environment is benefiting from the project or activity being nominated: air, land, water, flora, fauna, biodiversity, waste reduction etc.</li>
            <li>Effectiveness in engaging youth</li>
            <li>
                Clearly identify/describe/explain how this is being accomplished:
                <ul>
                    <li>Reducing the impact on the environment</li>
                    <li>Protecting preserving, enhancing</li>
                    <li>Reclamation, restoration</li>
                    <li>Kids doing a clean up</li>
                    <li>Conservation or preservation (i.e. nature conservancy holding land)</li>
                    <li>Social science (culture) has a role in environmental protection</li>
                </ul>
            </li>
        </ul>
        <p class="long_answer_q"><strong>How does the nominated project achieve environmental benefit and outcomes?</strong></p>
        <div class="row clearfix">
            <div class="label"><i>250 word limit.</i><br /><span class="error">[[+fi.error.nomination_environmental]]</span></div> <!-- end of .label -->
            <div class="input"><textarea id="nomination_environmental" name="nomination_environmental:required:stripTags">[[+fi.nomination_environmental]]</textarea></div> <!-- end of .input -->
        </div> <!-- end of .row -->    
        
        <p><strong>3. Commitment</strong></p>
        <ul>
            <li>What were the results achieved?</li>
            <li>Demonstrate the depth and breadth of involvement by individuals and organizations</li>
            <li># of years project has been active</li>
            <li>Demonstrate the extraordinary levels of dedication required to see the project or work of the nominee to completion</li>
            <li>Describe the magnitude of impact</li>
            <li>Did the project overcome any barriers?  How did this contribute to project learning?</li>
        </ul>
        <p class="long_answer_q"><strong>How does the nominated project demonstrate commitment?</strong></p>
        <div class="row clearfix">
            <div class="label"><i>250 word limit.</i><br /><span class="error">[[+fi.error.nomination_commitment]]</span></div> <!-- end of .label -->
            <div class="input"><textarea id="nomination_commitment" name="nomination_commitment:required:stripTags">[[+fi.nomination_commitment]]</textarea></div> <!-- end of .input -->
        </div> <!-- end of .row -->    
        
        <p><strong>4. Sharing</strong></p>
        <ul>
            <li>
                How did/does this nominee influence others:
                <ul>
                    <li>How were project results shared?</li>
                    <li>Did the project educate target audiences or the public?</li>
                    <li>Lead by example in order to change attitudes in specific industries or sectors</li>
                </ul>
            </li>
            <li>
                Collaboration / partnerships with other organizations and individuals
                <ul>
                    <li># of people involved, # of partners involved</li>
                    <li>Extent of cross-sector partnerships (i.e. between different industry sectors; or partnering between industry, government, environmental NGO's, and community; versus partnering within a single</li>
                </ul>
            </li>
            <li>How has this work influenced others to follow the same approaches, or how the project can stand as a prototype for future projects?</li>
        </ul>
        <p class="long_answer_q"><strong>How does the nominated project incorporate sharing?</strong></p>
        <div class="row clearfix">
            <div class="label"><i>250 word limit.</i><br /><span class="error">[[+fi.error.nomination_sharing]]</span></div> <!-- end of .label -->
            <div class="input"><textarea id="nomination_sharing" name="nomination_sharing:required:stripTags">[[+fi.nomination_sharing]]</textarea></div> <!-- end of .input -->
        </div> <!-- end of .row -->    
        
        <p><strong>5. Innovation</strong></p>
        <ul>
            <li>Is the nominee or the project creative or new?</li>
            <li>Does it use older technology in a new way?</li>
            <li>Does it provide leadership for others?</li>
            <li>Is this a research project – will and has it influenced public policy?</li>
            <li>How does this project differ from business-as-usual?</li>
        </ul>
        <p class="long_answer_q"><strong>In what way(s) is the project innovative?</strong></p>
        <div class="row clearfix">
            <div class="label"><i>250 word limit.</i><br /><span class="error">[[+fi.error.nomination_innovation]]</span></div> <!-- end of .label -->
            <div class="input"><textarea id="nomination_innovation" name="nomination_innovation:required:stripTags">[[+fi.nomination_innovation]]</textarea></div> <!-- end of .input -->
        </div> <!-- end of .row -->    
        
        <p><strong>6. Shared Footprints Award Only</strong></p>
        <p>Nominations in this category must be observant and consistent with the Emerald Awards Criteria, as well, must demonstrate alignment to ILM Principles:</p>
        <ul>
            <li>Describe how there will be a reduction in land-use disturbances relative to what would have occurred in the absence of integrated efforts</li>
            <li>Describe how land users in the area affected by the proposed new activity have been identified and engaged, and their diverse interests, knowledge and values in the area have been considered.</li>
            <li>Have impacts on other land users been identified and addressed?</li>
            <li>Is the land use proposal supported by other land users? Where it isn't supported, describe the efforts taken to address concerns.</li>
            <li>What are the identified social, cultural and environmental resources that will be affected throughout the lifecycle of the activity? How will these effects be addressed?</li>
            <li>What are the risks to stated values for land in the area? What is the management strategy used to address these risks?</li>
            <li>Describe how the best available knowledge, data, information, science, process and/or models have been used to support the proposed activity, and how this will be used to minimize the present and future footprint.</li>
            <li>How does the proposed activity demonstrate shared stewardship?</li>
            <li>Has the entire lifecycle of the activity, including reclamation activities upon closure, been considered or anticipated?</li>
            <li>Are potential future uses and interests been accommodated during the life of the activity and/or after the activity has concluded?</li>
            <li>How will you continuously improve tools and process, while identifying information gaps and other needs (adaptive management)? Describe the mechanisms for collecting feedback and learning, and how this is influences changes in management practices.</li>
        </ul>
        <p class="long_answer_q"><strong>How does the nominated project align with the above principles?</strong></p>
        <div class="row clearfix">
            <div class="label"><i>500 word limit.</i><br /><span class="error">[[+fi.error.nomination_sharedfootprints]]</span></div> <!-- end of .label -->
            <div class="input"><textarea id="nomination_sharedfootprints" name="nomination_sharedfootprints:required:stripTags">[[+fi.nomination_sharedfootprints]]</textarea></div> <!-- end of .input -->
        </div> <!-- end of .row -->    
        
        <p><strong>7. Why is the nominated project Emerald Award worthy?</strong></p>
        <div class="row clearfix">
            <div class="label"><i>250 word limit.</i><br /><span class="error">[[+fi.error.nomination_worthy]]</span></div> <!-- end of .label -->
            <div class="input"><textarea id="nomination_worthy" name="nomination_worthy:required:stripTags">[[+fi.nomination_worthy]]</textarea></div> <!-- end of .input -->
        </div> <!-- end of .row -->    
        
        <p><strong>8. Please attach 2 letters of support for the nominated project or testimonials.</strong></p>
        <div class="row clearfix">
            <div class="label"> <span class="error">[[+fi.error.nomination_file]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nomination_file" name="nomination_file" type="file" value="[[+fi.nomination_file]]" maxlength="10485760" /></div> <!-- end of .input -->
        </div> <!-- end of .row -->
        <div class="row clearfix">
            <div class="label"> <span class="error">[[+fi.error.nomination_file3]]</span></div> <!-- end of .label -->
            <div class="input"><input id="nomination_file3" name="nomination_file3" type="file" value="[[+fi.nomination_file
      --
      Landon Poburan
      Web Designer and Developer

      http://www.categorycode.ca
      http://www.landonp.com
      • 4172
      • 5,888 Posts
      try removing hooks (one at a time) and the &redirectTo=`80` - property to find out which hook makes the issue or if it exists only with &redirectTo
        -------------------------------

        you can buy me a beer, if you like MIGX

        http://webcmsolutions.de/migx.html

        Thanks!
        • 16633
        • 116 Posts
        The issue only ever seems to arrise when files are being uploaded. I was partially thinking it is an issue with upload size or execution time on the server. Formit does not handle errors the greatest, so it is really hard to tell.
          --
          Landon Poburan
          Web Designer and Developer

          http://www.categorycode.ca
          http://www.landonp.com