phpBBHacks.com - Rename index.php
BadBoyForums.com, an unofficial Diddy and Bad Boy fan community
StatsForums Home   RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in
FAQFAQ   SearchSearch   MemberlistMemberlist   TutorialsTutorials   ContactContact Us
Add Us:     MySpace     Facebook     StumbleUpon
Username:    Password:
Remember Me?    
Rename index.php
BlinkList
del.icio.us
Furl
linkaGoGo
reddit
Simpy
Mister Wong
Yahoo! My Web

Post new topic   Reply to topic    phpBBHacks.com Support Forums Forum Index -> phpBB 2: Customizing Your phpBB
 See a User Guidelines violation? Please contact us.
Author Message

shof515
Dedicated User

Joined: 21 Mar 2003
Posts: 749

PostPosted: January 20th 2005, 8:25 pm    Post subject: Rename index.php Reply with quote

Here is how you can rename index.php to something else.php. In this example, forumindex.php is the name you are trying to achieve, but you can change it to whatever you want.

Code:
#
#-----[ OPEN ]------------------------------------------
#
groupcp.php
#
#-----[ FIND ]------------------------------------------
#(First Find)
         'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
         'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
      $message = $lang['Not_group_moderator'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#
   $message = $lang['Group_type_updated'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#(2nd Find)
                  'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
                  'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
               $message = $lang['Already_member_group'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#(3rd Find)
            'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
            'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
         $message = $lang['This_closed_group'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#(4th Find)
      'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
      'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
   $message = $lang['Group_joined'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#(5th Find)
         'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
         'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
      $message = $lang['Unsub_success'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#(6th Find)
               'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
               'META' => '<meta http-equiv="refresh" content="3;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
            $message = $lang['Not_group_moderator'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ REPLACE WITH ]------------------------------------------
#
            $message = $lang['Not_group_moderator'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#
               $message = $lang['Could_not_add_user'] . "<br /><br />" . sprintf($lang['Click_return_group'], "<a href=\"" . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_index'], "<a href=\"" . append_sid("index.$phpEx") . "\">", "</a>");
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href=\"" . append_sid("index.$phpEx") . "\">", "</a>");
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href=\"" . append_sid("forumindex.$phpEx") . "\">", "</a>");
#
#-----[ FIND ]------------------------------------------
#
               $message = $lang['Could_not_anon_user'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#
               $message = $lang['User_is_member_group'] . '<br /><br />' . sprintf($lang['Click_return_group'], '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=$group_id") . '">', '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ OPEN ]------------------------------------------
#
index.php
#
#-----[ FIND ]------------------------------------------
#
      "META" => '<meta http-equiv="refresh" content="3;url='  .append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
      "META" => '<meta http-equiv="refresh" content="3;url='  .append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
   $message = $lang['Forums_marked_read'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a> ');
#
#-----[ REPLACE WITH ]------------------------------------------
#
   $message = $lang['Forums_marked_read'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("forumindex.$phpEx") . '">', '</a> ');
#
#-----[ FIND ]------------------------------------------
#
      'U_MARK_READ' => append_sid("index.$phpEx?mark=forums"))
#
#-----[ REPLACE WITH ]------------------------------------------
#
      'U_MARK_READ' => append_sid("forumindex.$phpEx?mark=forums"))
#
#-----[ FIND ]------------------------------------------
#
            'U_VIEWCAT' => append_sid("index.$phpEx?" . POST_CAT_URL . "=$cat_id"))
#
#-----[ REPLACE WITH ]------------------------------------------
#
            'U_VIEWCAT' => append_sid("forumindex.$phpEx?" . POST_CAT_URL . "=$cat_id"))
#
#-----[ OPEN ]------------------------------------------
#
login.php
#
#-----[ FIND ]------------------------------------------
#(1st find)
redirect(append_sid("index.$phpEx", true));
#
#-----[ REPLACE WITH ]------------------------------------------
#
redirect(append_sid("forumindex.$phpEx", true));
#
#-----[ FIND ]------------------------------------------
#(1st find)
                  $url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&amp;', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "index.$phpEx";
#
#-----[ REPLACE WITH ]------------------------------------------
#
                  $url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&amp;', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "forumindex.$phpEx";
#
#-----[ FIND ]------------------------------------------
#
               $message = $lang['Error_login'] . '<br /><br />' . sprintf($lang['Click_return_login'], "<a href=\"login.$phpEx?redirect=$redirect\">", '</a>') . '<br /><br />' .  sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#
         $message = $lang['Error_login'] . '<br /><br />' . sprintf($lang['Click_return_login'], "<a href=\"login.$phpEx?redirect=$redirect\">", '</a>') . '<br /><br />' .  sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#(2nd find)
         redirect(append_sid("index.$phpEx", true));
#
#-----[ REPLACE WITH ]------------------------------------------
#
         redirect(append_sid("forumindex.$phpEx", true));
#
#-----[ FIND ]------------------------------------------
#(2nd find)
      $url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&amp;', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "index.$phpEx";
#
#-----[ REPLACE WITH ]------------------------------------------
#
      $url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&amp;', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "forumindex.$phpEx";
#
#-----[ FIND ]------------------------------------------
#(3rd find)
      redirect(append_sid("index.$phpEx", true));
#
#-----[ REPLACE WITH ]------------------------------------------
#
      redirect(append_sid("forumindex.$phpEx", true));
#
#-----[ OPEN ]------------------------------------------
#
posting.php
#
#-----[ FIND ]------------------------------------------
#
      $redirect = "index.$phpEx";
#
#-----[ REPLACE WITH ]------------------------------------------
#
      $redirect = "forumindex.$phpEx";
#
#-----[ OPEN ]------------------------------------------
#
privmsg.php
#
#-----[ FIND ]------------------------------------------
#
      $msg = $lang['Message_sent'] . '<br /><br />' . sprintf($lang['Click_return_inbox'], '<a href="' . append_sid("privmsg.$phpEx?folder=inbox") . '">', '</a> ') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE FIND ]------------------------------------------
#
<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ OPEN ]------------------------------------------
#
profile.php
#
#-----[ FIND ]------------------------------------------
#
redirect(append_sid("index.$phpEx", true));
#
#-----[ REPLACE WITH ]------------------------------------------
#
redirect(append_sid("forumindex.$phpEx", true));
#
#-----[ OPEN ]------------------------------------------
#
viewforum.php
#
#-----[ FIND ]------------------------------------------
#
   'url' => append_sid('index.'.$phpEx),
#
#-----[ REPLACE WITH ]------------------------------------------
#
   'url' => append_sid('forumindex.'.$phpEx),
#
#-----[ OPEN ]------------------------------------------
#
viewonline.php
#
#-----[ FIND ]------------------------------------------
#
               $location_url = "index.$phpEx";
#
#-----[ REPLACE WITH ]------------------------------------------
#
               $location_url = "forumindex.$phpEx";
#
#-----[ FIND ]------------------------------------------
#
               $location_url = "index.$phpEx";
#
#-----[ REPLACE WITH ]------------------------------------------
#
               $location_url = "forumindex.$phpEx";
#
#-----[ FIND ]------------------------------------------
#
               $location_url = "index.$phpEx";
#
#-----[ REPLACE WITH ]------------------------------------------
#
               $location_url = "forumindex.$phpEx";
#
#-----[ FIND ]------------------------------------------
#
               $location_url = "index.$phpEx";
#
#-----[ REPLACE WITH ]------------------------------------------
#
               $location_url = "forumindex.$phpEx";
#
#-----[ FIND ]------------------------------------------
#
               $location_url = "index.$phpEx";
#
#-----[ REPLACE WITH ]------------------------------------------
#
               $location_url = "forumindex.$phpEx";
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_activate.php
#
#-----[ FIND ]------------------------------------------
#(1st Find)
         'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
         'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#(2nd Find)
            'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
            'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#(3rd Find)
            'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
            'META' => '<meta http-equiv="refresh" content="10;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_email.php
#
#-----[ FIND ]------------------------------------------
#
   redirect(append_sid("index.$phpEx", true));
#
#-----[ REPLACE WITH ]------------------------------------------
#
   redirect(append_sid("forumindex.$phpEx", true));
#
#-----[ FIND ]------------------------------------------
#
                  'META' => '<meta http-equiv="refresh" content="5;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
                  'META' => '<meta http-equiv="refresh" content="5;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
               $message = $lang['Email_sent'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ REPLACE WITH ]------------------------------------------
#
               $message = $lang['Email_sent'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_register.php
#
#-----[ FIND ]------------------------------------------
#
            $message = $lang['Profile_updated_inactive'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ REPLACE WITH ]------------------------------------------
#
            $message = $lang['Profile_updated_inactive'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#
            $message = $lang['Profile_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ REPLACE WITH ]------------------------------------------
#
            $message = $lang['Profile_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ FIND ]------------------------------------------
#
            "META" => '<meta http-equiv="refresh" content="5;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
            "META" => '<meta http-equiv="refresh" content="5;url=' . append_sid("forumindex") . '">')
#
#-----[ FIND ]------------------------------------------
#
         $message = $message . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ REPLACE WITH ]------------------------------------------
#
         $message = $message . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_sendpasswd.php
#
#-----[ FIND ]------------------------------------------
#
            'META' => '<meta http-equiv="refresh" content="15;url=' . append_sid("index.$phpEx") . '">')
#
#-----[ REPLACE WITH ]------------------------------------------
#
            'META' => '<meta http-equiv="refresh" content="15;url=' . append_sid("forumindex.$phpEx") . '">')
#
#-----[ FIND ]------------------------------------------
#
         $message = $lang['Password_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("index.$phpEx") . '">', '</a>');
#
#-----[ REPLACE WITH ]------------------------------------------
#
         $message = $lang['Password_updated'] . '<br /><br />' . sprintf($lang['Click_return_index'],  '<a href="' . append_sid("forumindex.$phpEx") . '">', '</a>');
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
   'U_INDEX' => append_sid('index.'.$phpEx),
#
#-----[ REPLACE WITH ]------------------------------------------
#
   'U_INDEX' => append_sid('forumindex.'.$phpEx),
#
#-----[ OPEN ]------------------------------------------
#
admin/index.php
#
#-----[ FIND ]------------------------------------------
#
      "U_FORUM_INDEX" => append_sid("../index.$phpEx"),
#
#-----[ REPLACE WITH ]------------------------------------------
#
      "U_FORUM_INDEX" => append_sid("../forumindex.$phpEx"),
#
#-----[ FIND ]------------------------------------------
#
               case PAGE_INDEX:
                  $location = $lang['Forum_index'];
                  $location_url = "index.$phpEx?pane=right";
                  break;
#
#-----[ IN-LINE FIND ]------------------------------------------
#
                  $location_url = "index.$phpEx?pane=right";
#
#-----[ IN-LINE REPLACE WITH ]------------------------------------------
#
                  $location_url = "forumindex.$phpEx?pane=right";
#
#-----[ OPEN ]------------------------------------------
#
admin/page_header_admin.php
#
#-----[ FIND ]------------------------------------------
#
   'U_INDEX' => append_sid('../index.'.$phpEx),
#
#-----[ REPLACE WITH ]------------------------------------------
#
   'U_INDEX' => append_sid('../forumindex.'.$phpEx),
Back to top
View user's profile Send private message AIM Address Yahoo Messenger MSN Messenger
Display posts from previous:   
Post new topic   Reply to topic    phpBBHacks.com Support Forums Forum Index -> phpBB 2: Customizing Your phpBB All times are GMT - 6 Hours
Page 1 of 1
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



Links: Big Message Boards - Free JavaScript - phpBB2 - phpbb styles - Suporte phpBB - phpBB.it - phpBB Česky - phpBB Turkiye - phpBBArabia.com - phpBB-fr.com - Romanian phpBB online community - phpBB-TW.net - phpBBservice.nl - phpBB Brasil

Network: iFroggy Network Blog - iFroggy Hosting - SportsForums.net - KarateForums.com - YanksBlog.com - PhotoshopForums.com - DeveloperCube - Managing Online Forums - ManagingCommunities.com - CommunityAdmins.com - DrGregHouse.com - Bad Boy Blog - BadBoyForums.com - SodaRatings.com - Patrick O'Keefe

< Advertising - Contact Us - Staff - User Guidelines >

Copyright © 2001-2008. iFroggy Network, phpBBHacks.com. All Rights Reserved. Privacy Policy. We Support phpBBHacks.com (of course!).
Powered by phpBB © phpBB Group. phpBB SEO. Hosted by 100MegsWebHosting. We are in no way affiliated with the phpBB Group. phpBB is copyright to the phpBB Group.