Nieuw lid |
|
Hoi!
Ik wil via een FTP class een bestand uploaden.
Dit werkt echter niet, de andere functies werken wel naar behoren
test bestand
<?php
error_reporting(E_ALL ^ E_NOTICE);
include_once('ftp.class.php');
$ftp = new FTPSocket();
if($ftp->connect('ftp.***.nl', '***', '***'))
{
var_dump($ftp->chmod('/public_html/', 0777));
var_dump($ftp->chmod('/public_html/media/', 0777));
var_dump($ftp->store('/public_html/media/', 'logo.jpg'));
}
?>
<?php include_once('ftp.class.php'); $ftp = new FTPSocket(); if($ftp->connect('ftp.***.nl', '***', '***')) { var_dump($ftp->chmod('/public_html/', 0777)); var_dump($ftp->chmod('/public_html/media/', 0777)); var_dump($ftp->store('/public_html/media/', 'logo.jpg')); } ?>
Nu de ftp class:
http://www.plaatscode.be/17026/
Ik krijg de hele tijd een FALSE terug, wat ik ook doe :-S
Iemand een idee?
Afbeelding is 3kb groot, dus daar ligt het niet aan
Alvast bedankt!
|