Proper Way to Generate MD5 Hash for XCache Administration Password with md5sum or PHP Proper Way to Generate MD5 Hash par XCache administrācija paroli ar md5sum vai 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 ir PHP opcode cacher, vairāk pazīstams kā PHP paātrinātājs, kas paātrina PHP-lapām, kas kalpo kā arī samazina tīmekļa servera slodzi. 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 nāk ar interneta lietošanas lapā (admin-lapa) lietotāja saskarne, kas ļauj administratoriem vai webmasters, lai uzraudzītu un darboties PHP opcode kešatmiņa, atmiņas ar izpildes statistiku. 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. Lai izmantotu šo admin-lapu, lietotāja ID un parole ir noteikts php.ini konfigurācijas failu zem xcache.admin.user un xcache.admin.pass parametrs, lai autentificētu http-auth process.
For security purpose, password value entered in xcache.admin.pass has to be the MD5 hash. Drošības nolūkā parole vērtība iekļauta xcache.admin.pass ir MD5 hash. When user go to XCache admin-page, the http-auth will prompt to ask for user name and password credential. Kad lietotājs aiziet uz XCache admin-lapā http-auth rosinās lūgt lietotāja vārdu un paroli credential. 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. Ja MD5 hash vērtību paroli, ko lietotājs vēlas izmantot, un ko uzskata par pareizu, ir nepareizs vienu faktu, tad lietotājs nevar ielogoties admin lapu.
To Uz generate the MD5 hashes radīt MD5 hashes for your desired password for XCache admin-page in PHP.INI, there are plenty of methods. par vēlamo paroli XCache admin-lapā php.ini, tur ir daudz metodes. 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. Šādiem diviem veidiem ir daži vienkāršākais veids, kā iegūt paroli ir MD5 vērtību, neapdraudot drošību, pārraidot paroli pa tīklu vai internetu teksta.
PHP Script PHP skripts
Create a new PHP script page on the webserver, and place the file within a website or virtual directory accessible from Internet: Izveidot jaunu PHP skripta lapu tīmekļa serverī, un vieta failu, kas mājas lapā vai virtu pieejams no interneta:
<?php <? php
echo md5(”password”); echo md5 ( "parole");
?> ?>
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. Pēc glābšanas failu ar jebkuru nosaukumu, pieprasīt to no Web pārlūku, izmantojot savu domēna vārdu un saņemt MD5 hash vērtību paroli un atjaunināt php.ini ar vērtību.
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 ir datorprogramma, kas aprēķina un pārbauda MD5 hashes, un tiek uzstādīta pēc noklusējuma vairumā Unix, Linux un Unix līdzīgu operētājsistēmu vai saderību slāņiem, ieskaitot CentOS, populāro operētājsistēmu web hosts.
To generate MD5 hash value for the password using md5sum, the correct syntax is as follow: Radīt MD5 hash vērtību parole izmantojot md5sum, pareiza sintakse ir šādas:
echo -n “password” | md5sum echo-n "parole" | md5sum
SSH to the server and run above command, the enter the value generate into PHP.INI. SSH uz servera un palaist iepriekš minēto komandu, vērtības radīt stājas php.ini.
In both cases, restart Apache web server after editing PHP.INI to make the changes effective. Abos gadījumos, restart Apache web serveri pēc rediģēšanas php.ini veikt izmaiņas efektivitāti.
IMPORTANT : The page is machine translated and provided "as is" without warranty. SVARĪGI: lapa mašīna iztulkot un pasniegts tàds, "kàds tas ir" bez garantijas. Machine translation may be difficult to understand. Mašīntulkošanas var būt grūti saprast. Please refer to Lūdzu, skatiet original English article oriģināls angļu rakstu whenever possible. kad vien iespējams.
Related Articles Saistītie raksti
- How to Calculate and Generate MD5 Hash Value in Linux and Unix with md5sum Kā aprēķināt un Sagatavot MD5 Hash Vērtība Linux un Unix ar md5sum
- Install XCache PHP Accelerator in Linux by Compiling from Source Install XCache PHP Accelerator Linux Apkopojot no avota
- Run WordPress at Top Fast Speed by Putting Objects and Variables into XCache or eAccelerator Cache Memory (Plugin) Run WordPress Top Fast Speed, liekot objektiem un mainīgos lielumus XCache vai eAccelerator Cache Memory (Plugin)
- Hash Calculator to Get, Compute and Calculate MD5 and SHA1 File Checksum or Hash Value Hash Kalkulators nokļūt, aprēķins un aprēķina MD5 un SHA1 File Kontrolsumma vai Hash Value
- Keep Your Password Safely With MyPadlock Password Manager Keep Your Password droši lietot kopā ar MyPadlock Password Manager
- Remove The Automatic Appearance of Your Password In The Password Box Noņemt Automātiskās izskats savu paroli Password Box
- Trick to Enable and Allow Windows XP and Vista Remote Desktop Login Without Password (or With Blank Null Password) Triks, lai veicinātu un Allow Windows XP un Vista Remote Desktop Login bez paroles (vai ar Blank Null Password)
- Forgot Windows Administrator Password? Aizmirsāt Windows Administrator Password? Ways to Recover and Reset Password in Vista/XP/2003/2K/NT Veidi, lai atgūtu un Atjaunot paroli Vista/XP/2003/2K/NT
- Check File Integrity By Comparing Hash Value with FileVerifier Check File Integrity Salīdzinot Hash Value ar FileVerifier
- Apple iPhone Root Password and Mobile User Password Apple iPhone root parole un Mobile Lietotājs Parole










































December 10th, 2008 02:26 Decembris 10, 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 [...] [...] Serveri powered by cPanel vai Plesk, ja administrators vai webmasters ir kopīgi radītu MD5 hash par paroli, ko lieto in PHP skriptu vai citu interneta [...]
April 24th, 2008 10:24 Aprīlis 24, 2008 10:24
i found many sites that give md5 coding and decoding like es atradu daudzas vietnes, kas dod md5 kodēšana un dekodēšana, piemēram,
http://www.joomlaaa.com/md5-coding-decoding http://www.joomlaaa.com/md5-coding-decoding
i do not know how they can decode md5 Es nezinu, kā viņi var atkodēt MD5
anyone know a script to decode md5? ikviens zina, skriptu atkodēt MD5?
April 22nd, 2008 19:54 Aprīlis 22, 2008 19:54
The correct script is Pareizs skripts ir
Without “” in (). Bez "" in ().