vraisa
Forum Replies Created
-
Forum: Plugins
In reply to: [Split Test For Elementor] Syntax errorCan not update to 1.6.6
Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] Can not upload SVG imagesThis is still not working, but here is work around for this.
Create a script to watch changes in the uploads folder. You need inotify-tools
watch-wp-uploads.sh
#!/bin/sh dir1=/var/www/wordpress/wp-content/uploads/ while inotifywait -qqre modify "$dir1"; do gsutil -m rsync -rd /var/www/wordpress/wp-content/uploads/ gs://bucketdomain.com/wp-content/uploads done
watch-wp-uploads.service
[Unit] Description=Watch WordPress uploads folder changes and rsync them to the cloud storage After=default.target [Service] ExecStart=/root/watch-wp-uploads.sh [Install] WantedBy=default.target
systemctl enable watch-wp-uploads.service
systemctl start watch-wp-uploads.service- This reply was modified 2 years, 5 months ago by vraisa.
WordPress can only write inside /uploads folder which might not be common practice but I think is best practice. We have set up that intentionally.
I have tried to create that folder manually but then I got a warning that this plugin wants to remove that folder O_o
rmdir(… /wp-content/wphb-logs/): Permission denied in … /wp-content/plugins/hummingbird-performance/core/class-logger.php on line 258
SendGrid: wp_mail has been declared by another process or plugin, so you won’t be able to use SendGrid until the conflict is solved.
Forum: Plugins
In reply to: [WP-Stateless - Google Cloud Storage] How to disable email notifications?Forum: Plugins
In reply to: [WPScan - WordPress Security Scanner] HTTPS/ SSL warning messageGetting “Undefined index: HTTP_HOST” in the admin. Also got the email notification that “The website does not seem to be using HTTPS (SSL/TLS) encryption for communications”.
The server is using HTTPS and is also behind Cloudflare.
Plugin version: 1.14.2
Forum: Plugins
In reply to: [WPScan - WordPress Security Scanner] increase intervalHow should we interpret that there is an option to set the scanning twice a day, but reports are sent once a day?
What is the point of scanning more often than we can get the reports? Would be ideal to get an immediate email if the scanner finds a vulnerability.