Assuming you got locked out from the WP Dashboard because you enabled the Force SSL for Dashboard setting, use phpMyAdmin to disable that setting again:
– Log into phpMyAdmin
– Click on the [prefix]options table in the left pane.
– Click on the SQL tab in the right pane.
– Execute: SELECT * FROM [prefix]options WHERE option_name=’itsec_ssl’
– Doubleclick on the serialized data displayed under the option_value column.
– Replace s:5:”admin”;b:1; with s:5:”admin”;b:0;
– Click anywhere outside the serialized data box to save changes.
[prefix] should be substituted with your database tables prefix (eg: wp_).
Needless to say the above procedure is at your own risk and should only be performed after creating a database backup.
dwinden