• 06-05-2023, 00:11:05
    #1
    Daha önceden sorunsuz çalışan web sayfamda bu hatayı alıyorum. ( Bağlantılar doğru. )
    [06-May-2023 00:05:08 Europe/Istanbul] PHP Notice: Trying to access array offset on value of type null in /home/kasenydx/public_html/siteler/themes/2022/controller/giris-yap.php on line 83




    Sorunu çözen kişiye 1 adet, 1 aylık web hosting hediyemdir.
  • 06-05-2023, 00:12:06
    #2
    ana dizinden .httaccess silin içindekileri
  • 06-05-2023, 00:14:26
    #3
    <?php 'den sonra şunu ekleyin.

    ini_set('display_errors',0);
    error_reporting(0);
  • 06-05-2023, 00:15:30
    #4
    Dizi değerin biri yok hatası
  • 06-05-2023, 00:21:16
    #5
    phpc adlı üyeden alıntı: mesajı görüntüle
    <?php 'den sonra şunu ekleyin.

    ini_set('display_errors',0);
    error_reporting(0);
    Bunu nereye ekleyeceğim
  • 06-05-2023, 00:29:30
    #6
    [05-May-2023 21:20:21 UTC] PHP Warning: session_start(): Failed to read session data: files (path: /var/cpanel/php/sessions/alt-php74) in /home/xxx/public_html/siteler/index.php on line 3
    [06-May-2023 00:24:26 Europe/Istanbul] PHP Notice: Trying to access array offset on value of type null in /home/xxxx/public_html/siteler/themes/2022/controller/giris-yap.php on line 83


    Bu türde 2 hata buldum.
  • 06-05-2023, 00:45:02
    #7
    fatbotter.com
    Misafir adlı üyeden alıntı: mesajı görüntüle
    Bunu nereye ekleyeceğim
    Bu hatayı aldığınız PHP sayfası/dosyasının en üstüne ekleyin.

    Bu hatayı çözmez, sadece gizler.
  • 06-05-2023, 01:51:44
    #8
    lookout adlı üyeden alıntı: mesajı görüntüle
    Bu hatayı aldığınız PHP sayfası/dosyasının en üstüne ekleyin.

    Bu hatayı çözmez, sadece gizler.

    Malesef ki olumsuz.
  • 06-05-2023, 02:05:33
    #9
    fatbotter.com
    [06-May-2023 00:24:26 Europe/Istanbul] PHP Notice: Trying to access array offset on value of type null in /home/xxxx/public_html/siteler/themes/2022/controller/giris-yap.php on line 83

    83. satırda kontrol edilen değişkeni kontrol etmeden önce isset ifadesi ekleyebilir misiniz?

    Örnek:
    if(isset($kontroledilendegisken)){
    
    if ($kontroledilendegisken == 5){
    // yapılacak işlemler
        }
    
    }