• 11-11-2022, 00:04:58
    #1
    Merhabalar,

    Yüklemek istediğim bir laravel sistem var ancak yükleme başlarken forodaki hatayı alıyorum, nasıl çözebilirim ?
    Ya da yüklemeye yardımcı olabilecek birisi var mı ?

    Teşekkür ederim

  • 11-11-2022, 00:33:27
    #2
    $filePath değişkeni tanımlanmamış ondan hata veriyor.

    $disk->get($filePath )
    $disk->get($thumbFilePath)
    şeklinde değiştirip dener misiniz?
  • 11-11-2022, 00:41:19
    #3
    uzmanforum adlı üyeden alıntı: mesajı görüntüle
    $filePath değişkeni tanımlanmamış ondan hata veriyor.

    $disk->get($filePath )
    $disk->get($thumbFilePath)
    şeklinde değiştirip dener misiniz?
    Malesef olmadı

    public_html/vendor/laravel/framework/src/Illuminate/Filesystem/FilesystemAdapter.php on line 253 buradaki kod ;

        public function get($path)
        {
            try {
                return $this->driver->read($path);   //253 burası
            } catch (UnableToReadFile $e) {
                throw_if($this->throwsExceptions(), $e);
            }
        }
  • 11-11-2022, 00:48:43
    #4
    Hocam methodun kullanıldığı yerde dosya yolu belirtilmemiş yani paramatre boş gönderilmiş o yüzden hata veriyor. Onu bulup boş göndermemesini sağlamalısınız.
  • 11-11-2022, 00:51:41
    #5
    uzmanforum adlı üyeden alıntı: mesajı görüntüle
    Hocam methodun kullanıldığı yerde dosya yolu belirtilmemiş yani paramatre boş gönderilmiş o yüzden hata veriyor. Onu bulup boş göndermemesini sağlamalısınız.
    nasıl bulacağım o kısmı ? anydesk üzerinden destek sağlayabilir misiniz ?

    cevaplar için teşekkür ederim


    Kurulum dosyasında böyle yazıyor.

    Launch the Installer


    After you created a database and uploaded the files, simply open up your site in the browser (like http://mysite.com, you will redirect to http://mysite.com/install) and follow on-screen instructions to complete the installation.
    Note: The script doesn't have an "install" folder. The installation is handled by a Controller.

    Installation with Nginx

    • Put all the JobClass package files to your server root, usually /path/to/www/ or /path/to/html/ or /path/to/httpdocs/ or /path/to/public_html/ and set your server configuration like this:
    Copyroot "/path/to/www/public"; location / { try_files $uri $uri/ /index.php?$query_string; }
    • Then restart Nginx.
    • Create a MySQL database, add user to it with full permissions.
    • Go to the script's installation URL. For example http://mysite.com/install
    • And follow the web installation wizard.

    Installation on localhost


    Localde kurdum ama sanalda kuramadım