The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Advanced Plugin Manager Details »» | |||||||||||||||||||||||||||||
I no longer support my hacks. Please feel free to update them and release new versions elsewhere as long as I get the credit for the original modification.
/*===================================*\ || Advanced Plugin Manager || || Author : Anton Kanevsky || Co-Author(s) : Andreas || Works on : vBulletin 3.5.x - 4.0.x || Released : Mar 03, 2010 || || Time required to install: ~5 minutes || Difficulty: easy \*===================================*/ DESCRIPTION This product makes it somewhat easier to use the plugin system when you have a lot of products installed. The original version of this hack has been written by Andreas. This is a new release that serves the same purpose but has more features and less bugs. STATISTICS File Uploads: 1 File Changes: 2 Products to Install: 1 FEATURES
VERSION HISTORY 3.0.0 [+] Compatible with vBulletin 4.0.x. 2.1.0 [+] Compatible with vBulletin 3.5.x - 3.8.x. [+] Added the "expand / collapse all products" feature. [+] Collapse status is now saved properly between page reloads. 2.0.2 [+] Added support for the new vBulletin 3.6 features. [+] Product version is now displayed in the product list. 2.0.1 [+] Product descriptions are now displayed in the list. [F] Corrected a bug with purple box around collapse buttons in internet explorer. 2.0.0 [F] Save & Reload is now Working Properly [F] Save Active State is now Working Properly [F] No more purposeless control buttons on vbulletin product. [F] Products with no plugins are now shown by the hack. 1.0.0 Original Version by Andreas The installation manual is contained within the attached file. IF YOU LIKE MY HACK, PLEASE CLICK INSTALL Download Now
Screenshots
Show Your Support
|
Comments |
#12
|
||||
|
||||
I uploaded a clean plugin.php from the 4.03 zip & tried saving the active status from plugin.php?do=modify. it worked fine. I did the plugin.php edits & uploaded a clean advplugins.php from your zip. Disabling the whole product works fine. but unchecking a plugin & clicking save active status at the bottom still gives me a white page. the active status does get saved but advplugins.php is not reloaded. not sure what the deal is. thanks for the response |
#13
|
|||
|
|||
i dont have a plugin.php
i looked in the zip file for vb and no plugin.php there either what up with that??? |
#14
|
|||
|
|||
ok, bonehead me...
i renamed the cpadmin directory.. hehehehe |
#15
|
||||
|
||||
ok for some reason it has stopped working, if I changed my admincp folder to a different name could that have done it?
If so what do I edit to fix it? I am running vb 4.0.4 |
#16
|
|||
|
|||
if i recall correctly, you need to edit the config.php file
I think it is in the includes directory not sure of the exact section but I believe it isnt too difficult to find.. just search for admincp |
#17
|
|||
|
|||
Doesn't seem to work with 4.1. After uploading the files and adding the code to plugin.php I get script errors when trying to access the plugin manager.
|
#18
|
||||
|
||||
Ditto
|
#19
|
||||
|
||||
Try it to vbulletin 4.1.3 and not Display Collapse UnCollapse Button
Any Idea????? |
#20
|
||||
|
||||
worked great. thanks for the code.
using 4.1.3 |
#21
|
||||
|
||||
Quote:
find Code:
if ($_REQUEST['do'] != 'download' AND $_REQUEST['do'] != 'productexport') Code:
// ################################## // A.P.M. for vBulletin 3.5.x - 4.0.x by Andreas & Psionic Vision // ################################## if (!isset($_REQUEST['do']) || ($_REQUEST['do'] == 'modify') || ($_REQUEST['do'] == 'product')) { exec_header_redirect('advplugins.php'); } if ($_REQUEST['do'] == 'updateactive') { function plugin_updateactive_handler($buffer) { global $vbulletin; header('Location: advplugins.php' . $vbulletin->session->vars['sessionurl_q']); } ob_start('plugin_updateactive_handler'); } if (is_newer_version('3.8.0', $vbulletin->options['templateversion'])) { if (($_REQUEST['do'] == 'edit') || ($_REQUEST['do'] == 'add')) { function plugin_edit_handler($buffer) { global $vbulletin, $vbphrase; return str_replace( '<input type="reset"', '<input type="submit" class="button" tabindex="1" name="return" value="' . $vbphrase['save'] . ' & ' . $vbphrase['reload'] . '" accesskey="e" /> <input type="reset"', $buffer ); } ob_start('plugin_edit_handler'); $vbulletin->nozip = true; } if (($_REQUEST['do'] == 'update') && isset($_REQUEST['return'])) { function plugin_update_handler($buffer) { global $vbulletin; header('Location: plugin.php?' . $vbulletin->session->vars['sessionurl'] . 'do=edit&pluginid=' . $vbulletin->GPC['pluginid']); } ob_start('plugin_update_handler'); } } // ################################## // A.P.M. for vBulletin 3.5.x - 4.0.x by Andreas & Psionic Vision // End Code // ################################## |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|