| Issue | Solution |
|-------|----------|
| White screen after install | Check PHP memory limit; increase to 512M. |
| "cURL error 60" | Update CA certificates or set curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); in classes/curl.php (temporarily). |
| Downloads fail with 403 | The file host may block your server IP – use a proxy or VPN on the server. |
| Login loop after auth | Clear cookies and ensure session.save_path is writable. |
RapidLeech writes logs, temporary download files, and uploaded zip archives.
cd /var/www/html/rapidleech
sudo mkdir -p files logs tmp backups
sudo chmod 777 files logs tmp backups
sudo chmod 755 configs
sudo chown -R www-data:www-data .
Security note: 777 is weak. For better isolation, run PHP as CGI/FPM and set 0755 + ACLs, but rev 42 expects writable directories. rapidleech v2 rev 42 install
Since Rev 42 is an older build, the built-in "Plugins" (scripts that allow downloading from sites like Mediafire, Mega, etc.) are likely outdated.
RapidLeech’s .htaccess contains security rules. Ensure mod_rewrite works. Test by navigating to http://your-server/rapidleech/check.php – this file verifies cURL, fopen, and memory limits. | Issue | Solution | |-------|----------| | White
Edit configs/accounts.php:
$accounts['rapidgator.net'] = array('user'=>'yourlogin','pass'=>'yourpass');
$accounts['uploaded.net'] = array('user'=>'yourlogin','pass'=>'yourpass');
Go to the Setup or Configs tab once logged in. Security note: 777 is weak
| Requirement | Specification |
| --- | --- |
| Web Server | Apache 2.4+ or Nginx (with PHP-FPM) |
| PHP Version | 7.2 to 7.4 (best), 8.0 (experimental) |
| PHP Extensions | curl, zip, json, mbstring, dom, xml, fileinfo |
| PHP Functions | exec(), shell_exec(), set_time_limit(), allow_url_fopen = On |
| Disk Space | Min 5GB for scripts + temp storage |
| Issue | Solution |
|-------|----------|
| White screen after install | Check PHP memory limit; increase to 512M. |
| "cURL error 60" | Update CA certificates or set curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); in classes/curl.php (temporarily). |
| Downloads fail with 403 | The file host may block your server IP – use a proxy or VPN on the server. |
| Login loop after auth | Clear cookies and ensure session.save_path is writable. |
RapidLeech writes logs, temporary download files, and uploaded zip archives.
cd /var/www/html/rapidleech
sudo mkdir -p files logs tmp backups
sudo chmod 777 files logs tmp backups
sudo chmod 755 configs
sudo chown -R www-data:www-data .
Security note: 777 is weak. For better isolation, run PHP as CGI/FPM and set 0755 + ACLs, but rev 42 expects writable directories.
Since Rev 42 is an older build, the built-in "Plugins" (scripts that allow downloading from sites like Mediafire, Mega, etc.) are likely outdated.
RapidLeech’s .htaccess contains security rules. Ensure mod_rewrite works. Test by navigating to http://your-server/rapidleech/check.php – this file verifies cURL, fopen, and memory limits.
Edit configs/accounts.php:
$accounts['rapidgator.net'] = array('user'=>'yourlogin','pass'=>'yourpass');
$accounts['uploaded.net'] = array('user'=>'yourlogin','pass'=>'yourpass');
Go to the Setup or Configs tab once logged in.
| Requirement | Specification |
| --- | --- |
| Web Server | Apache 2.4+ or Nginx (with PHP-FPM) |
| PHP Version | 7.2 to 7.4 (best), 8.0 (experimental) |
| PHP Extensions | curl, zip, json, mbstring, dom, xml, fileinfo |
| PHP Functions | exec(), shell_exec(), set_time_limit(), allow_url_fopen = On |
| Disk Space | Min 5GB for scripts + temp storage |