Hello SanJordi,
Can you tell me which version caused crash on your site? We released today two versions one after another – 4.0.1.0 and 4.0.1.1
Can you try updating to 4.0.1.1 and if site will crash again please enable debug mode in your WordPress. To enable it, open your wp-config.php file and look for define(‘WP_DEBUG’, false);. Change it to:
define(‘WP_DEBUG’, true);
In order to enable the error logging to a file on the server you need to add yet one more similar line:
define( ‘WP_DEBUG_LOG’, true );
In this case the errors will be saved to a debug.log log file inside the /wp-content/directory.
Depending on whether you want your errors to be only logged or also displayed on the screen you should also have this line there, immediately after the line mentioned above:
define( ‘WP_DEBUG_DISPLAY’, false );
The wp-config.php is located in your WordPress root directory. It’s the same file where the database configuration settings are. You will have to access it by FTP or SFTP in order to edit it. I would need then to see content of the debug.log file.
kind regards,
Kasia