Clan Adverts

Custom PHPNuke Scripts

 

www.clan-themes.co.uk :: View topic - PHPBB Rivals mod for forum

 Welcome To Clan Themes 

As the board grows please remember the Search Option and we hope you find our community useful.

We also monitor Private Messages to stop members from abusing our sites system.
If you are asking for assistance please provide your site link and nuke version, Thanks.

PHPBB Rivals mod for forum
Goto page 1, 2  Next

12 Replies / 2935 Views


Post new topic   Reply to topic  

   www.clan-themes.co.uk Forum Index » PHPBB

View previous topic :: View next topic


fext
Reputation: 463.4
Local time: 12:34 PM
Location: The Unknown
uk.gif

Status: Offline
0.21 posts per day
Medals: 0

Joined: Mar 26, 2007
Last Visit: 17 Sep 2007
Posts: 100
Points: 1494 

Post PHPBB Rivals mod for forum Posted: Mon Apr 23, 2007 10:15 am   

Shop Purchases:
Multi Gaming (Warrior) Theme · Clan Roster v1.7 Php Nuke Module ·  · Clan Themes Green PhpNuke Theme

Hi Guys...

I recently found a mod for PHPBB forums and it is a nice little mod - but i am just wondering if i can apply it to my PHPBB forum as i know certain elements of the forum have been modded specifically to be used with PHP NUKE and themes.

Can anyone tell me if it is safe to install onto my forum?

It only appears to have Subsilver edits (which is the default theme for PHPBB - i know that much) i could mail the zip file to someone?

This is what the code looks like...

Code:

#
#-----[ OPEN ]------------------------------------------
#
common.php

#
#-----[ FIND ]------------------------------------------
#
?>

#
#-----[ BEFORE, ADD ]------------------------------------------
#
function http_vars ( )
{
   global $_GET, $_POST;

   $vars_array   = array ( );
   foreach ( $_GET AS $name => $value )
   {
      if ( !is_array ( $value ) )
      {
         $vars_array[ $name ]   = ( is_int ( $value ) ) ? intval ( $value ) : htmlspecialchars ( addslashes ( $value ) );
      }
      else
      {
         foreach ( $value AS $i => $v )
         {
            $vars_array[ $name ][]   = ( is_int ( $v ) ) ? intval ( $v ) : htmlspecialchars ( addslashes ( $v ) );
         }
      }
   }

   foreach ( $_POST AS $name => $value )
   {
      if ( !is_array ( $value ) )
      {
         $vars_array[ $name ]   = ( is_int ( $value ) ) ? intval ( $value ) : htmlspecialchars ( addslashes ( $value ) );
      }
      else
      {
         foreach ( $value AS $i => $v )
         {
            $vars_array[ $name ][]   = ( is_int ( $v ) ) ? intval ( $v ) : htmlspecialchars ( addslashes ( $v ) );
         }
      }
   }

   return $vars_array;
}

include ( $phpbb_root_path . 'language/lang_' . $board_config[ 'default_lang' ] . '/lang_rivals.' . $phpEx );

#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php

#
#-----[ FIND ]------------------------------------------
#
   'L_SEARCH' => $lang['Search'],

#
#-----[ AFTER, ADD ]------------------------------------------
#
   'L_LADDERS' => $lang[ 'Ladders' ],
   'U_LADDERS' => append_sid ( 'rivals.php?module=ladder' ),
   'L_CCP' => $lang[ 'CCP' ],
   'U_CCP' => append_sid ( 'rivals.php?module=ccp' ),
   'L_ADDCLAN' => $lang[ 'Add_Clan' ],
   'L_TOURNAMENTS' => $lang[ 'rivals_swiz' ],
   'U_TOURNAMENTS' => append_sid ( 'rivals.php?module=tournaments' ),
   'U_ADDCLAN' => append_sid ( 'rivals.php?module=ladder&sub_module=laddercreateclan' ),
   'L_ACP' => $lang[ 'Rivals_ACP' ],
   'U_ACP' => append_sid ( 'rivals.php?module=acp' ),
   'L_MCP' => $lang[ 'mcp' ],
   'U_MCP' => append_sid ( 'rivals.php?module=mcp' ),

#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/overall_header.tpl

#
#-----[ FIND ]------------------------------------------
#
<a href="{U_LOGIN_LOGOUT}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LOGIN_LOGOUT}" hspace="3" />{L_LOGIN_LOGOUT}</a>

#
#-----[ AFTER, ADD ]------------------------------------------
#
<br /><a href="{U_LADDERS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_LADDERS}" hspace="3" />{L_LADDERS}</a>   <a href="{U_CCP}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_CCP}" hspace="3" />{L_CCP}</a>   <a href="{U_ADDCLAN}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_ADDCLAN}" hspace="3" />{L_ADDCLAN}</a>   <a href="{U_ACP}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_ACP}" hspace="3" />{L_ACP}</a>   <a href="{U_TOURNAMENTS}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_TOURNAMENTS}" hspace="3" />{L_TOURNAMENTS}</a>   <a href="{U_MCP}" class="mainmenu"><img src="templates/subSilver/images/icon_mini_login.gif" width="12" height="13" border="0" alt="{L_MCP}" hspace="3" />{L_MCP}</a>


#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM


It contains some install files as well as some other files - but i presume they get uploaded to the root of the forum and not the root of the site?

Any ideas?
 

 
View user's profileSend private messageVisit poster's websiteMSN Messenger Reply with quote

Ped
Reputation: 450.3
votes: 17
Local time: 1:34 PM
Location: Great British Empire
uk.gif

Status: Offline
2.93 posts per day
Medals: 2 (View more...)
Forums MoD (Amount: 1)
Clan Themes Theme Guru
Clan Themes Theme Guru
Joined: Nov 13, 2006
Last Visit: 04 Jul 2008
Posts: 1759
Points: 8422 

View user's profileSend private messageSend e-mail Reply with quote

fext
Reputation: 463.4
Local time: 12:34 PM
Location: The Unknown
uk.gif

Status: Offline
0.21 posts per day
Medals: 0

Joined: Mar 26, 2007
Last Visit: 17 Sep 2007
Posts: 100
Points: 1494 

View user's profileSend private messageVisit poster's websiteMSN Messenger Reply with quote

Ped
Reputation: 450.3
votes: 17
Local time: 1:34 PM
Location: Great British Empire
uk.gif

Status: Offline
2.93 posts per day
Medals: 2 (View more...)
Dedicated User (Amount: 1)
Clan Themes Theme Guru
Clan Themes Theme Guru
Joined: Nov 13, 2006
Last Visit: 04 Jul 2008
Posts: 1759
Points: 8422 

View user's profileSend private messageSend e-mail Reply with quote




Ped
Reputation: 450.3
votes: 17
Local time: 1:34 PM
Location: Great British Empire
uk.gif

Status: Offline
2.93 posts per day
Medals: 2 (View more...)
Forums MoD (Amount: 1)
Clan Themes Theme Guru
Clan Themes Theme Guru
Joined: Nov 13, 2006
Last Visit: 04 Jul 2008
Posts: 1759
Points: 8422 

Post Re: PHPBB Rivals mod for forum Posted: Mon Apr 23, 2007 3:30 pm   

ive been on it since you posted and its doing my head in now !

its a rather complex mod, its up but it has some issues, like not sitting inside the nuke forums and i get a error on a few pages... im having a rest for a day ! done my sweed in !
 

 
View user's profileSend private messageSend e-mail Reply with quote

fext
Reputation: 463.4
Local time: 12:34 PM
Location: The Unknown
uk.gif

Status: Offline
0.21 posts per day
Medals: 0

Joined: Mar 26, 2007
Last Visit: 17 Sep 2007
Posts: 100
Points: 1494 

Post Re: PHPBB Rivals mod for forum Posted: Mon Apr 30, 2007 3:31 pm   

Shop Purchases:
Multi Gaming (Warrior) Theme · Clan Roster v1.7 Php Nuke Module ·  · Clan Themes Green PhpNuke Theme

Ped wrote:
ive been on it since you posted and its doing my head in now !

its a rather complex mod, its up but it has some issues, like not sitting inside the nuke forums and i get a error on a few pages... im having a rest for a day ! done my sweed in !


Hello mate!

I was wondering if you had any joy with this?

My mate installed it and said when he posts a result as an added clan the result gets posted wrong and gets all twisted then errors are returned (script errors).

If it is too much trouble mate let me know and i will not bug you with it was just hoping it could be used but if there is a chance it is fooked then forget it :D

Just thought it would be a nice little addition. Dont Know
 

 
View user's profileSend private messageVisit poster's websiteMSN Messenger Reply with quote

Ped
Reputation: 450.3
votes: 17
Local time: 1:34 PM
Location: Great British Empire
uk.gif

Status: Offline
2.93 posts per day
Medals: 2 (View more...)
Forums MoD (Amount: 1)
Clan Themes Theme Guru
Clan Themes Theme Guru
Joined: Nov 13, 2006
Last Visit: 04 Jul 2008
Posts: 1759
Points: 8422 

Post Re: PHPBB Rivals mod for forum Posted: Mon Apr 30, 2007 6:23 pm   

I sort of got it 80% converted but i ran into some problems... so i gave it a rest...

Just never picked it back up since ... its a beast of a conversion
 

 
View user's profileSend private messageSend e-mail Reply with quote

fext
Reputation: 463.4
Local time: 12:34 PM
Location: The Unknown
uk.gif

Status: Offline
0.21 posts per day
Medals: 0

Joined: Mar 26, 2007
Last Visit: 17 Sep 2007
Posts: 100
Points: 1494 

Post Re: PHPBB Rivals mod for forum Posted: Mon Apr 30, 2007 8:56 pm   

Shop Purchases:
Multi Gaming (Warrior) Theme · Clan Roster v1.7 Php Nuke Module ·  · Clan Themes Green PhpNuke Theme

Ped wrote:
I sort of got it 80% converted but i ran into some problems... so i gave it a rest...

Just never picked it back up since ... its a beast of a conversion


Could you sell it to members?

Would it be worth the trouble then?

I would happily pay money for it fella - for you to get it working and for you to sell it on site? Devil
 

 
View user's profileSend private messageVisit poster's websiteMSN Messenger Reply with quote




shixter
Reputation: 483.9
votes: 1
Local time: 6:34 AM
Location: Oklahoma, USA
usa.gif

Status: Offline
0.22 posts per day
Medals: 0

Joined: Feb 06, 2007
Last Visit: 13 Apr 2008
Posts: 113
Points: 2683 

Post Posted: Tue May 01, 2007 5:55 am   

WoW! This one looks hard. Looks to be something where tables are going to have to be recreated including the nuke user permissions that were already there and adding the new stuff. Looks like it is going to have to be pretty distro specific (well, concerning a couple distros).

This will be one for the books. Ped, let me know if you need a testing site for this. I have much room for DB and file space. Let me know what nuke versions you wanna test it with. I am willing to help in any way that I can.
 

 
View user's profileSend private messageVisit poster's websiteAIM AddressYahoo MessengerMSN Messenger Reply with quote

Ped
Reputation: 450.3
votes: 17
Local time: 1:34 PM
Location: Great British Empire
uk.gif

Status: Offline
2.93 posts per day
Medals: 2 (View more...)
Dedicated User (Amount: 1)
Clan Themes Theme Guru
Clan Themes Theme Guru
Joined: Nov 13, 2006
Last Visit: 04 Jul 2008
Posts: 1759
Points: 8422 

View user's profileSend private messageSend e-mail Reply with quote

fext
Reputation: 463.4
Local time: 12:34 PM
Location: The Unknown
uk.gif

Status: Offline
0.21 posts per day
Medals: 0

Joined: Mar 26, 2007
Last Visit: 17 Sep 2007
Posts: 100
Points: 1494 

Post Re: Posted: Tue May 01, 2007 9:19 am   

Shop Purchases:
Multi Gaming (Warrior) Theme · Clan Roster v1.7 Php Nuke Module ·  · Clan Themes Green PhpNuke Theme

Ped wrote:
Yeah i started totallt re-writing it and re aranging it from scratch, and the SQL tables needed doing too !

Ill have another look


Thanks guys - will you sell it?

I think it may be a popular purchase!

I know the price will depend on the amount of work involved too so please let me know!
 

 
View user's profileSend private messageVisit poster's websiteMSN Messenger Reply with quote

Cama
Reputa