The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
Rank Ordering Details »» | |||||||||||||||||||||||||||||||||
This product will, upon installation, add a column to your "ranks" table labeled "rankorder" and will edit your "/admincp/ranks.php" and "/includes/functions_ranks.php" files so that you may assign display ordering for your defined ranks. The original code is stored as "/admincp/ranks_orig.php" and "/includes/functions_ranks_orig.php" respectively. When uninstalled, your database and files are restored to their original condition.
This add-on utilizes code written by DragonBlade and n8td as posted here: where do I change the order of rank images? This add-on simply automates all of the file edits and the database change into one easy step. When you go to your "User Rank Manager" you will see a new field titled "Rank Order" associated with each defined rank: And when you edit a rank, you will find a new field on the form into which you can set the rank order: Rank ordering can be used to control the order in which your various ranks are displayed in user postbits and profile pages. The smaller the number, the higher in the stack a rank will be displayed. For example, suppose you have a rank for the forum owner(s) and you want this to be on top regardless of the other ranks the owners might have. You could assign this rank a rank order of 0. Then you may have several ranks which indicate a user's position in your staff, such as administrators, global moderators, forum moderators, etc. No one user would have more than 1 of these ranks, and so you could assign these a rank order of 1. This way any of the owners who are also an admin/global mod/mod would have the site owner rank on top and then their staff position rank next. In this manner, you can assign rank orders to completely control the order in which all of your ranks are displayed: Note: Once you edit your ranks to assign the rank order, you must run "update user titles and ranks" in order for the ordering to take effect. Update: version 1.1
Update: version 1.2
Note: If you have not renamed your "admincp" folder, then you don't need to update to v. 1.2. If you edited the v. 1.1 .XML file to use your renamed "admincp" folder, then you also don't need to upgrade to v. 1.2. If you do decide to upgrade to v. 1.2 anyway, then you need to uninstall v. 1.1 first. If you wish to keep the rank ordering you've already defined, then you need to edit the product's uninstall code to remove the following db query: PHP Code:
In AdminCP go to Plugins & Products -> Manage Products -> Add/Import Product. Click on "Choose File" and browse to the product .xml file that was packaged in the .zip file. Click "Import" There are no settings to set, once installed, the product is active. :up: Note: When updating your vB, please follow these steps after completing the upgrade: First, delete the files "/includes/functions_ranks_orig.php" and "admincp/ranks_orig.php". Next, edit the "Rank Ordering" product to remove the uninstall code completely and save it. Then, uninstall the product. Lastly, reinstall the product, and the new PHP files will be backed up and then edited, and you'll be back in business. Support for this product can be found here: Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
Comments |
#52
|
||||
|
||||
Nothing in config.php that would suppress error logging.
grep error config.php returns: Code:
| If you get any errors while attempting to connect to | // If any database errors occur, they will be emailed to the address specified here. // Leave this blank to not send any emails when there is a database error. // may receive collation errors. Ignore this setting unless you |
#53
|
||||
|
||||
Should this be? Two versions of the Install code? Version 1.0 appears complete. Version 1.1 is only a fragment. Not even sure where version 1.1 came from.
|
#54
|
||||
|
||||
Quote:
After I initially released version 1.0, I realized I missed a file edit, so the install code for version 1.1 catches that missing edit. |
#55
|
||||
|
||||
Thank you.
I have verified that folder and file permissions on the server are correct (didn't really think they weren't, but...) The only thing I can come up with as to why this MOD isn't getting installed is either, the php commands are not correct (for our installation), or the relative path to the two files isn't correct. I find both possibilities rather unlikely given the author. I can provide you with my SSH login credentials via separate PMs if you are still inclined to go in and look around. I would like to get this problem resolved so the MOD can actually get installed. |
#57
|
||||
|
||||
I wish that were true here. Still waiting for MarkFL to ascertain why it won't install on our Forum.
|
#58
|
||||
|
||||
The first part of the .xml instructions was executed properly.
Code:
$vbulletin->db->hide_errors(); $vbulletin->db->query_write(" ALTER TABLE`" . TABLE_PREFIX . "ranks` ADD rankorder SMALLINT "); But the remaining code isn't being executed, or is failing, as the two files: ranks.php and functions_ranks.php; are not being backed up or modified. This leaves me to believe that the (php ?) commands aren't correct (for us), or the permissions on the folders and/or .php files are wrong. The folders containing ranks.php and functions_ranks.php are set with permissions 755 (rwxr-xr-x) and the .php files are set with permissions 644. I'm 99.999% confident that these are correct. MarkFL@ I understand that you are quite busy at the moment, so I am more than willing to try and debug this installation issue on my own. When the .xml file is executed, is it PHP that is running the code? |
#59
|
||||
|
||||
Hey Paul,
The only things I can think of that would prevent the files from being altered is either the folder permissions aren't correct, or the files are not located where they need to be. I have installed this product a multitude of times on many sites and never had any issues. However, none of these sites had the "admincp" folder renamed. The install code is PHP, and I have used it on sites running PHP 5.2.x - 7.x. Just to double check, before you install:
|
#60
|
||||
|
||||
Yes, I did that previously, but I'll repeat it again, making sure that the permissions on the created folder and the file put in it are as stated. I'll also ensure that the other file; functions_ranks.php has the indicated permissions.
I'll report back on the results. |
Благодарность от: | ||
MarkFL |
#61
|
||||
|
||||
I'm sad to report that there was no success here. This is the first MOD that has failed to install on our Forum.
I verified the permissions on the created admincp folder, as well as the copy of ranks.php that was put in to it. I verified that the permissions on functions_ranks.php in the includes folder had the right permissions. The MOD simply doesn't get installed. Neither of the .php files gets backed up, and they don't get modified. The database does get the added field, and when I run the uninstall on the MOD, the database is updated to remove the added field. Everything else in the .xml doesn't work for me. I'm still wondering if it's our version of PHP that is the issue. Code:
php -v PHP 5.5.9-1ubuntu4.20 (cli) (built: Oct 3 2016 13:00:37) Copyright (c) 1997-2014 The PHP Group Zend Engine v2.5.0, Copyright (c) 1998-2014 Zend Technologies with Zend OPcache v7.0.3, Copyright (c) 1999-2014, by Zend Technologies Quote:
When I start up PHP interactively (php -a) and execute: $file = file_get_contents('./admincp/ranks.php', FILE_USE_INCLUDE_PATH); I don't get any error message, but the contents of the $file variable doesn't appear to contain anything. When I execute: echo $file or print $file I only get the php prompt. I won't ask you to spend any more time on this; unless you want to. I'm not going to try and manually modify the two files, as I don't have the knowledge to properly understand what the .xml is saying with regards how the two .php files are changed, and I don't want to make a mess of things. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|