PHP Forums Archive

upload with curl

Tags: php, upload, htaccess, file size

bharanikumarphp posted on 2008-03-28 12:11:25 #

dear friends
i want upload more then 10 mb file.
tell any idea..
leave these steps..
and tell different..

1.my server in remote place i cant change the upload _max_size in php.ini..so leave this option..
2.using ini_get or ini_set like these method also leave..

tell somthing different..
is there any way through file operation or using curl..

plz tell your idea
thanks in advance.

bharanikumar

Comments / discussions

Olaf posted on 2008-03-28 12:22:11 #

try inside a .htaccess file:

php_value max_upload 10m

bharanikumarphp posted on 2008-03-28 12:53:44 #

Quote from: Olaf
"try inside a .htaccess file:
php_value max_upload 10m"

may i know
where i have to write this code

Olaf posted on 2008-03-28 12:58:44 #

...just create a file named ".htaccess" in the directory where the uploaded files need to go and place this code in that file.

bharanikumarphp posted on 2008-04-01 08:24:47 #

no need of

<ifmodule xx.c>

php_value max_upload 10m"

<ifmodule >

Olaf posted on 2008-04-01 08:27:19 #

no, it's not required

bharanikumarphp posted on 2008-04-01 08:43:49 #

i tell u my file location

(upload)= directory name
upload.html

upload.php

(songs)=folder->here after file uploaded ..then that files are stored into this songs folder..

file>.htacces ..you file inside the songs folder..
still not working

upload.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>

<body>
<form action="upload.php" method="post" enctype="multipart/form-data">
<p>
<label for="file">Select a file:</label> <input type="file" name="userfile" id="file">
<button>Upload File</button>
<p>
</form>
</body>
</html>

upload.php

<?php
// Configuration - Your Options
$allowed_filetypes = array('.jpg','.mpeg','.gif','.bmp','.png','.mp3'); // These will be the types of file that will pass the validation.
$max_filesize = 6524288; // Maximum filesize in BYTES (currently 0.5MB).
$upload_path = './files/'; // The place the files will be uploaded to (currently a 'files' directory).

$filename = $_FILES['userfile']['name']; // Get the name of the file (including file extension).
$ext = substr($filename, strpos($filename,'.'), strlen($filename)-1); // Get the extension from the filename.

// Check if the filetype is allowed, if not DIE and inform the user.
if(!in_array($ext,$allowed_filetypes))
die('The file you attempted to upload is not allowed.');

// Now check the filesize, if it is too large then DIE and inform the user.
if(filesize($_FILES['userfile']['tmp_name']) > $max_filesize)
die('The file you attempted to upload is too large.');

// Check if we can upload to the specified path, if not DIE and inform the user.
if(!is_writable($upload_path))
die('You cannot upload to the specified directory, please CHMOD it to 777.');

// Upload the file to your specified path.
if(move_uploaded_file($_FILES['userfile']['tmp_name'],$upload_path . $filename))
echo 'Your file upload was successful, view the file here'; // It worked.
else
echo 'There was an error during the file upload. Please try again.'; // It failed :(.

?>

<br>
Back

.htaccess

php_value max_upload 10m"

..i uploaded these file and all to my server..
but not worked..
what i do

Olaf posted on 2008-04-01 08:49:34 #

has the target directory the right permissions? (chmod 777)

bharanikumarphp posted on 2008-04-01 08:59:14 #

even i added these code in that .htacces but still failure..

php_value post_max_size 55M
php_value upload_max_filesize 50M
php_value max_execution_time "3600"
php_value memory_limit 55M
php_value max_input_time "3600"

bharanikumarphp posted on 2008-04-01 08:59:54 #

even i added these code in that .htacces but still failure..

php_value post_max_size 55M
php_value upload_max_filesize 50M
php_value max_execution_time "3600"
php_value memory_limit 55M
php_value max_input_time "3600"

this code also will work in linux server know??...

Olaf posted on 2008-04-01 09:18:08 #

which error do you get?

bharanikumarphp posted on 2008-04-01 09:20:38 #

There was an error during the file upload. Please try again.
Back
this is my error

Olaf posted on 2008-04-01 09:26:31 #

it's a permission problem you need to chmod the target directory to 777

bharanikumarphp posted on 2008-04-01 09:29:43 #

i taken the screen shot how to attch to reply..
i show u..
am surly permission set as 777
.

Olaf posted on 2008-04-01 09:31:38 #

maybe you don't have the rights? where do you host?

bharanikumarphp posted on 2008-04-01 09:45:00 #

sir r u looked my code...
in that any changes required..

dont mistake me

am having separate folder in my server..
i did lot of projects sample in that folder..
am sure am having the all rights for upload any thing into the site..

can u send the upload code snipt..shall i try that..

Olaf posted on 2008-04-01 09:48:49 #

use the example as here provided, don't think that I will program for you for free ;)

bharanikumarphp posted on 2008-04-01 10:36:17 #

u r not sent the one class file know...

bharanikumarphp posted on 2008-05-19 05:44:24 #

without my knowledge some of my calic send that..
this time excuse me,and i change my password now,,
thanks