Password Protect a RapidLeech Installation Print

  • 805

Password Protect a RapidLeech Installation

Adding Password Protection to your Rapidleech really very simple. Here is a quick quide to make your RL password protected :

1) Login to your cPanel and Go to configs folder inside your rapidleech installation via File Manager.
2) You will see a file config.php
3) open this file for editing [in notepad or any other text editor]
4) find the line 'login' => false, [You can use find function in notepad by pressing F3]
5) Replace :
'login' => false,
to
'login' => true,
6) then in the next line, you will see :
'users' => 
  array (
    'test' => 'test',
  ),

7) change first test to your user name, second test to your pass
e.g. 
'semayra' => 'rapidleech',
where vikas is your username and saini is your password.

8) Now, it should look like this :

'users' => 
  array (
    'semayra' => 'rapidleech',
  ),

where vikas is your username and saini is your password.

9) Save this file and your password protection will be active.


Was this answer helpful?

« Back