• Welcome to the Chevereto User Community!

    Here, users from all over the world come together to learn, share, and collaborate on everything related to Chevereto. It's a place to exchange ideas, ask questions, and help improve the software.

    Please keep in mind:

    • This community is user-driven. Always be polite and respectful to others.
    • Support development by purchasing a Chevereto license, which also gives you priority support.
    • Go further by joining the Community Subscription for even faster response times and to help sustain this space

Upload via Phone

Benecore

Chevereto Noob
Hi,
I programming python application for Symbian OS. And i have question how upload the for example screenshot on the phone to Chevereto

Example:
Like this?
Code:
web.com/engine?some data
or how?
THX

I have PHP script that works here is it:
<?php

// read the incoming image data handed over from Python S60 phone
$data = file_get_contents('php://input');

// create a filename based om time and a random number
$nick = strtr($_GET['nick'], '/\\.:\0', '_____');
//$file = strtr($_GET['file'], '/\\.:\0', '_____');
$timestamp = time();
$filename = $nick.'_'.$timestamp.'.jpg';
// $filename = $_FILES["file"]["name"];

// write the file to the server into the directory named beijing
$filepathname = "images/$filename";
$handle = fopen($filepathname, 'wb');
fputs($handle, $data, strlen($data));
fclose($handle);

// return the filename
echo " ".$filename;
?>

How this using to upload via Chevereto

Thank you
 
1.91 doesn't have a decent way to achieve this.. You should try 2.0 instead.
 
Back
Top