what is this error?

pascal37

Member
  • Job XF\Job\FileCheck: [E_WARNING] file_put_contents(/home/tamirmas1/public_html/internal_data/file_check/temp-file-check-53.json): akış aktarımıdı: Cihazda yer yoktu

  • ErrorException: Job XF\Job\FileCheck: [E_WARNING] file_put_contents(/home/tamirmas1/public_html/internal_data/file_check/temp-file-check-53.json): Akış açılamadı: aparatta yer yoktu
  • src/vendor/league/flysystem/src/Adapter/Local.php:135
  • Tarafından: Bilinmeyen hesap
  • 24 Eylül 2025 06:16'de

Yığın izleme​

#0 [dahili fonksiyonu]: XF::handlePhpError(2, '[E_WARNING] dosya...', '/home/tamirmas1...', 135)
#1 src/vendor/league/flysystem/src/Adapter/Local.php(135): file_put_contents('/home/tamirmas1...', '{"eksik":[],"...', 2)
#2 src/vendor/league/flysystem/src/Filesystem.php(102): League\Flysystem\Adapter\Local->write('dosya_kontrolü/geçici...', '{"eksik":[],"...', Object(League\Flysystem\Config))
#3 src/vendor/league/flysystem-olay-dosya-sistemi/src/EventableFilesystem.php(430): League\Flysystem\Dosya Sistemi->put('dosya_kontrolü/geçici...', '{"eksik":[],"...', Nesne(League\Flysystem\Config))
#4 src/vendor/league/flysystem-olaylanabilir-dosya-sistemi/src/EventableFilesystem.php(395): League\Flysystem\OlaylanabilirDosya-sistemi\OlaylanabilirDosya-sistemi->callFilesystemMethod('put', Dizi)
#5 src/vendor/league/flysystem-olaylanabilir-dosya-sistemi/src/EventableFilesystem.php(57): League\Flysystem\OlaylanabilirDosya-sistemi\OlaylanabilirDosya-sistemi->delegateMethodCall('put', Dizi)
#6 src/vendor/league/flysystem/src/MountManager.php(597): League\Flysystem\Etkin bulunabilirDosyaSistemi\Etkin bulunabilirDosyaSistemi->put('dosya_kontrolü/geçici...', '{"eksik":[],"...', Dizi)
#7 src/XF/Job/FileCheck.php(190): League\Flysystem\MountManager->put('dosya_kontrolü/geçici...', '{"eksik":[],"...')
#8 src/XF/Job/Manager.php(275): XF\Job\DosyaKontrol->çalıştır(7.98584)
#9 src/XF/Job/Manager.php(205): XF\Job\Manager->runJobInternal(Dizi, 7.98584)
#10 src/XF/Job/Manager.php(89): XF\Job\Manager->runJobEntry(Dizi, 7.98584)
#11 job.php(46): XF\Job\Manager->runQueue(false, 8)
#12 {ana}

Durum böyle​

dizi(4) {
["url"] => dize(8) "/job.php"
["yönlendiren"] => dize(24) " https://tamirmasasi.com/ "
["_GET"] => dizi(0) {
}
["_POST"] => dizi(0) {
}
}
Sil
 
I can't read most of it but it seems (again, my guess) that your file permissions are incorrect.

Try this on your server:
Code:
find /home/tamirmas1/public_html/internal_data/ -type f -print0 | xargs -0 chmod 0777
find /home/tamirmas1/public_html/internal_data/ -type d -print0 | xargs -0 chmod 0777

If that doesn't work, check and change all your permissions:
Code:
find /home/tamirmas1/public_html/ -type f -print0 | xargs -0 chmod 0644
find /home/tamirmas1/public_html/ -type d -print0 | xargs -0 chmod 0755
find /home/tamirmas1/public_html/internal_data/ -type f -print0 | xargs -0 chmod 0777
find /home/tamirmas1/public_html/data/ -type f -print0 | xargs -0 chmod 0777
find /home/tamirmas1/public_html/internal_data/ -type d -print0 | xargs -0 chmod 0777
find /home/tamirmas1/public_html/data/ -type d -print0 | xargs -0 chmod 0777
chmod 0755 /home/tamirmas1/public_html
chown -R nginx:nginx /home/tamirmas1/public_html

Beware, use your webserver user in the last line. It can also be www-data for example (Apache)
 
Last edited:
Back
Top Bottom