Search found 107 matches

by Michaelo
Tue Jun 08, 2010 1:37 am
Forum: General Development Discussion
Topic: php source reformat script for braces
Replies: 7
Views: 15746

Re: php source reformat script for braces

I have been using the phpBB format style since the early seventies... I never understood the logic of method 1... Having said that, I never understood the logic of lower case true/false but I guess I can't have everything... :mrgreen: Simply said, following the phpBB code guidelines makes code much ...
by Michaelo
Tue Jun 08, 2010 1:22 am
Forum: [3.x] Discussion
Topic: Wysiwyg TinyMCE implementation
Replies: 41
Views: 68827

Re: Wysiwyg TinyMCE implementation

Logic and probably appear to indicate there will be WYSIWYG editor in version 4... probably an optional plugin... may even be derived from existing code... There is no reason to suggest bbcodes implementation will remain as is but whatever changes are made, I'm guessing the WYSIWYG editor will suppo...
by Michaelo
Sun May 30, 2010 10:01 am
Forum: [3.x][Archive] RFCs
Topic: [RFC|Accepted] Symfony 2
Replies: 84
Views: 179272

Re: [RFC] Symfony 2

My initial choices were primarily based on first impressions, and as I indicated earlier, were not influenced by phpBB4 development as it had not started... I originally opted for CodeIgniter as reports were very favourable and sample code was available. My second choice was Prado, again favourable ...
by Michaelo
Wed May 26, 2010 10:56 pm
Forum: Chit Chat
Topic: phpBB4 im sick of waiting!
Replies: 11
Views: 35925

Re: phpBB4 im sick of waiting!

I think you should take this post with a grain of salt.. phpBB4 is a very long time off... As far as upgrading is concerned... I very much doubt it, although you will probably be able to import tables... possibly... The new Omni OS will support phpBB4, of course you will need to re-compile all libra...
by Michaelo
Tue May 25, 2010 12:45 am
Forum: [3.x][Archive] RFCs
Topic: [RFC|Accepted] Symfony 2
Replies: 84
Views: 179272

Re: [RFC] Symfony 2

I am looking forward to the future and in particular the potential plug-in aspect the move affords... Some time ago I investigated the possibility of using one of the available frameworks, even before I realised phpBB4 was going in that direction... To be completely honest, symfony would definitely ...
by Michaelo
Sun Jan 10, 2010 2:57 am
Forum: [3.x] Discussion
Topic: AJAX, jQuery, et. al.
Replies: 38
Views: 97911

Re: AJAX, jQuery, et. al.

Would like some feedback on YUI...anybody?
In particular version 3.0.0... ideal if you favour a unified approach with excellent documentation...
Also, are there any issue in relation to the BSD License?
by Michaelo
Sat Feb 17, 2007 5:55 am
Forum: [3.0/Olympus] Discussion
Topic: Question: Re INCLUDE
Replies: 7
Views: 9638

Re: Question: Re INCLUDE

I have found a way it can be done but it is not ideal... The FILENAME is a variable so INCLUDE does not process it... I just do comparisons, however this means I need to check the variable for all file I need to include... <!-- IF loop.FILENAME == "file1.html" --> <!-- INCLUDE file1.html -...
by Michaelo
Sat Feb 17, 2007 3:07 am
Forum: [3.0/Olympus] Discussion
Topic: Question: Re INCLUDE
Replies: 7
Views: 9638

Re: Question: Re INCLUDE

Highway is correct... It does appear that the INCLUDE is processed before the loop variable is assigned a value, now is there any way to overcome this? Previously, I created a file (from ACP) which contained the following... <!-- INCLUDE dir/file1.html --> <!-- INCLUDE dir/file5.html --> <!-- INCLUD...
by Michaelo
Fri Feb 16, 2007 12:37 pm
Forum: [3.0/Olympus] Discussion
Topic: Question: Re INCLUDE
Replies: 7
Views: 9638

Question: Re INCLUDE

Regarding the INCLUDE directive.... While all variables/values passed to a given html file can be displayed or used to process whatever is needed... Is there any way to code the following for it to work...? <!-- INCLUDE {anyloop.A_FILENAME} --> The FILENAME can be printed so I know the html file is ...
by Michaelo
Mon Dec 04, 2006 5:32 pm
Forum: [3.0/Olympus] Discussion
Topic: PhpBB 3 portals
Replies: 76
Views: 100561

Re: PhpBB 3 portals

Ectoman, Just a note re accessing files outside the phpbb root should it be necessary... Always use file_exists(string filename) where file name includes the full path to file to avoid possible remote injection. This function will not work on remote files; the file to be examined must be accessible ...