Greg,
After much pain, and relooking at the error log, I found out what my problem with activating mcrypt was due too. Apparently, if I look at my /etc/php.ini file I see the following entries:
extension=imap.so
extension=ldap.so
extension=mysql.so
extension=mcrypt.so [Syslog]
define_syslog_variables = Off
If I edit the main /etc/php.ini file to read:
extension=imap.so
extension=ldap.so
extension=mysql.so
extension=mcrypt.so
[Syslog]
define_syslog_variables = Off
save my changes and do a "service httpd restart", then refresh my phpinfo... Bob's your uncle and mcrypt and mhash show up in the info file just the way they should. Also, my encrypted pages work fine.
The last little issue that I have is that when the server reboots the [Syslog] part is again appended to the mcrypt extention line as above. I don't know where this is coming from so I can resolve it. Do you have any ideas on this?
At least I know that I can run mcrypt now.
Thanks for any reply.
Ed