Ben aşağıdaki kodu kullanarak Rackspace bulut dosyaya dosya yüklemek için çalışıyorum:
Upload.html
<form action="upload.php" enctype="multipart/form-data" method="POST">
File:
<input name="upload" type="file" />
<input name="submit" type="submit" value="Upload To Rackspace!" />
</form>
Upload.php
<?php
// include the API
require('cloudfiles.php');
// cloud info
$username = ""; // username
$key = ""; // api key
// Connect to Rackspace
$auth = new CF_Authentication($username, $key);
$auth->authenticate();
$conn = new CF_Connection($auth);
// Get the container we want to use
$container = $conn->get_container('resumetune');
// store file information
$localfile = $_FILES['upload']['tmp_name'];
$filename = $_FILES['upload']['name'];
// upload file to Rackspace
$object = $container->create_object($filename);
$object->load_from_filename($localfile);
?>
Şimdi ben gollowing hata alıyorum:
Ölümcül hata: iletisiyle yakalanmamış istisna 'BadContentTypeException' Gerekli set değil Content-Type 'C: \ xampp \ htdocs \ Rackspace \ cloudfiles.php: 1645 Yığın izleme: # 0 C: \ xampp \ htdocs \ Rackspace \ cloudfiles.php (1962): CF_Object-> _guess_content_type ('C: \ xampp \ tmp \ ph ...') # 1 C: \ xampp \ htdocs \ Rackspace \ upload.php (24): CF_Object-> load_from_filename ('C: \ xampp \ tmp \ ph ... ') # 2 {ana} C atılmış: \ xampp \ htdocs \ Rackspace \ cloudfiles.php hattı 1645
Yani herhangi biri bu konuda herhangi bir fikir var mı? şimdiden teşekkürler.