[Cartoweb-users] File upload in cartoweb

Jacolin Yves yjacolin at free.fr
Wed Jul 19 10:05:20 EDT 2006


Le Mercredi 19 Juillet 2006 15:56, Mathieu Coudert a écrit :
> Hi,
> Implementing a new plugin in order to load Web Map Context in Cartoweb, I'm
> facing troubles using $_FILES['file']..
>
> If somebody has already done an upload in Cartoweb please help me!
>
> I've already modify the form tag : carto_form in Cartoclient.tpl in order
> to set enctype="multipart/form-data" but I don't manage to get information
> about my uploaded file..even if I try to print it by this way :  print_r
> ($_FILES['file']);
> Any idea please?
Hello,
I did it !

I retrieve my data with : 
$this->file = $_FILES["file"]; 
like you did.
Then when I wanted to use it in my method, I wrote :
       $filename=$this->file["name"];
       $filepath=$this->file["tmp_name"];
       //download file in /tmp/
       copy($filepath,"/tmp/".$filename);

And it's working (tm) :-)

Y.

-- 
Yves Jacolin
http://yjacolin.gloobe.org
----
Stagaire Conservatoire Régional des Espaces Naturels de la région Centre
http://cahiersnaturalistes.free.fr/cpnrc/
----
- Qu'est-ce que cela peut faire que je lutte pour la mauvaise cause 
puisque je suis de bonne foi?
- Et qu'est-ce que ça peut faire que je sois de mauvaise foi
puisque c'est pour la bonne cause. (Jacques Prévert)



More information about the Cartoweb-users mailing list