Hi, I have exactly the same problem on my WP site. Now I cannot visit the front page and also the admin page. How can I update the plugin without visiting the admin page?
[update] Now I just fixed the problem by docker exec into the container, find the plugin path, and fix the code bugs. Detail:
docker exec -it <wp_container_id> /bin/bash
cd /var/www/html/wp-content/plugins/skaut-google-drive-gallery
nano class-api-client.php
use ctrl+_ to goto the line 221
remove the last “,” in the line 220.
remove same problem several lines later
also remove the same problem in the file class-api-facade.php.
Then problem is resolved.
-
This reply was modified 1 year, 2 months ago by vincentgong7.