by
mjlxx » Sun May 08, 2022 1:25 am
genxcoders wrote: This description is too vague to comment upon. If you could probably share some code, it will be helpful. Trying to solve this problem would be like shooting in the dark with ones eyes covered!
Please share excerpt of code that you feel creates the issue.
Regards,
GenXCoders
To be honest I have no idea where the error is coming from, I've read the code up and down a million times and can't find the problem. I might just have to reinstall Couch and start again. This is the page that's causing problems (profile.php), it's essentially the same code as the tutorial, with a few extra fields - thanks for looking into it again

- Code: Select all
<?php require_once( '../couch/cms.php' ); ?>
<cms:template title='User Profile' hidden='1' />
<cms:if k_logged_out >
<cms:redirect "<cms:login_link />" />
</cms:if>
<h2>Edit profile</h2>
<cms:set success_msg="<cms:get_flash 'success_msg' />" />
<cms:if success_msg >
<h4>Profile updated.</h4>
</cms:if>
<style>
form{ width:400px; }
</style>
<cms:form
masterpage=k_user_template
mode='edit'
page_id='k_user_id'
enctype="multipart/form-data"
method='post'
anchor='0'
>
<cms:if k_success >
<cms:db_persist_form />
<cms:if k_success >
<cms:set_flash name='success_msg' value='1' />
<cms:redirect k_page_link />
</cms:if>
</cms:if>
<cms:if k_error >
<font color='red'><cms:each k_error ><cms:show item /><br /></cms:each></font>
</cms:if>
DisplayName:<br />
<cms:input name='k_page_title' type='bound' /><br />
E-mail:<br />
<cms:input name='extended_user_email' type='bound' /><br />
New Password: (If you would like to change the password type a new one. Otherwise leave this blank.)<br />
<cms:input name='extended_user_password' type='bound' /><br />
Repeat Password:<br />
<cms:input name='extended_user_password_repeat' type='bound' /><br />
About Me: Tell us a bit about yourself!<br />
<cms:input name='aboutme' type='bound' /><br />
Phrase: give us a catchy phrase!<br />
<cms:input name='phrase' type='bound' /><br />
<input type="submit" name="submit" value="Save"/>
</cms:form>
<a href="<cms:logout_link />">logout</a>
<?php COUCH::invoke(); ?>