Sponsor:

Server and Web Integrator
Link:
Kloxo-MR logo
6.5.0 or 7.0.0
Click for "How to install"
Donation/Sponsorship:
Kloxo-MR is open-source.
Donate and or Sponsorship always welcome.
Click to:
Click Here
Please login or register. 2024-04-29, 15:42:52

Author Topic: [ASK]Server Error 500 saat buka pertama  (Read 3523 times)

0 Members and 1 Guest are viewing this topic.

Offline kacank87

  • Valuable Member
  • *
  • Posts: 53
  • Karma: +0/-0
    • View Profile
[ASK]Server Error 500 saat buka pertama
« on: 2016-01-31, 16:04:37 »
permisi mastah mau tanya
jadi problemnya sedikit aneh
ketika membuka pertama kali pasti internal server error 500
namun kmudian ketika di refresh lagi baru bisa di buka
trus misal di clear cache terulang lagi pertama kali buka pasti error server 500
itu knp ya mastah ?
ane pke nginxproxy di vps ane
sblmnya saya pke di apache lancar namun pke hosting

berikut url nya http://www.dik-in.science/oAmvy

thanks b4
« Last Edit: 2016-01-31, 16:20:41 by kacank87 »

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: [ASK]Server Error 500 saat buka pertama
« Reply #1 on: 2016-02-01, 01:43:10 »
COba jalankan 'sh /script/fix-chownchmod' dari ssh (atau 'fix-ALL' untuk 'fix ownership and permissions' di 'webserver configure').
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline kacank87

  • Valuable Member
  • *
  • Posts: 53
  • Karma: +0/-0
    • View Profile
Re: [ASK]Server Error 500 saat buka pertama
« Reply #2 on: 2016-02-01, 06:28:53 »
masih tetap mastah
sudah saya coba  :(

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: [ASK]Server Error 500 saat buka pertama
« Reply #3 on: 2016-02-01, 06:56:18 »
Rasanya di http://www.dik-in.science/oAmvy TIDAK ada file index.html atau index.php.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline kacank87

  • Valuable Member
  • *
  • Posts: 53
  • Karma: +0/-0
    • View Profile
Re: [ASK]Server Error 500 saat buka pertama
« Reply #4 on: 2016-02-01, 07:26:08 »

ada gan berikut SS nya

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: [ASK]Server Error 500 saat buka pertama
« Reply #5 on: 2016-02-01, 07:44:20 »
Yang anda maksud akses ke http://www.dik-in.science/ atau http://www.dik-in.science/oAmvy/ ?.

Saya lihat tidak ada masalah dengan http://www.dik-in.science/ tapi bermasalah dengan http://www.dik-in.science/oAmvy/ karena tidak ada index.html atau index.php. Jika /oAmvy/ adalah bentuk prettyURL (secara fisik tidak ada tapi secara logika dikendalikan oleh /index.php dan /.htaccess.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline kacank87

  • Valuable Member
  • *
  • Posts: 53
  • Karma: +0/-0
    • View Profile
Re: [ASK]Server Error 500 saat buka pertama
« Reply #6 on: 2016-02-01, 08:31:17 »
akses ke http://www.dik-in.science/oAmvy/ gan
iya gan saya rasa di .htaccess .
anehnya ini cuma pas pertama buka aja server error
namun setelah itu bisa lagi normal.

berikut isi .htaccess saya
Quote
## Uncomment (remove # ONLY NOT ##) line below if installed in folder and add folder name after /
## Example: Script is installed in /public_html/short/ then it should be: Rewritebase /short
## Then the files below should be (add slash to all): /index.php?action=$1
## Uncomment the code below to Use PHP 5.4
# AddHandler application/x-httpd-php54 .php

#Options -MultiViews

RewriteEngine On

## Uncomment the following line to use the multi-domain feature
# RewriteCond %{HTTP_HOST} ^dik-in\.science$ [NC]
# RewriteRule ^(.*)$ http://dik-in.science/$1 [R=301,L]

#Rewritebase /
## Admin Panel
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^admin/(.*)?$ admin/index.php?a=$1 [QSA,NC,L]

## Sitemap ###
RewriteRule ^sitemap.xml$ sitemap.php

## Application Handler
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)?$ index.php?a=$1   [QSA,NC,L]

## Error 404 ##
ErrorDocument 404 /index.php?a=404
###Start Kloxo PHP config Area
### Please Don't edit these comments or the content in between. kloxo uses this to recognize the lines it writes to the the file. If the above line is corrupted, it may fail to recognize them, leading to multiple lines.
### begin content - please not remove this line

### MR -- attention
### 1. Move '#<Ifmodule !mod_php5.c>' until '#</Ifmodule>' on
###    above '###Start Kloxo PHP config Area'
### 2. Remove # in front of '#<Ifmodule !mod_php5.c>' and '#</Ifmodule>'
###    on point (1)
### 3. Remove # in front of 'AddHandler x-httpd-php52' to activate secondary-php
###    on point (1)
### 4. Or Remove # in front of 'AddHandler x-httpd-php' to activate primary-php
###    on point (1) if select suphp_worker/_event for primary-php

#<Ifmodule !mod_php5.c>
    #AddHandler x-httpd-php52 .php
    #AddHandler x-httpd-php .php
#</Ifmodule>

<Ifmodule mod_php5.c>
    php_value upload_max_filesize 16M
    php_value max_execution_time 180
    php_value max_input_time 180
    php_value memory_limit 64M
    php_value post_max_size 32M
    php_flag register_globals off
    php_flag display_errors off
    php_flag file_uploads on
    php_flag log_errors off
    php_flag output_buffering off
    php_flag register_argc_argv on
    php_flag magic_quotes_gpc off
    php_flag magic_quotes_runtime off
    php_flag magic_quotes_sybase off
    php_flag mysql.allow_persistent off
    php_flag register_long_arrays on
    php_flag allow_url_fopen on
    php_flag cgi.force_redirect on
    php_flag enable_dl on
</Ifmodule>

### end content - please not remove this line

###End Kloxo PHP config Area


Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: [ASK]Server Error 500 saat buka pertama
« Reply #7 on: 2016-02-01, 11:45:55 »
Rasanya anda pakai Kloxo-MR 6.5. Infokan 'sh /script/sysinfo'.
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

 


Top 4 Global Search Engines:    Google    Bing    Baidu    Yahoo
Click Here

Page created in 0.029 seconds with 18 queries.

web stats analysis