Support
I configured php using the following parameters:
Configure Command => './configure' '--with-mcrypt=/usr/local/bin/mcrypt' '--wi
thout-pear' '--enable-debug'
and things appear to be fine.
This message listed below appears in config.status:
*** ATTENTION ***
Something is likely to be messed up here, because the configure
script was not able to detect a simple feature on your platform.
This is often caused by incorrect configuration parameters. Please
see the file debug.log for error messages.
If you are unable to fix this, send the file debug.log to the
[email protected] mailing list and include appropiate
information about your setup.
I issued the following command at the command line:
# find / -name "debug.log"
cphpstd2:/opt/isv/depotii/php-5.2.17
#
As you can see the debug didn't return anything Not sure what to do from here.
The surprising thing is this time the build of php was complete as seen in the
following example:
# alh_test.php
4242424242424242
ZqT0DlOsYrq0k1Q/4UdwYVvrwZSw9yErXuMo+zBoC34=
4242424242424242
Any assistance with this matter would be greatly appreciated.
Thanks
________________________________
The information in this Internet Email is confidential and may be legally
privileged. It is intended solely for the addressee. Access to this Email by
anyone else is unauthorized. If you are not the intended recipient, any
disclosure, copying, distribution or any action taken or omitted to be taken in
reliance on it, is prohibited and may be unlawful. When addressed to our
clients any opinions or advice contained in this Email are subject to the terms
and conditions expressed in any applicable governing The Home Depot terms of
business or client engagement letter. The Home Depot disclaims all
responsibility and liability for the accuracy and content of this attachment
and for any damages or losses arising from any inaccuracies, errors, viruses,
e.g., worms, trojan horses, etc., or other items of a destructive nature, which
may be contained in this attachment and shall not be liable for direct,
indirect, consequential or special damages in connection with this e-mail
message or its attachment.
# vi alh_test.php
#!/usr/local/bin/php
<?php
$DataIn='4242424242424242';
$Algorithm=MCRYPT_RIJNDAEL_256;
$Key="dkuF4vMIzRvl7+O8i4d+X/gkDym+NoUd";
$Mode="ecb";
$IV="gMIeRsjl89/T5+QZziSbxIbpc4aljIRG";
print "\n";
print $DataIn . "\n";
$encrypted_string=mcrypt_encrypt($Algorithm, $Key, $DataIn, $Mode, $IV);
print "\n";
print base64_encode($encrypted_string) . "\n";
$decrypted_string=mcrypt_decrypt($Algorithm, $Key, $encrypted_string, $Mode, $IV
);
print "\n";
print $decrypted_string . "\n";
print "\n";
?>
~