Thanks Chris_K!!!
The link pointed to the solutions page, i had to ad the following lines to the wp-config.php file located in the root of my blog:
define(‘WP_HOME’,’https://example.com’);
define(‘WP_SITEURL’,’https://example.com’);
but at first it did not worked, i had to insert the full path to my blog:
define(‘WP_HOME’,’https://example.com/blog’);
define(‘WP_SITEURL’,’https://example.com/blog’);
Then i went to try to open my blog, and it worked again, and now i can login, so thanks to both of you.