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-03-29, 01:05:50

Author Topic: napa page temporary ?  (Read 12290 times)

0 Members and 1 Guest are viewing this topic.

Offline prandah

  • Senior Member
  • *
  • Posts: 344
  • Karma: +0/-0
    • View Profile
    • https://www.bowo.name
napa page temporary ?
« on: 2013-08-18, 20:08:35 »
halo napa ya saya sering ngalamin gini

The page you are looking for is temporarily unavailable.
Please try again later.
« Last Edit: 1970-01-01, 01:00:00 by Guest »

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: napa page temporary ?
« Reply #1 on: 2013-08-18, 20:18:59 »
php-fpm children kurang dan atau timeout terlalu singkat.
« Last Edit: 1970-01-01, 01:00:00 by Guest »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: napa page temporary ?
« Reply #2 on: 2013-08-18, 20:22:31 »
« Last Edit: 1970-01-01, 01:00:00 by Guest »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
« Last Edit: 1970-01-01, 01:00:00 by Guest »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline prandah

  • Senior Member
  • *
  • Posts: 344
  • Karma: +0/-0
    • View Profile
    • https://www.bowo.name
Re: napa page temporary ?
« Reply #4 on: 2013-08-18, 20:31:27 »
ini setingan php-fpm saya

Code: [Select]
<?php
    $userinfo 
posix_getpwnam($user);

    if (
$user === 'apache') {
        
// MR -- for future purpose, apache user have uid 50000
        
$fpmport 50000;
    } else {
        
$userinfo posix_getpwnam($user);
        
$fpmport = (50000 $userinfo['uid']);
    }

    if (
$user == 'apache') {
        
$pool 'default';
    } else {
        
$pool $user;
    }

    
$startservers '8';
    
$minspareservers '6';
    
$maxspareservers '8';
    
$maxchildren '16';
?>

[<?php echo $pool?>]
#listen = 127.0.0.1:<?php echo $fpmport?>

listen = /home/php-fpm/sock/<?php echo $user?>.sock

listen.backlog = -1
listen.allowed_clients = 127.0.0.1
user = <?php echo $user?>

group = <?php echo $user?>

pm = dynamic
pm.max_children = <?php echo $maxchildren?>

pm.start_servers = <?php echo $startservers?>

pm.min_spare_servers = <?php echo $minspareservers?>

pm.max_spare_servers = <?php echo $maxspareservers?>

pm.max_requests = 1000
;pm.status_path = /status
;ping.path = /ping
;ping.response = pong
request_terminate_timeout = 120s
request_slowlog_timeout = 30s
slowlog = /var/log/php-fpm/slow.log
rlimit_files = 1024
rlimit_core = 0
;chroot =
;chdir = /var/www
catch_workers_output = yes
security.limit_extensions = .php .php3 .php4 .php5

env[HOSTNAME] = $HOSTNAME
env[PATH] = /usr/local/bin:/usr/bin:/bin
env[TMP] = /tmp
env[TMPDIR] = /tmp
env[TEMP] = /tmp

;php_admin_value[sendmail_path] = /usr/sbin/sendmail -t -i -f webmaster@domain.c   om
;php_flag[display_errors] = off
php_admin_value[error_log] = /var/log/php-fpm/error.log
php_admin_value[session.save_path] = /var/lib/php/session
php_admin_flag[log_errors] = on
;php_admin_value[memory_limit] = 64M
« Last Edit: 1970-01-01, 01:00:00 by Guest »

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: napa page temporary ?
« Reply #5 on: 2013-08-18, 20:57:42 »
Lah itu kan templatenya. Kalau hasil jadi ya di /etc/php-fpm.d
« Last Edit: 1970-01-01, 01:00:00 by Guest »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline prandah

  • Senior Member
  • *
  • Posts: 344
  • Karma: +0/-0
    • View Profile
    • https://www.bowo.name
Re: napa page temporary ?
« Reply #6 on: 2013-08-18, 21:08:24 »
so edit untuk max chidren dkk dimana ?
« Last Edit: 1970-01-01, 01:00:00 by Guest »

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: napa page temporary ?
« Reply #7 on: 2013-08-18, 21:11:36 »
Code: [Select]
   $startservers = '8';
    $minspareservers = '6';
    $maxspareservers = '8';
    $maxchildren = '16';
« Last Edit: 1970-01-01, 01:00:00 by Guest »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline prandah

  • Senior Member
  • *
  • Posts: 344
  • Karma: +0/-0
    • View Profile
    • https://www.bowo.name
Re: napa page temporary ?
« Reply #8 on: 2013-08-18, 21:38:23 »
udah solved
oia kenapa ya ketika memakai
apache - nginx proxy ada beberapa .htaccess tidak terbaca ?
misal nya

plugin wordpress satu ini

Code: [Select]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_URI} .(jpg|jpeg|png|gif)$ [NC]
RewriteCond %{REQUEST_URI} !~hotlink-cache [NC]
RewriteCond %{REMOTE_ADDR} !^(127.0.0.1|199.48.164.48)$ [NC]
RewriteCond %{REMOTE_ADDR} !^66.6.(32|33|36|44|45|46). [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www.)?(wallppaer.com|translate.google.com|translate.googleusercontent.com|www.microsofttranslator.co$
RewriteCond %{HTTP_USER_AGENT} !(googlebot|msnbot|baiduspider|slurp|webcrawler|teoma|photon|facebookexternalhit|facebookplatform|pinterest|feed$
RewriteCond %{HTTP_USER_AGENT} !(photon|smush.it|akamai|cloudfront|netdna|bitgravity|maxcdn|edgecast|limelight|tineye) [NC]
RewriteCond %{HTTP_USER_AGENT} !(developers|gstatic|googleapis|googleusercontent|google|ytimg) [NC]
RewriteRule (.*) byrev-wp-picshield.php?key=5MW9-4WGo&src=$1 [L]
</IfModule>
# END WP-PICShield

http://wp-picshield.com/
« Last Edit: 1970-01-01, 01:00:00 by Guest »

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: napa page temporary ?
« Reply #9 on: 2013-08-18, 21:45:27 »
Yakin kalau apache only pasti terbaca dengan benar?.
« Last Edit: 1970-01-01, 01:00:00 by Guest »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline prandah

  • Senior Member
  • *
  • Posts: 344
  • Karma: +0/-0
    • View Profile
    • https://www.bowo.name
Re: napa page temporary ?
« Reply #10 on: 2013-08-18, 21:51:34 »
iya :D
udah saya tested
hanya work di apache only
« Last Edit: 1970-01-01, 01:00:00 by Guest »

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: napa page temporary ?
« Reply #11 on: 2013-08-18, 21:59:40 »
Yah, bisa jadi bug di nginx. Kalau benar ya tinggal tunggu ada yang lapor ke nginx dan dicarikan solusinya sama mereka.
« Last Edit: 1970-01-01, 01:00:00 by Guest »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline prandah

  • Senior Member
  • *
  • Posts: 344
  • Karma: +0/-0
    • View Profile
    • https://www.bowo.name
Re: napa page temporary ?
« Reply #12 on: 2013-08-18, 22:20:13 »
hhahaha jawaban manteph
« Last Edit: 1970-01-01, 01:00:00 by Guest »

Offline MRatWork

  • Administrator
  • The Elite
  • *****
  • Posts: 15,807
  • Karma: +119/-11
  • Gender: Male
    • View Profile
    • MRatWork Forum
Re: napa page temporary ?
« Reply #13 on: 2013-08-18, 22:21:41 »
Quote from: "prandah"
hhahaha jawaban manteph
Kok bukan anda saja yang lapor?.

Kan jadi 'ngetop' tuh di nginx community.
« Last Edit: 1970-01-01, 01:00:00 by Guest »
..:: MRatWork (Mustafa Ramadhan Projects) ::..
-- Server/Web-integrator - Web Hosting (Kloxo-MR READY!) --

Offline prandah

  • Senior Member
  • *
  • Posts: 344
  • Karma: +0/-0
    • View Profile
    • https://www.bowo.name
Re: napa page temporary ?
« Reply #14 on: 2013-08-18, 23:29:09 »
forum nya jarang apdet :D
google.com ajah dulu :D
« Last Edit: 1970-01-01, 01:00:00 by Guest »

 


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

Page created in 0.041 seconds with 21 queries.

web stats analysis