Thank you all for taking your time to think with me.
Ask your hosting company for a copy of the file or at least any errors that your WordPress installation may be generating.
I will do just that, thanks.
I also tried looking into the config file, its fine.. no spaces before the opening php tag <? I even removed all the blank lines in the functions.php file.. no result.
Tried the php error codes:
error_reporting(E_ALL); ini_set('display_errors', 1);
define( 'WP_DEBUG', true);
in the header.php head …nothing ??
UPDATE!!!!
Since I knew little to nothing about the: define( 'WP_DEBUG', true);
code i googled it.. and guess what, it goes in the wp-config.php file! NOT the header.php…. WHO KNEW!
Thanks so much, after I put it there, and activated an plugin: I got the following error:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 14016 bytes)
YES! Thats what I can an error. And no @#%$@#%^@% blanco screen.
Next step was to figure that error out, found this solution:
ini_set("memory_limit","80M");
Applied it to the same wp-config.php, now it looks like so:
define('AUTH_KEY', 'xxx');
define('SECURE_AUTH_KEY', 'xxx');
define('LOGGED_IN_KEY', 'xxx');
define('NONCE_KEY', 'xxx');
define('SECURE_AUTH_SALT', 'xxx');
define('LOGGED_IN_SALT', '(xxx');
define('WP_DEBUG', true);
ini_set("memory_limit","80M");
..more or less! ??
Thanks so much for your help. It really saved me