alegoffa
Forum Replies Created
-
I think it’s a problem with my SMTP provider, it works when using Send in Blue. But MXRoute says is not an issue on their end, so not sure anymore.
I could set it up from the Settings page.
But the sending test is timing out (https://i.imgur.com/03l5x93.png, https://i.imgur.com/RUYJwcY.png), and the conectivity test is throwing errors:
Although the SMTP seems to work fine:
This is the diagnostic test: https://pastebin.com/3Yxnbe74
Hi again @haseeb0001
I’m giving this a second try, and in the Set Up Wizzard, there’s not option for SMTP credentials after adding my email server (blizzard.mxrouting.net).
These are the only ones: https://i.imgur.com/x1MC95w.png
And I can’t authenticate through API, I need to do it through SSL with log in credentials.
Hi,
Sorry, I had to uninstall and use a different plugin for now, so I can’t provide the extra info you ask. The test mails were not being sent and I remember the diagnostic test throwing an error, but I don’t remember the details.
I’m using MXRoute, and I have a CNAME with my own domain. It was working well, I just had issues starting yesterday.
Forum: Plugins
In reply to: [SNORDIAN's H5PxAPIkatchu] Where is the database located?Sorry, now I see them.
By rerouting them through hooks, would I avoid taking space on the database hosted on my webserver?
One more thing. You mention:
“give Learning Locker (https://learninglocker.net/) a shot. It’s open, free and shiny.”
On the website, I can’t seem to find anything pointing to it being free, has something change?
Is there any other free LRS that will work well with this plugin and WordPress?
Forum: Plugins
In reply to: [Super Page Cache] Custom login not workingI put everything there, as you suggested, and it doesn’t work. This is how the config file looks like now: https://i.imgur.com/lztUIrV.png
I’m confused by the documentation:
Now open the configuration file of your domain
What file is this referring to, exactly?
inside the block that deals with the management of PHP pages
What and where is that block?
Forum: Plugins
In reply to: [Super Page Cache] Custom login not workingThe closest thing I found is this on my
/etc/nginx/nginx.conf
# Common security headers
more_set_headers “X-Frame-Options : SAMEORIGIN”;
more_set_headers “X-Xss-Protection : 1; mode=block”;
more_set_headers “X-Content-Type-Options : nosniff”;
more_set_headers “Referrer-Policy : no-referrer, strict-origin-when-cross-origin”;
more_set_headers “X-Download-Options : noopen”;It seems WordOps puts the locations in a different file.
Forum: Plugins
In reply to: [Super Page Cache] Custom login not workingSorry, but I’m lost in the second part, it says to add the “following rules inside the block that deals with the management of PHP pages”.
Here’s what’s inside of my config file located at: /var/www/mydomain.com/htdocs/wp-content/wp-cloudflare-super-page-cache/mydomain.com/nginx.conf:
location ~* \.(xml|xsl)$ { add_header Cache-Control "no-cache, no-store, must-revalidate, max-age=0"; expires -1; } location /robots.txt { add_header Cache-Control "no-cache, no-store, must-revalidate, max-age=0"; expires -1; } location /wp-cron.php { add_header Cache-Control "no-cache, no-store, must-revalidate, max-age=0"; expires -1; } location = /wp-content/wp-cloudflare-super-page-cache/learn.keyspanish.com/debug.log { access_log off; deny all; }
Can you tell me exactly where those rules go? Am I on the right file?
Forum: Plugins
In reply to: [Super Page Cache] Custom login not workingAfter enabling that option I don’t see any different inside
/wp-content/wp-cloudflare-super-page-cache/<your-domain>/nginx.conf
Do I need to follow the instructions found inside the plugin? ↓
Edit the main Nginx configuration file, usually /etc/nginx.conf, and enter these rules immediately after opening the http block: map $upstream_http_x_wp_cf_super_cache_active $wp_cf_super_cache_active { default 'no-cache, no-store, must-revalidate, max-age=0'; '1' 's-maxage=31536000, max-age=60'; } Now open the configuration file of your domain and add the following rules inside the block that deals with the management of PHP pages: more_clear_headers 'Pragma'; more_clear_headers 'Expires'; more_clear_headers 'Cache-Control'; add_header Cache-Control $wp_cf_super_cache_active; Save and restart Nginx.
When referrincing the “configuration file of your domain” do they mean this one: /wp-content/wp-cloudflare-super-page-cache/<your-domain>/nginx.con or the nginx config file?
- This reply was modified 3 years, 9 months ago by alegoffa.
Forum: Plugins
In reply to: [Super Page Cache] Custom login not workingThanks for the reply.
I set up the URI as you mentioned: https://i.imgur.com/k0IShxo.png
The only thing I did is adding:
location ~* \.(xml|xsl)$ { add_header Cache-Control "no-cache, no-store, must-revalidate, max-age=0"; expires -1; } location /robots.txt { add_header Cache-Control "no-cache, no-store, must-revalidate, max-age=0"; expires -1; } location /wp-cron.php { add_header Cache-Control "no-cache, no-store, must-revalidate, max-age=0"; expires -1; } location = /wp-content/wp-cloudflare-super-page-cache/mydomain.com/debug.log { access_log off; deny all; }
To:
/etc/nginx/common/locations-wo.conf
Is that what you mean?
- This reply was modified 3 years, 9 months ago by alegoffa.