View Single Post
  #33  
Old 10-03-2002, 08:30 AM
Erwin's Avatar
Erwin Erwin is offline
 
Join Date: Jan 2002
Posts: 7,604
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Additional Features (already inbuilt)

1. Password Protect vB FTP.

In "ftp.php", find:

PHP Code:
$use_login    =    true;            // Toggle login system (true/false).
$auto_login    =    true;            // Toggle auto login (true/false).
$username    =    "";    // Set a username
$password    =    "";    // Set a password. 
Enter a username and password in the blank space - it can be ANYTHING you like, it doesn't have to be your real FTP username and password.

This will password protect your vB FTP. You will have to enter that username and password to access this function. This will prevent other admins from accessing your site.

You can set auto login as well using the variables - basically this means that once you log in with this additional username and password, a cookie will be made, so that you will automatic login the next time. By default this is switched on.


2. Toggle functions of FTP on or off.

You can switch on or off each function of vB FTP.

In "ftp.php", find:

PHP Code:
$allow_view    =    true;
$allow_create    =    true;
$allow_edit    =    true;
$allow_rename    =    true;
$allow_delete    =    true;
$allow_download    =    true;
$allow_upload    =    true
It's self explanatory. Change it to "false" if you want to switch that function off.


3. Type of files you can edit.

You can set the filename extension of files you want to be able to edit.

In "ftp.php", find:

PHP Code:
$text_files    =    array(            // Editable files
                               
"txt",
                               
"php",
                               
"phtml",
                               
"php4",
                               
"php3",
                               
"html",
                               
"htm",
                               
"css",
                               
"xml",
                               
"xsl",
                               
"bat",
                               
"log",
                               
"ini",
                               
"inf",
                               
"cfg",
                             ); 
Just add any extension you like to that list. There are other lists as well underneath this that you can customize.

4. Hide files or directories.

You can set files or directories to be hidden.

In "ftp.php", find:

PHP Code:
$ignore_file_strings        =    array(
                                               
".htaccess",
                                             );
$ignore_file_extensions        =    array(
                                               
"foo",
                                               
"bar",
                                             );
$ignore_directory_strings    =    array(
                                               
"secret dir",
                                             ); 
Just add it to the list. It's self-explanatory.


5. Changing the timeout (if you have trouble downloading or uploading large files).

In "ftp.php", find:

PHP Code:
$use_timeout    =    false;
$timeout    =    30
By default, this is switched off. You can turn it on by changing "false" to "true", and entering the timeout figure in seconds.


6. Changing the default directory, and ability to go higher up in directory structure all the way to ROOT directory.

I made the forum directory the highest directory you can access by default. To change the highest directory you can access-

In "ftp.php", find:

PHP Code:

$home_dir    
=    "../"
Change "../" to the default directory you want to open vB FTP in - put in the full path.

For example:

PHP Code:

$home_dir    
=    "/home/site/var/www/html/forums"
To go to the ROOT directory, replace it with this:

PHP Code:

$home_dir    
=    "/"
There you go! Whatever you put as the default directory is the HIGHEST directory you can go up to.

It works. So you can go as high as you want changing that variable.

Enjoy these extra features! They are already in-built in the hack.
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01474 seconds
  • Memory Usage 1,820KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (8)bbcode_php
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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_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
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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
  • showpost_complete