View Single Post
Old January 22nd, 2005, 06:08 PM   #4 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,035
Okay bugfix this exists in 4.8.6 release and the beta pp5

Basically unregistered users can never post comments even though you allow them since the $User['nopost'] variable is ALWAYS SET to 1 for unregistered users. Basically the comments script sets any rating and message to null if $User['nopost'] is set to 1

So in your forum integration file find this line

if ( $nouploadlimit == 1 ) $User['uploadlimit'] = 0;

add beneath it this

if ( $usercomment == 1 ) $User['nopost'] = 0;

thats it unregistered users will be able to post
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is online now   Reply With Quote