• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

hash-extension / pecl-hash

quark

Basic Pleskian
Hi,

I have a SuSE 10.2 server with Plesk 8.3 and I want to install Magento, the latest open-source eCommerce solution.

PHP is compiled with --disable-all, and I guess it disables hash extension which is default in PHP and is required by Zend Framework and by Magento. So, please let me have a steb-by-step procedure of:

How I can enable this hash extension or

how I can install pecl-hash?
 
Hi, I do have the same problem with Plesk 8.4 (1&1 Server) - how did you solve the problem? Does anybody have a tip?
 
1. Check if you have installed php-devel or php5-devel. If not, install it using yast.
2. Install PEAR.
3. Run # pecl install hash.
4. Add in php.ini:
; Enable pecl_hash extension module
extension=hash.so

5. Restart Apache

I think that was all... If is not working, contact me again
 
THANKS!

Hash is thought to be an standard component. Do you know a reason why it's not installed? May this a deeper matter?
 
hash is a component of PECL (see http://pecl.php.net/).

I don't know if is or isn' t a standard component PHP. Surely don't exist in PEAR.

I need hash only for Magento eCommerce.
Magento use adler32 which don't exist in PEAR packages. In fact all other hash function except adler32 (like md5) can be found in PEAR packages.
 
Good find.. i ran into a similar issue .. the first thing i did was change the config of Magento eCommerce to use md5 instead of adler32 .

the quickest way to enable hash support

do it through yast ,go to software management.Then search for hash. follow on screen instruction to install.

It will automatically install for you. need to do nothing :)

restart apache

check php info should have hash support.
 
Back
Top