Take a photo and upload it to a website

image
You're right, please send me the upload.php and what are your server parameters?

it was this one

<?php
// Simple PHP script to save image file.

$imgDir = "images/";

$fileName = $_REQUEST['fname'];
//$filename = basename($_FILES["fileToUpload"]["name"]);

$data = file_get_contents('php://input');

$store = file_put_contents($imgDir.$fileName, $data);

if  ($store !== false ) {
echo "File $fileName saved to server, $store bytes\n";
} else {
echo "File $fileName not saved\n";
}
?>

Server parameters ? Check you PMs again.

Why not just something like this:

Okay, thanks. Why don't you send me the example AIA and where I can find the FTP extension?

I did, and by the way, I've only ask a question so far.

How about searching the forum yourself?

Ok!

Hello, checking this upload.php file, no payment server will allow the following instructions for server security reasons:
$data = file_get_contents('php://input');
$store = file_put_contents($imgDir.$fileName, $data);
That's why it doesn't work, and images have to be converted to base64 and then sent as text.

Interesting, but it seems "your paid server will not allow these instructions"

My paid servers (with several different providers) have no such issues...

You will need to work up an upload.php for base64 without file_put..., perhaps ftp IS the alternative?

No FTP, I'll do it with Java and PHP if everything works I'll pass it on to you and make it public so it's useful to others user. :wave:

Try this (working fine here :upside_down_face: ):

<?php
$imgdir = "images/";

$fname = $_REQUEST['fname'];
$img64 = $_REQUEST['img64'];

$img = base64_decode($img64);

$file = fopen($imgdir.$fname, "wb");
fwrite($file,$img);
fclose($file);

if ($file !== false) {
echo "File $fname saved to server, " . filesize($imgdir.$fname). " bytes\n";
} else {
echo "File $fname not saved\n";
}
?>

BLOCKS

Base 64 extension

(note: if you use the KIO4_Base64 extension, you may need to remove all the line endings (\n) from the base64 string)