It took me a long time to figure this out but on vShare 2.7 you would need to edit /include/functions_upload.php. Find and delete the code below ( it is past the middle of the file )

Code:
        if ($file_extn == 'flv')
        {
            $log_text = "<h2>MOVING UPLOADED FLV: $video_src => $video_flv</h2>";
            write_log($log_text, $log_file_name, $debug, 'html');
            
            if (! copy($video_src, $video_flv))
            {
                $log_text = 'ERROR: moving uploaded file failed';
                write_log($log_text, $log_file_name, $debug, 'html');
            }
        }
        else
or just change the 'flv' extention to something like 'txt' . It should look like this

Code:
if ($file_extn == 'txt')
I hope this helps.

~zelda180~
www.80TOONS.com