Clan Adverts

Sponsors

CT on Facebook

Latest Product

User Box

Anonymous
38.107.179.218
Nickname:

Password:

Security Code
Security Code
Type Security Code


PND Downloads Feed

Phpnuke Downloads
How to Delete or Reset yo...
How to Delete or Reset your PHPNuke Admin Account
Lost your admin password ?  Cant login to your admin account ? This s...
Back Online & Stuff
Back Online & Stuff
Look at us with our nifty website back up and running… Seriously...
How to edit the admins in...
How to edit the admins in the forums
Here is a way to make someone admin in your forums on your Evo site. I...
Demo Splash Screen
Demo Splash Screen
Ped @ Clan Themes has released a simple splash screen entrance hack. ...
Free Phpnuke Business The...
Free Phpnuke Business Theme 6
This is the 6th Business theme for Phpnuke that Clan Themes has releas...
Tricked Out Slider
Tricked Out Slider
We have seen some great new things come out of Tricked Out News and th...

Custom Work

PHP Nuke Custom Work

www.clanthemes.com :: View topic - PHPBB Rivals mod for forum
PHPBB Rivals mod for forum
Goto page 1, 2  Next

12 Replies / 8649 Views


Post new topic   Reply to topic  

   www.clanthemes.com Forum Index » PHPBB

View previous topic :: View next topic


fext
Reputation: 463.4 Add RepSubtract Rep
Local time: 10:59 AM
Location: The Unknown
uk.gif

Spammer
Spammer

0.05 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: 94 Add RepSubtract Rep
votes: 37
Local time: 11:59 AM
Location: Great British Empire
uk.gif

Site Founder
Site Founder

1.82 posts per day
Medals: 2 (View more...)
Super Dedicated User (Amount: 1)
Theme Guru
Theme Guru
Joined: Nov 13, 2006
Last Visit: 26 May 2012
Posts: 3675
Points: 191995 

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

Shop Purchases:
Clan Roster 2.0 · Bad Company 2 Vietnam Xtreme Theme

Yeah fire it over ill take a quick peek

http://www.clan-themes.co.uk/feedback.html
 

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

fext
Reputation: 463.4 Add RepSubtract Rep
Local time: 10:59 AM
Location: The Unknown
uk.gif

Spammer
Spammer

0.05 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 23, 2007 10:57 am

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

Ped wrote:
Yeah fire it over ill take a quick peek

http://www.clan-themes.co.uk/feedback.html


Sent!
 

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


Ped
Reputation: 94 Add RepSubtract Rep
votes: 37
Local time: 11:59 AM
Location: Great British Empire
uk.gif

Site Founder
Site Founder

1.82 posts per day
Medals: 2 (View more...)
Forums MoD (Amount: 1)
Theme Guru
Theme Guru
Joined: Nov 13, 2006
Last Visit: 26 May 2012
Posts: 3675
Points: 191995 

Post Re: PHPBB Rivals mod for forum Posted: Mon Apr 23, 2007 11:41 am

Shop Purchases:
Clan Roster 2.0 · Bad Company 2 Vietnam Xtreme Theme

hmm this is a big mod, let me look into it and ill get back to you
 

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

Ped
Reputation: 94 Add RepSubtract Rep
votes: 37
Local time: 11:59 AM
Location: Great British Empire
uk.gif

Site Founder
Site Founder

1.82 posts per day
Medals: 2 (View more...)
Super Dedicated User (Amount: 1)
Theme Guru
Theme Guru
Joined: Nov 13, 2006
Last Visit: 26 May 2012
Posts: 3675
Points: 191995 

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

Shop Purchases:
Clan Roster 2.0 · Bad Company 2 Vietnam Xtreme Theme

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 Add RepSubtract Rep
Local time: 10:59 AM
Location: The Unknown
uk.gif

Spammer
Spammer

0.05 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: 94 Add RepSubtract Rep
votes: 37
Local time: 11:59 AM
Location: Great British Empire
uk.gif

Site Founder
Site Founder

1.82 posts per day
Medals: 2 (View more...)
Forums MoD (Amount: 1)
Theme Guru
Theme Guru
Joined: Nov 13, 2006
Last Visit: 26 May 2012
Posts: 3675
Points: 191995 

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

Shop Purchases:
Clan Roster 2.0 · Bad Company 2 Vietnam Xtreme Theme

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 Add RepSubtract Rep
Local time: 10:59 AM
Location: The Unknown
uk.gif

Spammer
Spammer

0.05 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: 484.5 Add RepSubtract Rep
votes: 2
Local time: 4:59 AM
Location: Oklahoma, USA
usa.gif

Spammer
Spammer

0.05 posts per day
Medals: 0

Joined: Feb 06, 2007
Last Visit: 13 Apr 2008
Posts: 106
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: 94 Add RepSubtract Rep
votes: 37
Local time: 11:59 AM
Location: Great British Empire
uk.gif

Site Founder
Site Founder

1.82 posts per day
Medals: 2 (View more...)
Forums MoD (Amount: 1)
Theme Guru
Theme Guru
Joined: Nov 13, 2006
Last Visit: 26 May 2012
Posts: 3675
Points: 191995 

Post Re: Posted: Tue May 01, 2007 6:35 am

Shop Purchases:
Clan Roster 2.0 · Bad Company 2 Vietnam Xtreme Theme

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

Ill have another look
 

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

fext
Reputation: 463.4 Add RepSubtract Rep
Local time: 10:59 AM
Location: The Unknown
uk.gif

Spammer
Spammer

0.05 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
Reputation: 0 Add RepSubtract Rep
Local time: 2:59 PM


Noob
Noob

0.00 posts per day
Medals: 0

Joined: Nov 25, 2007
Last Visit: 23 Jan 2008
Posts: 2
Points: 100 

Post PHPBB Rivals mod for forum Posted: Sun Nov 25, 2007 10:37 pm

Please, help me to find this mod what to download.
Unfortunately on a site of the author there is not a full version mod. There is no main thing - instructions on installation, and can and more there are no files... The Author has stopped support for phpBB2 and continues to develop on phpBB3
Thanks in advance
 

 
View user's profileSend private message Reply with quote

Post new topic   Reply to topic  
   www.clanthemes.com Forum Index » PHPBB


 
12 Replies / 8649 Views
Page 1 of 2
All times are GMT
Goto page 1, 2  Next
Display posts from previous:   
 
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
You cannot attach files in this forum
You can download files in this forum