more on portfolio









August 2008
M T W T F S S
« May «-»  
 123
45678910
11121314151617
18192021222324
25262728293031






 

How to: Remove the Updates Nags in phpBB2 (again?)

Log entry of March 25th 2008 03:01:25 am
Filed under: Codes Related, How To, MODs Tip, PHPbb
Sorry folks, today’s entries which was suppose to be disabling WordPress update notification was overwritten by something which I forgotten to include yesterday.

Alright… what was taught was correct, but I’ve forgotten that phpBB has a language file too.

So what you need to do is open “languages/lang_english/lang_admin.php” and remove this: // // Version Check // $lang['Version_up_to_date'] = ‘Your installation is up to date, no updates are available for your version of phpBB.’; $lang['Version_not_up_to_date'] = ‘Your installation …

How to: Remove the Updates Nags in phpBB2

Log entry of March 24th 2008 01:43:10 pm
Filed under: Codes Related, How To, MODs Tip, PHPbb
I’m not really sure if this information is really useful though.

Let us takes into this scenario… if you are using a heavily modded phpbb2 forum, it’s most likely you won’t be able to update your phpbb into a newer version. One possible reason might be that the main coding are altered.

When that happens, then why do you still have the message “Your phpBB is not up to date” in the …

How to: Load a template in *.TPL

Log entry of September 4th 2007 08:40:45 am
Filed under: How To, MODs Tip, PHPbb, phpBB Related
Here’s a unique code line that I’ve discovered while fooling around with Phpbb. $template->set_filenames(array(’newfile’ => ‘newfile.tpl’)); $template->assign_var_from_handle(’PASTEFILE’, ‘newfile’); This coding was found while I was editing Function_Post.php inside the Includes folder. Apparently, the script actually calls out another template (eg: SIDEBAR.tpl ) onto a main template( eg: INDEX_BODY.tpl).

You might be lost right now… and be worried cause I’m not explaining.

For those who know how to modify PhpBB internal organs, this code will …