Page 1 of 1

uploading stuck at 100%

PostPosted: Sat May 24, 2014 4:02 pm
by xtremeupload
uploading files of size up to 5 mb was success. but file bigger than 5 mb stucks at 100%. http://xtremeupload.cf/viewer.php?id=716error.bmp
with flash small size files(<5mb) are uploaded successfully but uploading big files(>5mb) gives error "You didn't pick a file to upload"
my .htaccess

<Files *.dfh>
order allow,deny
deny from all
</Files>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/?$ download.php?file=$1 [L]
php_value upload_max_filesize 2024M
php_value post_max_size 2024M

Re: uploading stuck at 100%

PostPosted: Sun May 25, 2014 1:35 am
by Black Phoenyx
Look over: viewtopic.php?f=33&t=266

Let me know if it fixes your issue

Re: uploading stuck at 100%

PostPosted: Sun May 25, 2014 4:11 am
by iheartbreakz
try making a php.ini file with:
post_max_size 2024M
upload_max_filesize 2024M

See if that solves your issue! :)

Make sure you kill all tasks from your hosting control panel after uploading the php.ini file to see if the changes took place

Re: uploading stuck at 100%

PostPosted: Sun May 25, 2014 8:55 am
by xtremeupload
hey at which location i have to put php.ini

Re: uploading stuck at 100%

PostPosted: Sun May 25, 2014 9:13 pm
by iheartbreakz
On the main directory

Re: uploading stuck at 100%

PostPosted: Mon May 26, 2014 12:37 pm
by xtremeupload
didnt worked.

Re: uploading stuck at 100%

PostPosted: Mon May 26, 2014 2:05 pm
by SamEA
Please go to http://xtremeupload.cf/phpinfo.php; see if the post_max_size and upload_max_filesize are set to 2024M. If not, your web hoster might not allow you to modify values via the .htaccess and might provide you with an alternative method of doing so. In this case, please contact your web hoster for further information on how to change the PHP settings in your environment.

Re: uploading stuck at 100%

PostPosted: Mon May 26, 2014 4:16 pm
by xtremeupload
my phpinfo.php
<?php
///////////////////////////////////////////////////////////////////////////
// Product: Daddy's File Host
// Version: 1.2
//
// by DaddyScripts.com
//
// original source code by Jim (j-fx.ws) and Steven (galaxyscripts.com)
//////////////////////////////////////////////////////////////////////////

require_once("./config.php");

session_start();
if(isset($_SESSION['logged_in']) && $_SESSION['logged_in']==md5(md5($adminpass))) {
phpinfo();
}
else{
header('Location: admin.php');
}
?>

Re: uploading stuck at 100%

PostPosted: Mon May 26, 2014 5:40 pm
by iheartbreakz
He is not asking for you to paste the code but rather go to http://www.yoursite.com/phpinfo.php

Re: uploading stuck at 100%

PostPosted: Fri May 30, 2014 9:54 pm
by SamEA
Correct i.e visit http://xtremeupload.cf/phpinfo.php via your web browser and see the values set for post_max_size and upload_max_filesize. :)