WordPress Plugins update generates a critical error and I can’t access wp-admin since

I’ve been working on this project for a couple of days, I’m completely new to WordPress and this is a legacy project.

After stating this, I’m completely lock-out from wp-admin. I’ve been handling this project from https://mywebsite.com/wp-admin/, I was about to finish it and then I updated the plugins (silly me), specifically the WooComerce one and since then I can’t regain access to https://mywebsite.com/wp-admin/. I got a 307 error in the process

I’ve scout the internet for answers so I will make a list of what I’ve already try

  1. Change the name of the plugins folder at public_html/wp-content/plugins to public_html/wp-content/plugins.hold to make my plugins inactive and regain access

  2. Change the name of the plugins folder at public_html/wp-content/languages/plugins to public_html/wp-content/languages/plugins-_- to be certain about inner calls to the plugins

  3. Change the row [option_id:35 , option_name:active_plugins] from the wp_options table setting [option_value:a:0:{}] straight from the DB with phpMyAdmin, so it can’t pick the plugins neither from the plugin folder nor the DB

  4. Rename the files with ** .htaccess** string from public_html/ to resolve the 307 error

  5. Change
    define( 'WP_CACHE', true );
    to
    define( 'WP_CACHE', false );
    at public_html/wp-config.php

  6. Change
    define( 'WP_DEBUG', false );
    to
    define( 'WP_DEBUG', true );
    at public_html/wp-config.php

  7. Uncomment the lines

      define('WP_DEBUG_LOG', true);
      define('WP_PROXY_HOST', '192.168.14.1'); 
      define('WP_PROXY_PORT', 3128);

at public_html/wp-config.php

  1. rename the traveler folder at public_html/wp-content/themes/ to traveler.nani to avoid using it as a theme if this was the one producing the error

  2. Change
    define('WP_USE_THEMES', true);
    to
    define('WP_USE_THEMES', false);
    at public_html/index.php

As you can see I’ve tried a couple of things but nothing seems to work, here it’s the screenshot of the problem itself (In Spanish because the webpage it’s on Spanish)

https://mywebsite/wp-admin/

On this message says I should have received an email with instructions to fix the bug. I’ve not received anything. Anyone have encounter the same problem or knows how to fix this situation?