私はこれで既に1時間30分で戦っていますが、問題は見つかりません。私はCodeIgniterのアップロード機能を使用していますが、それは常にアップロードに失敗する -codeigniterにアップロードされた画像がありません
コントローラ -
// Uploads the picture to server
public function uploadPicture()
{
$this->load->helper(array('form', 'url'));
$this->load->helper('url');
$config['upload_path'] = './images/pictures/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '700';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
$this->upload->do_upload();
if (! $this->upload->do_upload())
{
$data = array('upload_data' => $this->upload->data());
var_dump($data);
//redirect('/profile/changePicture', 'refresh');
}
else
{
redirect('/profile/changePicture', 'refresh');
}
}
ビュー -
私が選択した場合、私はどちらか何の画像を選択していない、または後<form class="fix-this form" method="post" action="/savieno/profile/uploadPicture" enctype="multipart/form-data">
<div class="formfield">
<label id="current-password-error" class="input-error" style="display: none;"></label>
<span class="profile">Tava bilde: </span>
<input id="picture" name="picture" class="with-label" style="width: 270px;" type="file" placeholder="Tava bilde" />
<label>*</label>
</div>
<input type="submit" id="submit" value="Labot Profilu" name="edit" class="fix-this" />
</form>
画像、それは私にdetialsとvar_dumpを与える -
array
'upload_data' =>
array
'file_name' => string '' (length=0)
'file_type' => string '' (length=0)
'file_path' => string './images/pictures/' (length=18)
'full_path' => string './images/pictures/' (length=18)
'raw_name' => string '' (length=0)
'orig_name' => string '' (length=0)
'client_name' => string '' (length=0)
'file_ext' => string '' (length=0)
'file_size' => string '' (length=0)
'is_image' => boolean false
'image_width' => string '' (length=0)
'image_height' => string '' (length=0)
'image_type' => string '' (length=0)
'image_size_str' => string '' (length=0)
何が問題だろうか?
それはどのように失敗するのか?何が起こるのですか?間違いはありますか? – kba
いいえエラーはありません。単にvar_dumpをロードします。コントローラーを確認します。アップロードに失敗した場合は、var_dumpをロードします。それ以外の場合はリダイレクトします。 ;/ –
あなたは '$ this-> upload-> do_upload()'を2回行っています。 – kba