Go Back   vb.org Archive > vBulletin 3 Discussion > vB3 General Discussions
FAQ Community Calendar Today's Posts Search

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 11-26-2007, 09:03 PM
DssCrazy DssCrazy is offline
 
Join Date: Nov 2007
Posts: 136
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default Need a VERY good how too

Hello,

Glad to be here.

I am very new to all this and their are a few hacks i don't understand how to install, i will post them here, can you please break it down as easy as it gets,

Code:
Installation:
======================================================================================================================

1) Add your user ID to the $config['SpecialUsers']['undeletableusers'] variable in the
   vB config.php file so you do not accidentally delete yourself !!!

2) Re-read step one and make sure you do it !!!

3) If you are using an old Self Delete, uninstall it first:
   vB ACP -> Plugins & Products -> Manage Products -> Uninstall Self Delete

4) In the ZIP archive find the /forum directory and note how the directory structure is the
   same as it is on your vB board, so FTP the files inside the Self Delete /forum directories
   into the equivalent vB directories on your server

5) Import the product-self_delete.xml file:
   vB ACP -> Plugins & Products -> Manage Products -> Add/Import Product

6) Go to the vB ACP -> vBulletin Options-> vBulletin Options -> Self Delete Settings and
   set the Self Delete Settings

7) Go to the vB ACP -> Usergroups -> Usergroup Manager and edit each usergroup to
   set the Self Delete Permissions

8) Go to YOUR-SITE.com/YOUR-FORUM/profile.php and look for Delete Account in the side menu

======================================================================================================================
Un-installation:
======================================================================================================================

1) Uninstall the product-self_delete.xml file:
   vB ACP -> Plugins & Products -> Manage Products -> Uninstall Self Delete

2) Delete all the Self Delete files you FTPed during installation from your server

======================================================================================================================
As-is, no warranty of any kind. Make backups. Enjoy!
======================================================================================================================
--------------- Added [DATE]1196118241[/DATE] at [TIME]1196118241[/TIME] ---------------

Code:
Admin Log In As User version 2.4

FOR UPGRADE AND FRESH INSTALLATIONS!

1) Import product-abe1_admin_log_as_user.xml into PRODUCTS. Allow Overwrite "YES" (admincp -> Plugin System -> Manage Products -> [Add/Import Product])

2) Do the template edits

in header:

find:
--------------------------------------------------------------------
<!-- logo -->
--------------------------------------------------------------------

BEFORE place this:
--------------------------------------------------------------------
<!-- Start Admin Log In As User -->
<if condition="$_REQUEST['admin_log_in_as_user'] OR $_COOKIE[COOKIE_PREFIX . 'admin_log_in_as_user']">
	<div align="center" style="color: red; background-color: white; border: 1px solid black; padding:2px"><a href="$vboptions[forumhome].php?$session[sessionurl]&amp;log_out_admin_log_in_as_user=true">$vbphrase[admin_log_out_as_user]</a></div>
</if>
<!-- End Admin Log In As User -->
--------------------------------------------------------------------



in MEMBERINFO:

find:
--------------------------------------------------------------------
<td class="vbmenu_control"><a href="infraction.php?$session[sessionurl]do=report&amp;u=$userinfo[userid]">$vbphrase[give_infraction]</a></td>
--------------------------------------------------------------------

AFTER place this:
--------------------------------------------------------------------
<!-- Start Admin Log In As User -->
	</if>
	<if condition="$show_admin_log_as_user_link">
		<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]u=$userinfo[userid]&amp;admin_log_in_as_user=$userinfo[userid]">$vbphrase[log_in_as_user]</a></td>
<!-- End Admin Log In As User -->
--------------------------------------------------------------------


2) Go to (admincp -> Usergroups -> Administrator Permissions -> [Edit Permissions]) and allow your self to use the hack.


Done.

Click 'install' in the thread you downloaded this from.

Done
--------------- Added [DATE]1196118298[/DATE] at [TIME]1196118298[/TIME] ---------------

Code:
Welcome to the Ban from Thread Mod by FullyTested

This mod allows you to do the following:

1). Ban a user from a thread via the username drop down menu in a post (as well as the admin/mod cp).
	All moderators with banning/unbanning permissions for the forum can use this feature.
	This opens a page which allows you to select a ban period, whether or not to allow the user to view the thread,
	and provide a text message which the user will see when trying to view or reply to the thread.
2). Once you ban the user you are returned to the same post from which you banned.
	You will now notice a small icon besides the ip icon.
	Clicking on that will open a page that will display	the current ban information as well as a list of other threads
	from which this user is banned.
	You will also have the option to edit or lift the ban from here.
	You may now also unban the user from the username drop down menu.
3). From the admin cp you can set whether you wish to have a Private Message sent to the user whenever they are banned/unbanned.
4). You may also view, edit, or lift bans from the admin/mod control panel. Just click on the 'view banned from thread users' link.



Install Instructions:

1). Open 'postings_PHP', 'banning_PHP', 'modcp_index_PHP' and follow the instructions inside to update those files.
2). Open 'postbit_template' and 'postbit_legacy_template' and follow instructions inside those files to update those templates.
3). Open 'cpnav_vbulletin_XML' and follow the instructions inside.
4). FTP the files you have modified in the previous 3 steps to their respective folders.
5). FTP the 2 new cron PHP files, 'optimize_thread_bans.php' and 'remove_thread_bans.php', to the cron folder.
6).	FTP the included 'threadban.gif' image to the buttons folder.
7). Import 'ban_from_thread' XML file (as product) through AdminCP: Plugin System > Manage Products > [Add/Import Product]
8). Go to the 'Ban from Thread' settings options under vBulletin settings, and insert a username to be used for the Private Messaging of banned users.
9). Done.



Thank you for installing this mod.
Sincerely,
FullyTested.
--------------- Added [DATE]1196118354[/DATE] at [TIME]1196118354[/TIME] ---------------

Code:
Force Users to Read a Thread version 1.2

FOR UPGRADE AND FRESH INSTALLATIONS!

1) Import product-abe1_forceusersreadthread into PRODUCTS. Allow Overwrite "YES" (admincp -> Plugin System -> Manage Products -> [Add/Import Product])

2) Do the template edits

in SHOWTHREAD:

find:
--------------------------------------------------------------------
<div><label for="ao_rrd"><input type="radio" name="do" id="ao_rrd" value="removeredirect" />$vbphrase[remove_redirects]</label></div>
--------------------------------------------------------------------

AFTER place this:
--------------------------------------------------------------------
<!-- Start Abe1 Force Users to Read a Thread -->
<div><label for="ao_mfr"><input type="radio" name="do" id="ao_mfr" value="forceread" />$vbphrase[manage_force_thread_reading]</label></div>
<!-- End Abe1 Force Users to Read a Thread -->
--------------------------------------------------------------------



find:
--------------------------------------------------------------------
<option value="removeredirect">$vbphrase[remove_redirects]</option>
--------------------------------------------------------------------

AFTER place this:
--------------------------------------------------------------------
<!-- Start Abe1 Force Users to Read a Thread -->
<option value="forceread">$vbphrase[manage_force_thread_reading]</option>
<!-- End Abe1 Force Users to Read a Thread -->
--------------------------------------------------------------------

Done.

Click 'install' in the thread you downloaded this from.

Done
--------------- Added [DATE]1196118396[/DATE] at [TIME]1196118396[/TIME] ---------------

Code:
Post Thank You Hack version 6.3 for vb 3.6.8

FOR UPGRADE AND FRESH INSTALLATIONS!

1) upload the 'upload via ftp' folder
--------------------------------------------------------------------
post_thanks.php -> \
post_thanks_admin.php -> \admincp\
post_thanks.js -> \clientscript\
functions_post_thanks.php -> \includes\
cpnav_post_thanks.xml -> \includes\xml\
hooks_post_thanks.xml -> \includes\xml\
post_thanks.gif -> \images\buttons\ (and into EVERY "buttons" folder in every style you have)
--------------------------------------------------------------------

2) Import product-post_thanks.xml into PRODUCTS. Allow Overwrite "YES" (admincp -> Plugin System -> Manage Products -> [Add/Import Product])




Click 'install' in the thread you downloaded this from.

Done
--------------- Added [DATE]1196118516[/DATE] at [TIME]1196118516[/TIME] ---------------

Any help on this would be great, i am looking for a very easy step by step for these guides.

Thanks again guys for you great sevices
Reply With Quote
 


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:42 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.09296 seconds
  • Memory Usage 2,461KB
  • Queries Executed 12 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (5)bbcode_code
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (6)post_thanks_box
  • (6)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (6)post_thanks_postbit_info
  • (6)postbit
  • (6)postbit_onlinestatus
  • (6)postbit_wrapper
  • (1)showthread_list
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_threadedmode.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids_threaded
  • showthread_threaded_construct_link
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete