miniBB ® 

miniBB

®
Support Forums
  
 | Start | Register | Statistics | File Bank | Manual |
miniBB Support Forums / Search
Search for
[+] Formatting  [+] Fields  [+] Forum  [+] Period  [+] Username
Formatting
Fields
Forum
Period from to
Username
 
Results found: 261
» Messages | Topic titles 
Page  Page 5 of 14:  « Previous  1  2  3  4  5  6  ...  14  Next » 
 
81. Posted: 11 Aug 2010 16:51 - News / miniBB is under worldwide competitors attack
    This forum has 3500 members who have registered here because they're interested in this specific subject. If you'd send users a newsletter about some tempting subject, like for example a competition, you'd... 

82. Posted: 16 Jun 2010 08:20 - Official Addons and Solutions / Avatars
    This option is available only for registered users. I don't know even in theory, how it could be allowed for guests. Guests have no recognition by ID, but something external could be added to user's account... 

83. Posted: 2 May 2010 04:53 - Official Addons and Solutions / Who's Online
    ... if(!in_array($key, $modsList)) $modsList[]=$key; foreach($w_logged_users as $key=>$val){ if($key==1) $clr='red'; elseif(in_array($key, $modsList)) $clr='green'; else $clr='black'; $registeredList.=" <a href=\"{$main_url}/{$indexphp}action=userinfo&amp;user={$key}\"><span style=\"color:{$clr}\">{$val[0]}</span></a>... 

84. Posted: 23 Apr 2010 07:41 - Specific / More that one installation of minibb running on a website
    ... variable in setup_options.php to specify what session this forum relates to. i.e. the forum name. $forumname = 'mini1-'; (defaults to '' for backwards compatibility) So I could have the two user registered only forums running with different permissions for the users, such as $_SESSION['minibb1-auth'] and $_SESSION['minibb1-ID'] $_SESSION['minibb2-auth']..

85. Posted: 20 Apr 2010 07:58 - Custom Tutorials and Modifications / Avoiding "Bump" replies
    ... that way, because Recent Topics or Topics Listings display latest messages on top basing on their IDs. In the case of editing the message, nor post ID or post date are updated. It also works only for registered users. /* Adhesive Message */ if($action=='pthread' and $user_id>0){ $putUpdateOnTop=TRUE; //TRUE will delete the older message and replace it with the... 

86. Posted: 31 Mar 2010 15:54 - FAQ / How to protect your miniBB forum from spam bots
    Guest: how i can able just member of forum can post not guestsSearch is your pal: Only registered users 

87. Posted: 13 Mar 2010 10:03 - Custom Tutorials and Modifications / Custom Profile URL in messages
    ... $GLOBALS['pLink2']='</a>'; } else { $GLOBALS['pLink1']=''; $GLOBALS['pLink2']=''; } /* --Custom profile links */ } The code in bold works like a condition for guests. I.e. if you have forums for registered users only, you may minimize the code and make it a *bit* smaller ;-) Let me know if it will work for you... kuopassa I think we need a clockwise solution... 

88. Posted: 15 Feb 2010 20:38 - Re-cycled / How to prevent display of New Messaage/Reply box for unregistered users
    My forum is set to allow ONLY registered users to post but I'd also like the Start New Topic/Message box sections or the Your Reply sections not to be shown AT ALL to unregistered users... 

89. Posted: 12 Feb 2010 22:00 - Re-cycled / How to change forums member "type"
    I notice that in the minibb.com forums, user "Paul" has the title "CEO" under his posts, while registered users have "Registered User" and guests have "Guest." How can I assign a specific text strings to a specific user or users?... 

90. Posted: 19 Jan 2010 19:14 - Bugs / Text on registered users only sign in prompt
    If enableNewRegistrations is false, and we have a non logged in user viewing a registered users only forum, there is a sign in prompt which in english reads: Only registered users are allowed to post here. Please enter your... 

91. Posted: 27 Dec 2009 20:17 - Official Addons and Solutions / File and Image Attachments
    ... user tries to upload a file without entering any text in the post/reply, it generates a pop-up with the $l_forbidden variable "You must be logged in to post to the forums." I do not allow unregistered users to post, and in fact the post or reply box is not even displayed unless logged in. So, the user is logged in. But the wrong error message is getting displayed... 

92. Posted: 16 Dec 2009 10:32 - Suggestions / "Thanks" Button
    ... "thanks" buttons could easy become a fake). On another hand, if we introduce "positive" ratings, we also need "negative" then. But the most important moment is - this feature should be opened for everybody. Not just for registered users. If we make it for members only, it is 100x reduced in efficiency then. Imagine that you found the answer or advice on some forums... 

93. Posted: 14 Dec 2009 02:59 - Re-cycled / $allForumsReg
    This option allows only registered users to post. It doesn't hide forums from public. Look up for $clForums, $clForumsUsers arrays of bb_specials (read in Manual) if you want to... 

94. Posted: 11 Dec 2009 06:24 - Official Addons and Solutions / File and Image Attachments
    ... address, like: www.mydomain.com/forums/index.php? (white & empty page) don't know what's wrong I did.. .......... and also when I set $origFileExt to "False" it works just for registered users but when download it.. after downloading it says the file is invalid (it won't open) also for Images and other files.. I did same setting as you write in ReadMe... 

95. Posted: 11 Dec 2009 04:41 - Official Addons and Solutions / File and Image Attachments
    If you set $closedContent=1; as it says in the comment, "all saved files available for everyone; else big images and binary attachments available only for registered users". Currently there is no destructive solution regarding allowing certain types for admins or moderators only. For this you might need to modify add-on's... 

96. Posted: 2 Dec 2009 11:39 - Specific / Mass mailing from non-admin
    Hello, would it be possible to "authorize" somebody else than admin to send mass mailing (private message to all registered users)? I would like to delegate this right to special moderator but the function is available only to admin in admin panel. Thanks in advance 

97. Posted: 27 Nov 2009 20:43 - Re-cycled / How to remove post form unless logged in?
    ... the user is logged in? ive already un-commented the $allForumsReg=TRUE; I was thinkin about using that var detection to detect it before the entire form is printed instead of adding the "Only registered users are allowed to post here..." text to the form. Any help will be greatly appreciated! Mahalo! 

98. Posted: 24 Nov 2009 11:14 - Custom Tutorials and Modifications / Private forum, but visible to everyone
    ... !in_array($user_id,$clForumsUsers[$forum])) $roForums[]=$forum; /* If you want anonymous has access, append 0 and $user_id */ $clForumsUsers[7]=array_merge($clForumsUsers[7], array(0,$user_id)); /* If you want only registered has access, append only $user_id */ $clForumsUsers[5][]=$user_id; } Thank you very much for the solution... 

99. Posted: 18 Nov 2009 07:33 - Custom Tutorials and Modifications / Link to last poster's profile in the latest discussions
    ... author, you don't have to enable $textLd option because such information comes directly from 'topics' table. Please note that this simple solution would work only if you have forums for registered members only. If Guests may post on forums as well, the link may produce 'user=0' for Guests i.e. link to the not-existing profile. For getting around with Guests, you should... 

100. Posted: 29 Oct 2009 04:45 - News / "Unread Messages Indicator" add-on released
    .... jontrac: The addon adds a lot of data to the database. It stores data from all users (what they have read and not read), even if they only register and visit the forum once.Of course, as soon as a registered user is logged in, the add-on will generate kind of cache for him. Despite it uses as compact database structure as possible, of course it will generate a lot of data... 

» Messages | Topic titles
Page  Page 5 of 14:  « Previous  1  2  3  4  5  6  ...  14  Next » 
 
miniBB Support Forums Powered by Forum Software miniBB ® Home  Features  Requirements  Demo  Download  Showcase  Gallery of Arts
Compiler  Premium Extensions  Premium Support  License  Contact Us
Proceed with the File and Picture Attachments add-on: extend your miniBB-forums, attaching images and files.


  ⇑