viewtopic.php?p=127968#127968
If you've got the above error then this should help you:
(it should also help when EM suddenly stops during the installation)
Code: Select all
#
#-----[ OPEN ]---------------------------------------------
#
# NOTE! If you already installed EM then you need to change the file:
# admin/em_includes/em_cipher.php
#
# NOTE! If you want to (re)install then change the file:
# admin/mods/easymod/em_includes/em_cipher.php
#
admin/mods/easymod/em_includes/em_cipher.php
#
#-----[ FIND ]---------------------------------------------
#
$encrypted = addslashes( $encrypted) ;
#
#-----[ REPLACE WITH ]---------------------------------------------
#
// $encrypted = addslashes( $encrypted) ;
#
#-----[ FIND ]---------------------------------------------
#
$encrypted = str_replace( "\'", "NUTTICK", $encrypted) ;
#
#-----[ REPLACE WITH ]---------------------------------------------
#
// $encrypted = str_replace( "\'", "NUTTICK", $encrypted) ;
#
#-----[ FIND ]---------------------------------------------
#
$encrypted = utf8_encode($encrypted);
#
#-----[ REPLACE WITH ]---------------------------------------------
#
// $encrypted = utf8_encode($encrypted);
$encrypted = urlencode($encrypted);
#
#-----[ FIND ]---------------------------------------------
#
$ciphertext = utf8_decode($ciphertext);
#
#-----[ REPLACE WITH ]---------------------------------------------
#
// $ciphertext = utf8_decode($ciphertext);
$ciphertext = urldecode($ciphertext);
#
#-----[ FIND ]---------------------------------------------
#
$ciphertext = str_replace( 'NUTTICK', "'", $ciphertext) ;
#
#-----[ REPLACE WITH ]---------------------------------------------
#
// $ciphertext = str_replace( 'NUTTICK', "'", $ciphertext) ;