New answers tagged upload
0
Good idea, but you don't have to hack the upload.class.php, you can override the options by passing in an array like this:
$upload_dir = '/some/other/directory/';
$options = array('upload_dir' => $upload_dir);
$upload_handler = new UploadHandler($options);
0
$url = 'http://website.com/linktofile.csv';
$source = file_get_contents($url);
file_put_contents('/path/to/file/newfilename.csv', $source);
thanks to Joel Hinz
2
Something like this, maybe?
$url = 'http://website.com/linktofile.csv';
$source = file_get_contents($url);
file_put_contents('/path/to/file/newfilename.csv', $source);
Edit: Of course, that's just the PHP part. I'm assuming you know how to make an AJAX call already, in jQuery or similarly.
0
import java.io.File;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.HttpVersion;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.mime.MultipartEntity;
import org.apache.http.entity.mime.content.ContentBody;
import ...
0
you are using ; separator so fix that i with something like this it should work, it is not the best way to do it, but thanks @Dave for the hint in how to do it...
if (isset($_POST['process']))
{
echo "<h2>Importing...</h2>";
set_time_limit(60);
$fileResult = move_uploaded_file($_FILES['csv']['tmp_name'], ...
1
Just truncate your table every time its far easier.
This is a basic importer I wrote last night for a friend its only simplistic but you should get the idea. Obviously I use mysqli here so you need to change that bit to suit yours and you also have to add in the truncate at the top (just after the starting import bit will be fine.
if ...
0
You could try this link.
http://blueimp.github.io/jQuery-File-Upload/
This will probably solve your problem.
0
I figured out the problem. There was a small looking but a big mistake. I forgot to put below line at the end of my upload function:
fileStream.Dispose();
Because I didn't disposed the stream object my file was still in use by that object and I think garbage collector was releasing my file after some time that is why I was able to download that later.
1
I can provide the method contract, hope you should be able to build the implementation on top of it. I can provide the implementation as well but idea is to make you learn and not to spoon feed.
public Response uploadPicFile( @FormDataParam("picfile") InputStream mediaFileInputStream);
0
Jquery Uploadify is another good plugin which I have used before to upload files. The js code is as simple as the following:
$('#file_upload').uploadify({
'swf': '/public/js/uploadify.swf',
'uploader': '/Upload.ashx?formGuid=' + $('#formGuid').val(),
'cancelImg': '/public/images/uploadify-cancel.png',
'multi': true,
'onQueueComplete': function ...
0
With getimagesize() like that:
$url = 'http://google.com/images/srpr/logo4w.png';
list($w_src, $h_src, $type) = getimagesize($url);
0
This has already been asked.
What video formats are compatible with the assets library?
Essentially it depends on your device, but I would just stick with H.264 AAC and you will most likely be fine, either way this all depends on your server side to convert the video to a universal format and deliver, this is not so much a mobile / TItanium question.
0
Unfortunately, Google Play does not offer any API that allows you to upload descriptions, screenshots, updated APKs etc.
At best, you could spend a fair amount of time figuring out the various requests they use to insert data into the server, and emulate them from a small Java program. However, this probably isn't worth the trouble, as it would take really ...
0
Nginx supports all http verbs (put, delete, options, etc). So you don't need any special setup in nginx for that.
The following works (I am using php5.4 server to easily test this):
Add this simple testing php script called put.php
$putdata = fopen("php://input", "r");
while ($data = fread($putdata, 1024)) {
echo $data . "\n";
}
Start a php server ...
0
I have some ideas for debugging.
Do a var_dump(file_get_contents('php://input')); instead of an echo. According to the reference:
This function may return Boolean FALSE, but may also return a non-Boolean value which evaluates to FALSE. Please read the section on Booleans for more information. Use the === operator for testing the return value of this ...
1
File name check like this
if (file_exists("YOUR-FOLDER/" . $_FILES["file"]["name"]))
{
//code to rename your file name. Use time() or rand() etc...
}
0
You could create a hash of the file, effectively creating a message digest. Using a low collision algorithm, this would probably work.
You can checkout hash_file in the php manual. If my answer isn't clear enough, you would keep this value in your back-end and then compute a hash and do comparisons each time a user uploaded files into their album. Depends ...
0
I'm on my phone so can't give you an example but I'm pretty sure that you have to use the fullpath as destination.
try __DIR__ . '/'. $path or use document_root
3
This is incorrect:
echo "<img src='" . $img1 . "' alt='image'/>";
^^^^^
You have not defined $img1 anywhere, hence your error. This is also NOT how file uploads are performed in PHP. Given
<tr><td>Image 1</td><td><input name="img1" type="file" /></td></tr>
you will get file upload ...
1
Yes, there are security bugs. The upload filename is controlled by the user:
$filename = explode(".",$_FILES['upload_file']['name']);
$ext = end($filename);
the filename doesn't necessarily have to contain a dot, $ext will be the whole filename
everyting after the last dot will end up in $ext
In both cases $ext can be freely controlled by an attacker, ...
0
just my 2ct. If you chmod a file, then 0666 would be enough in most cases. because 0777 adds 'execute' permission. But on photos, text files files (everything except executables) you don't need 0777.
So in your setup, as I see it - 0666 will be more than enough.
Have a nice day!
0
You are calling the function doFileUpload from the Main UI thread. Android does not allow you to make Network calls on the main thread.
Build an Asynctask and do the upload process of connecting to the network from another thread (in the doInBackground function).
0
I want you to replace your code to this
$fileName = $_POST['fileName'];
if (!$fileName)
{
$fileName = $distFile.rand(1,999)."-".basename($_COOKIE["email"]);
$distFile = dirname(__FILE__).'/audio/'.$fileName.'.wav';
$error = 'N';
$message = 'Your song was uploaded!';
}
else
{
header('Location: http://google.co.uk');
}
1
As per your requirement .... django files upload have two types of uploading.
1 - InMemory Upload
2. Temporary Upload
In case of InMemoryUpload the files you uploaded is in ram only through request.FILES ,
But can set that upload to covert it from InMemoryUpload to TemporaryUpload which ultimately use /tmp folder to store it .. which saves for RAM ...
In ...
0
declare this var:
public int TAKE_PICTURE = 1;
public Uri picUri;
in function openfilechooser(), replace openfilechooser(uploadMsg) with this
mUploadMessage = uploadMsg;
Intent cameraIntent = new Intent("android.media.action.IMAGE_CAPTURE");
Calendar cal = Calendar.getInstance();
cal.getTime();
SimpleDateFormat sdf = new ...
0
Your problem is that you are using bad implementation of a B64. For some reason beyond me the actualy B64 supplied by com.google.appengine.api doesn't work with the apache uploader. Instead you should use this http://iharder.net/base64
0
Apaches module mod_security has a 60kb upload limit by default so any bigger upload will throw a 403 error code.
As the modsec.conf is only editable by the server provider, I add the following line to every root .htaccess:
SecFilterEngine Off
That turned off the mod_security filter in general.
1
Firstly you need to check file exists and is an image, then grab the image with curl, save it then resize. Hope it helps:
Example
<?php
//Test case
$_GET['image_address'] = "https://www.google.com/images/srpr/logo4w.png";
if(isset($_GET['image_address'])){
//Get the size of the image before downloading
$image = curl_get_file_size( ...
0
// How to "download" the image
$data = file_get_contents($address);
// How to get the size of the image file
$size = filesize($address);
// How to get the ext
$parts = explode('.', $address);
$ext= end($parts); // example: C:\fakepath\128.jpg- $ext = jpg
// How to save the image
file_put_contents('save_me.'.$ext, $data);
0
ClientLogin is problematic and will be deprecated soon. Please use OAuth2 and you won't have problems.
0
I am not sure how your site works but when users logins to the site, you can store their usernames through session. You can use these sessions to store, embed or get usernames.
0
When a user logs in, store his user id in a session. Foresee a foreign key 'user_id' in the images table and insert the user id of the logged in user in this table along with the link to the image when he uploads the image.
When displaying the images, you can query the uploaders name of each image.
0
You can pretty easy. Take a look at these posts:
specially for images with demo
just all file type uploads with validation
1
You have not set field name in the do_upload function
if ( ! $this->upload->do_upload("logo"))
{
$error = array('error' => $this->upload->display_errors());
}else{
$image_data = $this->upload->data();
}
And there is one thing wrong you have a if check for logo field and you are trying to get in post why ?? it should be
...
0
if ( ! $this->upload->do_upload(?))
You should set file name as argument to upload function, since it is not default 'userfile'?
-1
Take a look at Simple Ajax Uploader (I'm the primary maintainer):
https://github.com/LPology/Simple-Ajax-Uploader
It's cross-browser (tested in IE7+), and it's free, open-source (MIT license). Feel free to use it in commercial projects.
0
i hope this code is usefull to you
<from .....>
<input type="file" name='xyz' />
</form>
put your your file name in do_upload() function like...
$this->upload->do_upload('xyz');
may be help you.....
0
try that
<?php
class Upload extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->helper(array('form', 'url'));
}
function index()
{
$this->load->view('upload_form', array('error' => ' ' ));
}
function do_upload()
{
$config['upload_path'] = ...
0
BackgroundTranferRequest does not support the Range header. see here
Implement your own upload and download client and you can use Range and also bypass the various size limitations.
0
https://developers.google.com/youtube/v3/guides/uploading_a_video
Found a sample code written in Python to upload videos (using YouTube Data API). I think this is the best resource you can possibly find and just with a little amount of patience you can fully understand that code and translate it to like PHP.
I suggest you get familiar with that API before ...
1
It's hard to tell, because it's a server error not a code error. However, as currently written, you're trying to upload the file called adress.txt to become a file named public_html. I suspect there's already a directory with that name, and the conflict is preventing the upload. Try
upload.UploadFile("ftp://xxx.com/public_html/adress.txt", ...
0
Be sure that the error code is in fact zero (it's the first reason the file isn't there). If it is not zero then you can find information on the error codes PHP - Error Messages Explained
You should check the return value of move_uploaded_file:
$tmp_name = $_FILES["vid1"]["tmp_name"];
$name = "../videos/" . mysql_insert_id() . "b.avi";
...
1
Yes, you can use either the Core SDK:
https://www.dropbox.com/static/developers/dropbox-android-sdk-1.5.4-docs/com/dropbox/client2/DropboxAPI.UploadRequest.html
or the Sync SDK:
https://www.dropbox.com/developers/sync/docs/android#com.dropbox.sync.android.DbxFile
to upload files from Android to Dropbox.
1
I see a few things you may need to do.
First, you are specifying
'SourceFile' => getcwd(),
When I think you probably meant to do
'SourceFile' => $pathToFile,
Second, you are doing var_dump($result); which will probably not show you what you are expecting to see. Try var_dump($result->toArray()); instead, but make sure to checkout the user ...
0
You need to recompile the widgetset (client side code). Normally the eclipse plugin finds newly installed add-ons automatically and asks you to recompile the widgetset at the moment you try to deploy to your application server. You might try to refresh your project first.
You can also manually start the compilation of the widgetset by clicking the vaadin ...
-1
Use GET method
<form name="video_upload_form" method="get" action="videoUp.php" enctype="multipart/form-data">
0
This is a wordpress problem I am gathering. Do you have any error messages?
I found this article which may be helpful:
http://wordpress.org/support/topic/templetic-image-uploader-internal-server-error
Typically upload problems are either an issue of permissions or file zie limitations.
The error message would be most useful
1
give $db['default']['hostname'] as ip address
$db['default']['hostname'] ="254.000.0.0";
or
$db['default']['hostname'] = 'localhost';
try like this
0
Try with localhost like
$db['default']['hostname'] = 'localhost';
May it works and also once check the login credntionals and Db name
Top 50 recent answers are included











