Micro Niche Builder
Closed Thread
Results 1 to 6 of 6

Thread: Phpbb help

  1. #1
    Fulltime Member cricket is an unknown quantity at this point
    Join Date
    Nov 2005
    Location
    South east England
    Posts
    972
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Phpbb help

    hi i know there is a mod that allows you to remove all the mods from your table can someone direct me i saw it and i cant find it anymore any help would be appericaited thanks guyz i need to remove some old mods


  2. Micro Niche Builder

  3. #2
    Retired Spyros has a spectacular aura about Spyros has a spectacular aura about
    Join Date
    May 2006
    Location
    Athens, Hellas
    Posts
    1,249
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    If you have EasyMod installed (and your mods installed via easymod) you can easily uninstall them. Actually you don't uninstall them, you just replace the modded files with the original ones.

    If you want REAL uninstallation of a mod, you must reverse the template. For example, take this:

    MOD's template:
    PHP Code:

    #-----[ FIND ]----------------------------------------- 

    $ip_img '<a href="' $temp_url '"><img src="' $images['icon_ip'] . '" alt="' $lang['View_IP'] . '" title="' $lang['View_IP'] . '" border="0" /></a>';


    #-----[ REPLACE WITH ]------------------------------------------ 

       
    if( $userdata['user_level'] == ADMIN 
       { 
         
    $ip_img '<a href="' $temp_url '"><img src="' $images['icon_ip'] . '" alt="' $lang['View_IP'] . '" title="' $lang['View_IP'] . '" border="0" /></a>';

       } 
       else 
       { 
          
    $ip_img ''
       } 
    Reversed one:
    PHP Code:
     #-----[ FIND ]----------------------------------------- 

    if( $userdata['user_level'] == ADMIN 
       { 
         
    $ip_img '<a href="' $temp_url '"><img src="' $images['icon_ip'] . '" alt="' $lang['View_IP'] . '" title="' $lang['View_IP'] . '" border="0" /></a>';

       } 
       else 
       { 
          
    $ip_img ''
       } 


    #-----[ REPLACE WITH ]------------------------------------------ 

    $ip_img '<a href="' $temp_url '"><img src="' $images['icon_ip'] . '" alt="' $lang['View_IP'] . '" title="' $lang['View_IP'] . '" border="0" /></a>'
    If someone has a "cleaner" method, please tell it..

  4. #3
    Fulltime Member cricket is an unknown quantity at this point
    Join Date
    Nov 2005
    Location
    South east England
    Posts
    972
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    no i just want to get rid of the tables and rows added you can just update your phpbb to get rid of the mods you dont want and install some you wnat again

  5. #4
    Master Apprentice imported_megamoose is on a distinguished road
    Join Date
    Sep 2005
    Location
    Megamoose Castle
    Posts
    2,133
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by cricket
    no i just want to get rid of the tables and rows added you can just update your phpbb to get rid of the mods you dont want and install some you wnat again
    Do you mean the tables and rows in the SQL database, or are you talking about tables in HTML. I think you mean you want to remove everything that a mod has done to the datbase?

    Mark

  6. #5
    Fulltime Member cricket is an unknown quantity at this point
    Join Date
    Nov 2005
    Location
    South east England
    Posts
    972
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by megamoose
    Do you mean the tables and rows in the SQL database, or are you talking about tables in HTML. I think you mean you want to remove everything that a mod has done to the datbase?

    Mark
    yeah you hit the nail on the head i want to remove all the changed tables by a mod i saw a mod to do this i think on phpbb.com but i cant seem to find it now.

  7. #6
    Master Apprentice imported_megamoose is on a distinguished road
    Join Date
    Sep 2005
    Location
    Megamoose Castle
    Posts
    2,133
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Well you're going to have to look at the modules's install file. Then see all the changes made and then delete them manually using phpMyAdmin or something taht does the same job

    Mark

Closed Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts