millhugz Posted May 30, 2010 Share Posted May 30, 2010 Hello, when I try to upload a file to mirroruploads.com I get this error: Notice: Undefined offset: -1 in /home2/***/public_html/mirroruploads.com/exec.php on line 30 Warning: mcrypt_decrypt() [function.mcrypt-decrypt]: The IV parameter must be as long as the blocksize in /home2/***/public_html/mirroruploads.com/exec.php on line 5 Can someone help me fix this issue? I thank you ahead of time! Link to comment https://forums.phpfreaks.com/topic/203321-qooy-file-upload-script-error/ Share on other sites More sharing options...
kenrbnsn Posted May 30, 2010 Share Posted May 30, 2010 We're not mind readers. Please post your code. Link to comment https://forums.phpfreaks.com/topic/203321-qooy-file-upload-script-error/#findComment-1065217 Share on other sites More sharing options...
millhugz Posted May 30, 2010 Author Share Posted May 30, 2010 Well.. there are dozens of files for the script.. Link to comment https://forums.phpfreaks.com/topic/203321-qooy-file-upload-script-error/#findComment-1065229 Share on other sites More sharing options...
kenrbnsn Posted May 30, 2010 Share Posted May 30, 2010 The error is pointing to the file exec.php, so post that one between tags. Link to comment https://forums.phpfreaks.com/topic/203321-qooy-file-upload-script-error/#findComment-1065232 Share on other sites More sharing options...
millhugz Posted May 30, 2010 Author Share Posted May 30, 2010 <? /* Product: Qooy.com script Notice: OpenSource should be OpenSource! */ require 'includes/configs.inc.php'; $status = 0; if ((isset ($_POST_DATA['rapidshare']) OR isset ($_POST['rapidshareremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/rapidshare.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['megaupload']) OR isset ($_POST['megauploadremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/megaupload.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['easyshare']) OR isset ($_POST['easyshareremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/easyshare.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['depositfiles']) OR isset ($_POST['depositfilesremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/depositfiles.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['zshare']) OR isset ($_POST['zshareremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/zshare.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['filefactory']) OR isset ($_POST['filefactoryremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/filefactory.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['flyupload']) OR isset ($_POST['flyuploadremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/flyupload.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['sendspace']) OR isset ($_POST['sendspaceremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/sendspace.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['sharedzilla']) OR isset ($_POST['sharedzillaremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/sharedzilla.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['badongo']) OR isset ($_POST['badongoremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/badongo.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['netload']) OR isset ($_POST['netloadremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/netload.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } if ((isset ($_POST_DATA['loadto']) OR isset ($_POST['loadtoremote']))) { exec ('' . $php_path . ' -c ' . $config_ini . ' mirrors/loadto.php ' . $file_uid . ' ' . $status . ' >/dev/null &'); } ?> Link to comment https://forums.phpfreaks.com/topic/203321-qooy-file-upload-script-error/#findComment-1065234 Share on other sites More sharing options...
millhugz Posted May 30, 2010 Author Share Posted May 30, 2010 Okay.. now its not giving an error but also not showing the download links.. Link to comment https://forums.phpfreaks.com/topic/203321-qooy-file-upload-script-error/#findComment-1065236 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.