500 Internal Server Error?

4 Cevap php

Son zamanlarda, benim httpd sunucusu php + smarty + mysql projemi koydu. Ama diyor bir hatayla karşılaştı:

500 Internal Server Error

Benim OS archlinux ve httpd sunucusu ve php böyle yüklendi:

sudo pacman -S apache php

: Ben şu içeren bir test yerli php dosyası kullanıyorsanız

  <html>
    <head>
    <title>PHP Test Page</title>
    </head>
    <body>
    This is Arch Linux, running PHP.
    <?php
      phpinfo();
    ?>
    </body>
    </html>

o düzgün çalışır. Bu php de çalışabilir söylüyor. Ama neden smarty değil çalışma ile benim projem? Bu sorunla karşılaştı herhangi biri var mı?

4 Cevap

Eğer sağlanan bilgi ile bunu söylemek zor.

Error 500 happens because you did some error in the code that is supposed to produce the page, or the code generates some unhandled exception. My suggestion is to visit the page that gives you the 500 error, and then try to comment out all your code. See if the issue is still present. If not, uncomment the code until you find the critical part that originates the error. Could be anything, a typo, a file not found, a logical error, anything.

Bunları okuyabilir eğer Ayrıca, web sunucusu günlükleri kontrol edin.

Emin Herhangi. Htaccess dosyaları (sözdizimi bilge) doğru olduğundan emin olmak için kontrol edin.

sadece bana oldu ve çözümü yazmak istedim.

Yapılandırılmış Smarty cache dizin (/ var / cache / Smarty) yanlış izinler ile yapılandırılmış, apache süreci bu dizinde dosya oluşturmak gerekiyor.

Bu compile_dir yönergesi ile belirlenen dizin.

BTW, hatalar.log dosya bu hata ile bir şey görünmüyor, Kundakçı 500 Internal Server Error gösterir.

(Bu büyük ölçüde değişir olsa da genellikle, /var/log/httpd/error_log bulunabilir) Apache hata günlüğüne bakın. Bu sunucu hata hakkında daha fazla bilgi sahibi olacaktır.