Proper Way to Generate MD5 Hash for XCache Administration Password with md5sum or PHP Tepat ke jalan untuk Menghasilkan MD5 Hash XCache Administrasi Password atau md5sum dengan PHP
XCache is a PHP opcode cacher, more commonly known as PHP accelerator that speeds up PHP-based web pages serving and reduces web server load. XCache adalah PHP opcode cacher, lebih dikenal sebagai PHP accelerator kecepatan sampai PHP yang berbasis web yang melayani halaman web server dan mengurangi beban. XCache comes with a web-based administration page (admin-page) user interface that allows administrators or webmasters to monitor and operate the PHP opcode cache in the memory with the performance statistics. XCache datang dengan berbasis web halaman administrasi (admin-halaman) yang memungkinkan pengguna webmaster atau administrator untuk memonitor dan mengoperasikan PHP opcode cache dalam memori dengan kinerja statistik. To use this admin-page, an user ID and password have to be defined in PHP.INI configuration file under xcache.admin.user and xcache.admin.pass parameter to authenticate the http-auth process. Untuk menggunakan admin-halaman ini, sebuah user ID dan password harus ditentukan dalam php.ini file konfigurasi di bawah xcache.admin.user dan parameter ke xcache.admin.pass mengotentikasi yang http-auth proses.
For security purpose, password value entered in xcache.admin.pass has to be the MD5 hash. Untuk tujuan keamanan, sandi nilai dimasukkan dalam xcache.admin.pass telah menjadi MD5 hash. When user go to XCache admin-page, the http-auth will prompt to ask for user name and password credential. Ketika pengguna pergi ke halaman admin XCache, yang http-auth prompt akan meminta nama user dan password mandat. If the MD5 hash value for the password that user wants to use and assumed to be correct, is in fact a wrong one, then user will unable to login to the admin-page. Jika nilai hash MD5 password untuk pengguna yang ingin menggunakan dan dianggap benar, dalam satu kenyataan yang salah, maka pengguna akan dapat login ke halaman admin.
To Untuk generate the MD5 hashes menghasilkan MD5 hashes for your desired password for XCache admin-page in PHP.INI, there are plenty of methods. Anda dikehendaki password untuk admin XCache halaman di php.ini, ada banyak metode. The following two ways are some of the simplest way to get the password's MD5 value without compromising security by transmitting password across network or Internet in plain text. Dua cara berikut ini adalah beberapa yang paling mudah untuk mendapatkan password MD5 dari nilai tanpa mengorbankan keamanan oleh sandi transmisi jaringan atau Internet di dalam teks biasa.
PHP Script PHP Script
Create a new PHP script page on the webserver, and place the file within a website or virtual directory accessible from Internet: Buat baru skrip PHP pada halaman web, dan letakkan file tersebut didalam sebuah situs web atau direktori virtual yang dapat diakses dari Internet:
<?php <? php
echo md5(”password”); echo md5 ( "password");
?> ?>
After saving the file with any name, request it from web browser using your domain name and get the MD5 hash value for your password, and update PHP.INI with the value. Setelah menyimpan file dengan nama apapun, permintaan dari browser web menggunakan nama domain Anda dan mendapatkan nilai MD5 hash untuk password, dan update php.ini dengan nilai.
md5sum md5sum
md5sum is a computer program which calculates and verifies MD5 hashes, and is installed by default in most Unix, Linux, and Unix-like operating systems or compatibility layers, including CentOS, the popular operating system for web hosts. md5sum adalah program komputer yang menghitung dan memverifikasi MD5 hashes, dan terinstal secara default pada kebanyakan Unix, Linux, dan sistem operasi mirip Unix atau kompatibilitas lapisan, termasuk CentOS, yang populer untuk sistem operasi web host.
To generate MD5 hash value for the password using md5sum, the correct syntax is as follow: Untuk menghasilkan nilai MD5 hash untuk password menggunakan md5sum, sintaks yang benar adalah sebagai berikut:
echo -n “password” | md5sum echo-n "password" | md5sum
SSH to the server and run above command, the enter the value generate into PHP.INI. SSH ke server dan menjalankan perintah di atas, maka masukkan nilai menghasilkan menjadi php.ini.
In both cases, restart Apache web server after editing PHP.INI to make the changes effective. Dalam kedua kasus, restart Apache web server setelah mengedit php.ini untuk membuat perubahan yang efektif.
IMPORTANT : The page is machine translated and provided "as is" without warranty. PENTING: Halaman yang diterjemahkan mesin dan diberikan "sebagaimana adanya" tanpa jaminan. Machine translation may be difficult to understand. Mesin terjemahan mungkin sulit dimengerti. Please refer to Silakan merujuk ke original English article artikel asli Inggris whenever possible. bila memungkinkan.
Related Articles Artikel Terkait
- How to Calculate and Generate MD5 Hash Value in Linux and Unix with md5sum Cara Hitung dan Menghasilkan MD5 Hash Nilai di Linux dan Unix dengan md5sum
- Install XCache PHP Accelerator in Linux by Compiling from Source Instal PHP XCache Accelerator di Linux oleh kompilasi dari Sumber
- Hash Calculator to Get, Compute and Calculate MD5 and SHA1 File Checksum or Hash Value Hash Kalkulator Mendapatkan, Cara Hitung dan file MD5 dan SHA1 checksum atau Hash Nilai
- Run WordPress at Top Fast Speed by Putting Objects and Variables into XCache or eAccelerator Cache Memory (Plugin) Menjalankan Wordpress di Atas Cepat Kecepatan oleh Menempatkan Objek dan Variabel ke XCache atau eAccelerator Cache Memory (Plugin)
- Keep Your Password Safely With MyPadlock Password Manager Password Anda tetap aman MyPadlock Dengan Password Manager
- Remove The Automatic Appearance of Your Password In The Password Box Hapus otomatis tampilan dari yang Anda Sandi Sandi In The Box
- Check File Integrity By Comparing Hash Value with FileVerifier Cek Integritas File Dengan Membandingkan Hash Nilai dengan FileVerifier
- Trick to Enable and Allow Windows XP and Vista Remote Desktop Login Without Password (or With Blank Null Password) Trick ke Enable dan P'boleh Windows XP dan Vista Remote Desktop Login Tanpa Password (atau Dengan Blank Null Sandi)
- Forgot Windows Administrator Password? Lupa Password Administrator Windows? Ways to Recover and Reset Password in Vista/XP/2003/2K/NT Cara untuk Recover dan Reset Password di Vista/XP/2003/2K/NT
- Apple iPhone Root Password and Mobile User Password Apple iPhone Password Root dan Mobile Pengguna Sandi










































December 10th, 2008 02:26 10 Des 2008 02:26
[...] servers powered by cPanel or Plesk, where administrators or webmasters have to commonly generate MD5 hash for the password used in PHP scripts or other web [...] [...] Server powered by cPanel atau Plesk, dimana administrator dan webmaster harus sering menghasilkan MD5 hash password untuk digunakan pada skrip PHP atau web [...]
April 24th, 2008 10:24 24 Apr 2008 10:24
i found many sites that give md5 coding and decoding like saya menemukan banyak situs yang memberikan md5 coding dan decoding seperti
http://www.joomlaaa.com/md5-coding-decoding http://www.joomlaaa.com/md5-coding-decoding
i do not know how they can decode md5 Saya tidak tahu bagaimana mereka dapat membaca sandi md5
anyone know a script to decode md5? ada yang tahu script untuk membaca sandi md5?
April 22nd, 2008 19:54 22 Apr 2008 19:54
The correct script is Skrip yang benar adalah
Without “” in (). Tanpa "" dalam ().