Jump to content

500 Internal server error


alchazin

Recommended Posts

Minta bantuanya para master prestashop....
saya sedang belajar buat toko online nih...
saya mentok pada metode pembayaran....
coba pake modul transfer antar bank ataupun modul BCA payment selalu muncul:

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.

More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.


bagaimana cara mengatasinya....
kira2 itu permasalahan di server hostingnya/back office/cpanelnya?
saya menggunakan PS 1.2.5
trims
Link to comment
Share on other sites

  • 4 weeks later...
  • 1 month later...
buat tambahan ilmu saja. Sebenarnya simple solusinya. Chmod folder (folder saja) modules dan bankwire atau turunannya gmbcapayment dll ke 755. terus chmod semua php files (file saja) di dalam folder module pembayaran (bankwire dan turunannya) ke 644. Insya'Allah langsung sembuh.


Terima kasih sudah memberi solusi, tapi tetap saja tidak bisa. Bisa dilihat di http://betashop.ilkomers.info/modules/bankwire/payment.php
Mohon bantuannya
Link to comment
Share on other sites

btw apa tuh permision 777
maaf newbie


ini ada kode php lo mau cmod otomatis
yang akan mencmode sebuah folder beserta sub folder
sekaligus files dalam folder


<?php
  function rchmod($parent, $dmod, $fmod) {
        if (is_dir($parent)) {
                $old = umask(0000);
                chmod($parent, $dmod);
                umask($old);
                if ($handle = opendir($parent)) {
                        while (($file = readdir($handle)) !== false) {
                          if ($file === "." or $file === "..") {
                                        continue;
                                } elseif (is_dir($parent . '/' . $file)) {
                    rchmod($parent . '/' . $file, $dmod, $fmod);
                                } else {
                                        $old = umask(0000);
                                        chmod($parent . '/' . $file, $fmod);
                                    umask($old);
                                }
                        }
                        closedir($handle);
           }
        } else {
                $old = umask(0000);
                chmod($parent, $fmod);
                umask($old);
        }
   }
   rchmod('folder/', 0755, 0644);

?>



Catatan:
ganti pada bagian " rchmod('folder/', 0755, 0644); "

Link to comment
Share on other sites

  • 1 year later...
  • 1 year later...

Server error

The website encountered an error while retrieving http://localhost/asip/prestashop_1.5.3.1/prestashop/adminasip/index.php?controller=AdminHome&token=c4501afe27e3be7877d89d04f360a1e6. It may be down for maintenance or configured incorrectly.

Here are some suggestions:

HTTP Error 500 (Internal Server Error): An unexpected condition was encountered while the server was attempting to fulfill the request.

newbie nih>>> ada yang bisa bantu saya pecahkan masalah ini tidak?localhost saya tidak dapat diakses please n thanks....

Link to comment
Share on other sites

  • 6 months later...

gak usah pusing canya gampang klo muncul pesan itu lagi seperti yg sdh di bahasa di atas kesalahan terjadi pd file .htaccess..... solusi gampang dan langsung mak yus web anda langsung aja ganti file .htaccess  menjadi >>>> xhtaccess dan liat hasilnya kinclong web terbuka kembali....

Link to comment
Share on other sites

  • 7 years later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...