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: 233
» Messages | Topic titles 
Page  Page 5 of 12:  « Previous  1  2  3  4  5  6  ...  12  Next » 
 
81. Posted: 5 Nov 2010 06:38 - News / miniBB ver. 2.5a released: SQL injection and XSS fixes
    ... #HTB22670, there were found an XSS and SQL injection vulnerabilities, which are fixed in this release. The files to fix are bb_func_usrdat.php (which you simply may overwrite to your existing file), and bb_codes.php, specifically, BB codes for [img] and [imgs] tags containing a possible ALT. For fixing BB codes, locate the following and update your file, in the function enCodeBB() only. It... 

82. Posted: 7 Jul 2010 04:34 - Specific / Adding a "Custom HTML" button to the post form?
    ... partial piece of text. As Paul mentions, miniBB supports option to not BB-code the text for admins or moderators. But this is for the whole text. For leaving part of the text intact, you should rack not bb_codes.php, but bb_func_txt.php where it calls enCodeBB() function. This function should not be applied to the whole text, but only to some parts of this text. Most probably, you should use... 

83. Posted: 5 Jul 2010 02:48 - Specific / Adding a "Custom HTML" button to the post form?
    HTML is disabled by default in miniBB, and we don't recommend to enable it, for security purposes. Besides simply adding the button, you need to care a lot of things - that's right, in bb_codes.php, too. By default, miniBB has a hidden option, under setup_options.php you may specify: $adminHTML=TRUE; it will allow direct HTML posts for admins and moderators. If you mean the... 

84. Posted: 3 Jul 2010 02:58 - Specific / Adding a "Custom HTML" button to the post form?
    ... add a "Custom HTML" button right next to the others (B, I, Image, Link) on the post form? Just a basic function which allows every HTML command (no restrictions)? Should I add something to bb_codes.php and main_post_form.html? Thanks in advance :-) 

85. Posted: 2 Jul 2010 10:04 - How To / Displaying images on full scale?
    ... Link" button, the image is pasted in [imgs][/imgs] codes. Remove "s" i.e. place it in [img][/img] and it will be scaled to full size. Another way is to modify the aforementioned codes in bb_codes.php. 

86. Posted: 16 Jun 2010 06:29 - Custom Tutorials and Modifications / [DEV] MiniBB WYSIWYG editor
    tom322: I assume core modification is only in bb_func_posthold.php file?Thats only modifiction, but not necessary as Paul said. There is also few modification in bb_codes.php for [ui][il] but that code and button can be easily removed from editor. Paul: Currently when I click "Quote", it pastes just a simple text. You need to highlight it with... 

87. Posted: 14 Jun 2010 06:56 - Custom Tutorials and Modifications / [DEV] MiniBB WYSIWYG editor
    Paul: WYSIWYG about 220kb?? As far as I remember, about 200 Kb is the basic miniBB package size with Manual :-)Yes, Basic miniBB is about 190Kb. WYSYWG have only one .js (19Kb) and few images (each 1kb)... 

88. Posted: 14 Jun 2010 02:55 - Custom Tutorials and Modifications / [DEV] MiniBB WYSIWYG editor
    WYSIWYG about 220kb?? As far as I remember, about 200 Kb is the basic miniBB package size with Manual :-) I was always against WYSIWYG forms because first of all, they doesn't work in every browser... 

89. Posted: 24 Feb 2010 09:07 - The Other / BB code buttons above the posting form disappear
    It may be related to some JavaScript error, specifically, some language pack variable which contains the apostrophe. As I know, French sentences have a lot of apostrophes, and sometimes they could conflict... 

90. Posted: 26 Jan 2010 06:11 - Suggestions / static HTML / cache pages
    I don't know what kind of "cache" plugins these software companies have, but I'm sure it's more for their public relations, not a real perspective. The real thing is behind a physical... 

91. Posted: 13 Dec 2009 08:35 - Specific / CodeBB wrap text around images.
    find: bb_codes.php /* local images - allowed for everybody */ Here we insert these lines: /* tag flow <img src="img/logo1.gif" align="left"> */ $pattern[]='#\[float=(left|right)\](... 

92. Posted: 8 Dec 2009 12:59 - Specific / CodeBB wrap text around images.
    Paul: Just take a look at bb_codes.php of miniBB forums package, some codes like [quote] have similar syntax, you may copy/paste/modify them combining with [img] tag... it's really easy.I have my head on this broke... 

93. Posted: 8 Dec 2009 12:15 - Specific / CodeBB wrap text around images.
    Just take a look at bb_codes.php of miniBB forums package, some codes like [quote] have similar syntax, you may copy/paste/modify them combining with [img] tag... it's really easy. 

94. Posted: 15 Sep 2009 01:29 - Official Addons and Solutions / Signatures
    Are you sure this is displayed only for guests, not for everybody? At least I know Signatures add-on is not even planned to work that way. It may work with or without BB codes. If you would like to allow... 

95. Posted: 30 Apr 2009 13:34 - Official Addons and Solutions / Bulleted List BB code
    Yes, I modified bb_codes.php as described, and since the bb code is using new lines to determine list items, my post looks like this: [list] list item number one list item number two [/list] 

96. Posted: 30 Apr 2009 04:47 - Official Addons and Solutions / Bulleted List BB code
    Ok, here is the solution you may try to put under bb_codes.php. Before the function enCodeBB starts declaring, paste the following function: function encodeList($matches){ $preg=preg_replace("#[\r\n] +#", '</li><li>'... 

97. Posted: 27 Apr 2009 15:55 - Official Addons and Solutions / Bulleted List BB code
    I think I've got a simple solution ;). In bb_codes (in enCode function only is enough, I think) put this code: $pattern[]="/\[list\]/is"; $replacement[]=''; (in the replacement between the '' enter... 

98. Posted: 27 Apr 2009 15:02 - Official Addons and Solutions / Bulleted List BB code
    ... bbcode ([list]). I would simply like a minor indent and a list similar to that provided by the html <ul> tag. Been playing with $pattern and $replacement within enCodeBB() and deCodeBB() in my bb_codes.php file, but I'm a novice and can't seem to get it right. Has anyone set this up? 

99. Posted: 30 Mar 2009 03:58 - News / miniBB version 2.3 released: still getting better!
    I suppose you just need to create your own version of BB code, modifying bb_codes.php. It's all open source, thus this file is not core-dependent, so you have your way to go! 

100. Posted: 17 Feb 2009 06:43 - Custom Tutorials and Modifications / Inserting stream.cz videos in posts (similarly to YouTube)
    There is some dmeand for embedding videos from service called stream.cz into posts. It is Czech compmetition to YouTube. We are talking about bb_codes.php here- Well, what I managed to implement thEncode part well and it works to my own surprise. Let me show you both (YouTube And Streamcz) side to side: /* YouTube code */ $pattern[]="/\[youtube=http:\/(\/www\... 

» Messages | Topic titles
Page  Page 5 of 12:  « Previous  1  2  3  4  5  6  ...  12  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
Try the Captcha add-on: protect your miniBB-forums from the automated spam and flood.


  ⇑