Page 1 of 4

-- "You didn't pick a file to upload" Allow larger uploads--

PostPosted: Tue Mar 22, 2011 8:00 pm
by andreic
Although I selected the file/files to upload on the server, then the upload starts, but in the end I get the following message:
"You didn't pick a file to upload"

All permissions are setup ok.
What could be the problem?

Re: [bug] "You didn't pick a file to upload"

PostPosted: Tue Mar 22, 2011 8:26 pm
by PeterS
This is not a bug, and that message is caused by several reasons:

1) A file was not selected. (not your case in this situation).
2) PHP.INI values are below the size you set on DFH.

In php.ini change the following values to the limit you set in DFH:

Code: Select all
upload_max_filesize = 2M
post_max_size = 8M


e.g.

Code: Select all
upload_max_filesize = 100M
post_max_size = 100M


OR

if you do not have access to the php.ini file, change the values by using .htaccess, by adding the following values in the .htaccess file located in the dir of the script.

Code: Select all
php_value upload_max_filesize 100M
php_value post_max_size 100M

Re: [SOLVED] [bug] "You didn't pick a file to upload"

PostPosted: Wed Mar 23, 2011 11:49 am
by andreic
Thank you very and sorry. Please move it to the correct place then.

Re: -- "You didn't pick a file to upload" Allow larger uploa

PostPosted: Thu Aug 18, 2011 7:09 pm
by dasistgood
Hi,

I would like to kick the topic. I have a problem with the v1.2 and the flash upload.

I can transfer bigger files than 4mb (standard max_file_size of my host) via a .htaccess edit and the HTML form, but if i use the flash button it keeps saying i didn't select any files (if larger than 4mb).

In de source i found a part where the problem may be, but my knowledge doesn't reach that far if that is even the case. I can;t find the file that contains that code either.

Code: Select all
<script type="text/javascript">
$(function(){
   $('#swfupload-control').swfupload({
      upload_url: "upload.php?do=verify&method=flash",
      file_post_name: 'upfile',
      file_size_limit : "179200", <<<--------------------------------------- this part right here
      file_types : "*",
      file_types_description : "File Types",
      file_upload_limit : 5,
      flash_url : "js/swfupload/swfupload.swf",
      button_image_url : 'js/swfupload/wdp_buttons_upload_114x29.png',
      button_width : 114,
      button_height : 29,
      button_placeholder : $('#button')[0],
      debug: false


Any ideas on how to fix the filelimit for the flashbutton?

Re: -- "You didn't pick a file to upload" Allow larger uploa

PostPosted: Fri Aug 19, 2011 2:02 am
by SamEA
dasistgood wrote:Hi,

I would like to kick the topic. I have a problem with the v1.2 and the flash upload.

I can transfer bigger files than 4mb (standard max_file_size of my host) via a .htaccess edit and the HTML form, but if i use the flash button it keeps saying i didn't select any files (if larger than 4mb).

In de source i found a part where the problem may be, but my knowledge doesn't reach that far if that is even the case. I can;t find the file that contains that code either.

Code: Select all
<script type="text/javascript">
$(function(){
   $('#swfupload-control').swfupload({
      upload_url: "upload.php?do=verify&method=flash",
      file_post_name: 'upfile',
      file_size_limit : "179200", <<<--------------------------------------- this part right here
      file_types : "*",
      file_types_description : "File Types",
      file_upload_limit : 5,
      flash_url : "js/swfupload/swfupload.swf",
      button_image_url : 'js/swfupload/wdp_buttons_upload_114x29.png',
      button_width : 114,
      button_height : 29,
      button_placeholder : $('#button')[0],
      debug: false


Any ideas on how to fix the filelimit for the flashbutton?


The file limit set on the flash uploads, is what you configured DFH in the SettingsCP. Please provide your URL to where DFH is installed, in order for further assistance.

Re: -- "You didn't pick a file to upload" Allow larger uploa

PostPosted: Fri Aug 19, 2011 3:37 pm
by dasistgood
Hmz, strangely enough it seems to work now i'm at home (first try though)...
I haven;t changed any settings during my first post (and when the problem was at hand)... I'll try again at work monday, maybe it's our own network that is causing problems...

Problem solved so far. Unless i reply again the problem is solved for good :). Thanks for the help though.

note, i had the size limit the same in de CP as in the .htaccess (175mb)

Re: -- "You didn't pick a file to upload" Allow larger uploa

PostPosted: Sat Oct 29, 2011 5:33 pm
by aliraza60
I'm trying to upload a file but can upload a file :( and when i upload a mp3 it uploaded. When I'm trying to upload a zip file or large file like 20 MB it stuck during uploading why ?

Re: -- "You didn't pick a file to upload" Allow larger uploa

PostPosted: Wed Jan 25, 2012 6:50 am
by sunshadersg
Mine wont upload either it uploads mp3 but not big files uploadlarge.com?

Re: -- "You didn't pick a file to upload" Allow larger uploa

PostPosted: Wed Jan 25, 2012 7:12 pm
by sunshadersg
fixed it man all I did was create php5.ini change the size :0 http://uploadlarge.com/info.php

Re: [bug] "You didn't pick a file to upload"

PostPosted: Wed Feb 01, 2012 5:55 pm
by vncuibapvn
PeterS wrote:This is not a bug, and that message is caused by several reasons:

1) A file was not selected. (not your case in this situation).
2) PHP.INI values are below the size you set on DFH.

In php.ini change the following values to the limit you set in DFH:

Code: Select all
upload_max_filesize = 2M
post_max_size = 8M


e.g.

Code: Select all
upload_max_filesize = 100M
post_max_size = 100M


OR

if you do not have access to the php.ini file, change the values by using .htaccess, by adding the following values in the .htaccess file located in the dir of the script.

Code: Select all
php_value upload_max_filesize 100M
php_value post_max_size 100M


I do not understand ask for guidance for making the particular thank all ...! I find the php.ini file not found .. and. htaccess is in the script but when put into the 500 error would only further help ...Vietnam to the English major
<Files *.mfh>
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 100M
php_value post_max_size 100M