jusis707
It sounds like you have enabled additional repositories, which has been advised NOT TO DO so many times in these forums etc. Otherwise it certainly sounds like you have at least upgraded mysl and php, which has also been said will break your system upon upgrade.
My guess of your best approach is to firstly disable any additional repos,
then run yum update
Refer to
http://wiki.contribs.org/SME_Server:Documentation:FAQ#Which_repositories_should_be_enabledI think you will still have newer and inappropriate package versions installed.
Compare all installed package versions with a known good sme 7.4 install.
Remove the wrong rpms one by one, so as not to totally break your server, using
rpm -e packagename
Then reinstall the current package versions (after resetting your repos to standard) using
yum install packagename
or more simply update everything with
yum update
followed of course by
signal-event post-upgrade
signal-event reboot
yum update will not replace newer packages with older packages, so you must forcibly remove them first.
You can selectivey uninstall packages with
rpm -e packagename
eg
rpm -e php mysql
Only if necessary use
rpm -e -force packagename
You may break something in the process though, and ultimately need to get local access anyway. Proceed with care and think first on the result of your action. If unsure, or you want to prove the theory first, it would be good to try it on a test server first, that has been configured similarly to the live server you are trying to downgrade.