1. Halo Guest, pastikan Anda selalu menaati peraturan forum sebelum mengirimkan post atau thread baru.

Cara install webuzo (Free Alternatif CPanel) di CentOS

Discussion in 'Hosting & Domain' started by andhi, Nov 1, 2013.

  1. arest

    arest Super Hero

    Joined:
    May 20, 2008
    Messages:
    2,288
    Likes Received:
    122
    Location:
    Krawu.net Hosting
    itu vps dimana gan? bbrp hari yl cb di do aman dan ini barusan tes di NC jg bisa kok
     
  2. andiklive

    andiklive Super Hero

    Joined:
    Feb 4, 2012
    Messages:
    1,569
    Likes Received:
    103
    Location:
    Kurniawan Technologies
    ada yang prnah ngalamin "Internal Server Error" gak waktu akses file php.
     
  3. ewwink

    ewwink Super Hero

    Joined:
    Apr 27, 2006
    Messages:
    2,836
    Likes Received:
    1,100
    Location:
    Tasikmalaya, Sunda, Indonesia
    itu berhubungan dengan file owner, coba cek _http://www.webuzo.com/wiki/Category:FAQs#Internal_Server_Error

    tambahan buat redirect dari non-www ke www untuk non wordress

    edit /usr/local/apps/nginx/etc/conf.d/webuzoVH.conf ganti dari

    Code:
    server {
            listen          80;
            server_name domain.tld www.domain.tld;
            ........
    }
    menjadi
    Code:
    server {
        listen      80;
        server_name  domain.tld;
        return      301 http://www.domain.tld$request_uri;
    }
    
    server {
            listen          80;
            server_name     www.domain.tld;
    ........
    }
    restart nginx-nya.

    catatan: jika add/remove domain harus edit lagi webuzoVH.conf karena akan balik lagi ke semula
     
    darmagtg likes this.
  4. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    ane udah masukin domainnya. pas di akses kok muncul halaman
    [h=1]Apache 2 Test Page
    [SIZE=-1]powered by[/SIZE] CentOS[/h]gimana cara ngilanginnya. dan mau ganti ke wordpress gimana instal manualnya?
     
  5. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    ternyata halaman 'apache 2 test page' hilang setelah diinstal nginx. nyarinya bingung. akhirnya ketemu juga posisi nginx berada di menu apss-web server-nginx pada panel webuzo.

    ada masalah baru. yg tadinya buka permalink error 404.
    setelah mengganti .htaccess buat worpress seperti langkah yg dishare oleh om ewwink pada halaman 4
    jadinya
    [h=1]500 Internal Server Error[/h]apa lagi yg harus diperbaiki? mohon solusinya.
     
  6. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    oh iya instal wp juga gagal terus karena gak tau user n pass mysql nya. waktu instal juga gak di mintak. defaultnya apa ya?
     
  7. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    belum ada yang jawab juga nih, untuk file .htaccess yg biasa di pake di cpanel apakah bisa langsung di copy dan diterapkan di webuzo? atau ada yg harus di rubah dulu?
     
  8. sulistyo

    sulistyo Ads.id Fan

    Joined:
    Jan 9, 2009
    Messages:
    151
    Likes Received:
    4
    Sepengetahuan ane langsung bisa di copy gan
     
  9. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    letakkan dimananya ya?
    ane liat di tempat installan wordpress juga gak ada file .htaccess
     
  10. andiklive

    andiklive Super Hero

    Joined:
    Feb 4, 2012
    Messages:
    1,569
    Likes Received:
    103
    Location:
    Kurniawan Technologies
    thanks mod, ane kemaren juga lakuin hal yang sama. :senyum:

    file ownernya udah di rubah belum, pake chown -R user:user /home/user/public_html/ lewat console, ane biasanya pake putty
     
  11. ewwink

    ewwink Super Hero

    Joined:
    Apr 27, 2006
    Messages:
    2,836
    Likes Received:
    1,100
    Location:
    Tasikmalaya, Sunda, Indonesia
    nginx tidak support .htaccess sebagai gantinya harus edit langsung rule rewritenya di
    /usr/local/apps/nginx/etc/conf.d/common

    klo .htaccess-nya kostum atau bukan wp harus belajar lagi rule rewritenya hehe.... atau cari nginx portable install di PC otak-atik rewritenya kalau udah bagus baru terapkan di file diatas.
     
  12. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    oh gitu ya, duh harus belajar lagi nih. sama sekali belum tau. pegang vps juga baru kali ini.
    kalau ada yg mau bantu convert kan dari .htaccess ke nginx mantap juga. hehe......
     
  13. ewwink

    ewwink Super Hero

    Joined:
    Apr 27, 2006
    Messages:
    2,836
    Likes Received:
    1,100
    Location:
    Tasikmalaya, Sunda, Indonesia
    ada converternya cari di google klo punya ente hasilnya jadi seperti
    Code:
    location ~ ^/(.*)/(.*)/(.*)\.jpg$ {
      # ganti "/lokasi/www" dengan lokasi folder dimana imgsmall.php berada
      root /lokasi/www;
    
      rewrite ^/(.*)/(.*)/(.*)\.jpg /imgsmall.php?q=$3&offset=$2&size=$1;
    }
     
  14. avatecer

    avatecer Ads.id Fan

    Joined:
    Jul 3, 2012
    Messages:
    170
    Likes Received:
    1
    Location:
    Surabaya
    Kalo webuzo ini cara nambahin litespeed bijimane ya? Kalau ada.yang tau bisa share. Utamanya openlitespeed? Lalu sama dulu saya pernah coba. Tapi sewaktu buat sub domain gagal -_- alias jadi tidak bisa dibuka -_-

    Sent from my C6603 using Tapatalk
     
  15. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    Wah mantap gan, thanks ya tak coba dulu. Kalo gak pake nginx kenapa ya gan? Kalau pake apache aja Tanpa instal nginx. Apakah bisa langsung .htaccessnya di copi seperti di cpanel?

    Sent from my T1J using Tapatalk
     
  16. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    file commonnya udah ane buat seperti ini gan
    Code:
    # Redirect server error pages to the static pages
    error_page 500 502 504  /500.html;
    location = /500.html {
        root    /usr/local/apps/nginx/etc/conf.d;
        internal;
    }
    
    error_page  404            /404.html;
    location = /404.html {
        root    /usr/local/apps/nginx/etc/conf.d;
        internal;
    }
    
    location ~ ^/(.*)/(.*)/(.*)\.jpg$ {
      # ganti "/lokasi/www" dengan lokasi folder dimana imgsmall.php berada
      root /home/alamunib/public_html/gambar.more-explore.com;
    
      rewrite ^/(.*)/(.*)/(.*)\.jpg /imgsmall.php?q=$3&offset=$2&size=$1;
    }
    
    error_page  497            /497.html;
    location = /497.html {
        root    /usr/local/apps/nginx/etc/conf.d;
        internal;
    }
    
    error_page  555 /555.html;
    location = /555.html {
        root    /usr/local/apps/nginx/etc/conf.d;
        internal;
    }
    
    location @maintenance {
        root    /usr/local/apps/nginx/etc/conf.d;
        rewrite ^(.*)$ /noindex.html break;
    }
    
    # Pass the INDEX.PHP script to FastCGI server listening on 127.0.0.1:9178
    location = / {
        fastcgi_read_timeout 3600;
        try_files $uri /index.php /index.html @maintenance;
        fastcgi_pass    127.0.0.1:9001;
        fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param    SCRIPT_NAME          $fastcgi_script_name;
        include            fastcgi_params;
    }
    
    # For userdir
    location ~ ^/~(.+?)(/.*)?$ {
        alias /home/$1/public_html$2;
        index index.html index.htm;
        autoindex on;
    }
    
    # To catch index.php by default
    location ~ (index.php|/)$ {
        fastcgi_read_timeout 3600;
        try_files  $uri $uri/index.php $uri/index.html;
        fastcgi_pass    127.0.0.1:9001;
        fastcgi_param   SCRIPT_FILENAME    $document_root$fastcgi_script_name;
        fastcgi_param   SCRIPT_NAME        $fastcgi_script_name;
        include            fastcgi_params;
    }
                
    # Pass the regular PHP scripts to FastCGI server listening on 127.0.0.1:9179
    location ~ \.php$ {
        fastcgi_read_timeout 3600;
        try_files $uri =404;
        fastcgi_pass    127.0.0.1:9001;
        fastcgi_index    index.php;
        fastcgi_param    SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param    SCRIPT_NAME          $fastcgi_script_name;
        include            fastcgi_params;
    }
    
    location ~ \.pl|cgi$ {
        try_files $uri =404;
        gzip off;
        fastcgi_pass    127.0.0.1:8999;
        fastcgi_index    index.cgi;
        fastcgi_param      SCRIPT_FILENAME    $document_root$fastcgi_script_name;
        fastcgi_param   SCRIPT_NAME     $fastcgi_script_name;
        include         fastcgi_params;
    }
    
    
    tapi masih error not found 404

    apa lagi yg di setting ya......
     
  17. Mr.ucup

    Mr.ucup Super Hero

    Joined:
    Apr 3, 2011
    Messages:
    1,843
    Likes Received:
    59
    Location:
    Marga Ideola
    Minta solusi teman2..

    Ane pake vps ubuntu..

    Posisi udah ane instal nginx..

    Nah..
    Kl mw nginstal webuzo pakr installer.. apa mesti d unsinstal dl semua?

    Soale pad ane baca di web webuzo y.. kl nginstal pake installer itu dah include dengan nginx..

    Sent from my DROID X2 using Tapatalk 2
     
  18. ewwink

    ewwink Super Hero

    Joined:
    Apr 27, 2006
    Messages:
    2,836
    Likes Received:
    1,100
    Location:
    Tasikmalaya, Sunda, Indonesia
    litespeed ga ada di webuzo yg ada nginx, apache, lighttpd.
    udah di restart belum service nginx-nya, bisa lewat panel atau console "service nginx restart".
    harus clean, dihapus dulu nginx, apache, mysql-nya.
     
  19. teukualamsyah

    teukualamsyah Super Hero

    Joined:
    Nov 28, 2010
    Messages:
    1,245
    Likes Received:
    56
    Location:
    Bengkoeloe, Bengkulu, Indonesia, Indonesia
    Udah gan, Malahan webuzonya sekalian yg ane restart. Kl gak pake nginx. Pake Apache biasa apa bisa lgsg copy htaccess yg di cpanel?

    Sent from my T1J using Tapatalk
     
  20. ewwink

    ewwink Super Hero

    Joined:
    Apr 27, 2006
    Messages:
    2,836
    Likes Received:
    1,100
    Location:
    Tasikmalaya, Sunda, Indonesia
    tested pake ini
    Code:
    if ($request_uri ~ "^/(.*)/(.*)/(.*)\.jpg$") {
      rewrite ^/(.*)/(.*)/(.*)\.jpg /imgsmall.php?q=$3&offset=$2&size=$1;
    }
     

Share This Page