Welcome Guest, Not a member yet? Register   Sign In
some wrong with upload
#1

(This post was last modified: 11-19-2016, 07:03 PM by startbbs.)

view file
PHP Code:
<form method="post" action="" enctype="multipart/form-data">
<
input type="file" name="f1">
<
input type="submit" name="submit">
</
form

Controllers file
PHP Code:
    public function upload()
    {
        if(
$_POST){
            
$file $this->request->getFile('f1');
            
$newName $file->getRandomName();
            if (
$file->isValid() && ! $file->hasMoved()){
                
$file->move(WRITEPATH.'uploads'$newName);
            }
        }
        echo 
view('upload');


I got the error

Code:
Method CodeIgniter\HTTP\Header::__toString() must not throw an exception, caught ErrorException: Array to string conversion

May I know where the wrong is? thanks
Q&A for Codeigniter
StartBBS--open-source, light weight forum software.
Best VPS:Digital Ocean
Reply
#2

I fixed this problem. The pull request https://github.com/bcit-ci/CodeIgniter4/pull/308 until now still not merged.
Tafsir NU adalah sebuah aplikasi yang berisi kumpulan kajian kitab kuning yang disampaikan oleh Kiai Nahdhotul Ulama seperti Gus Baha, gus mus, dan kiai lainnya dalam format audio.
Reply
#3

(11-19-2016, 07:54 PM)ridho Wrote: I fixed this problem. The pull request https://github.com/bcit-ci/CodeIgniter4/pull/308 until now still not merged.

Thanks a lot, Ridho.
Q&A for Codeigniter
StartBBS--open-source, light weight forum software.
Best VPS:Digital Ocean
Reply




Theme © iAndrew 2016 - Forum software by © MyBB