en3r0
Forum Replies Created
-
Forum: Plugins
In reply to: [Amazon Product in a Post Plugin] Show Gallery Images Broken in version 5.0.4Thanks, can confirm it is working now!
Forum: Plugins
In reply to: [Amazon Product in a Post Plugin] Show Gallery Images Broken in version 5.0.4@prophecy2040 Thanks Don, I appreciate the prompt reply!
Forum: Plugins
In reply to: [Amazon Product in a Post Plugin] Show Gallery Images Broken in version 5.0.4To be more specific, it seems like none of the templates are being applied. This is using the Gutenburg editor.
Forum: Plugins
In reply to: [WP2Static] Failed Crawling /Update – This was solved by adding the PHP DOM Extension. I installed the package php7.0-xml and restarted apache and it works now.
Forum: Plugins
In reply to: [WP2Static] Failed Crawling /Update – this was in my apache error log: https://pastebin.com/JGvHNgE3
Forum: Fixing WordPress
In reply to: query_posts, Custom Fields, Custom Post TypesI just did, it did not seem to fix the issue.
Forum: Plugins
In reply to: Looking for a Pay What you want plugin.I am also looking for something like this.
Forum: Networking WordPress
In reply to: nginx, subdomain, sites not redirectingI never found a solution to this stuff really. Make sure you are clearing caches and cookies when logging into multisite after you set the configs.
Also this made life a lot easier, I tried it and got things working.
https://www.lowendbox.com/blog/wordpress-cheap-vps-lowendscript/
Only takes about 5 min.
Forum: Networking WordPress
In reply to: Redirected to login screen after Multisite installI have to say I did not think clearing data would fix it for me. I cleared the cookies for the domain, didn’t work. Tried a different browser (Google Chrome incogito mode) and it did work.
Forum: Networking WordPress
In reply to: Apache to NGINXThere are quite a few guides out there that will give you the configs you need for nginx, so you will not longer use .htaccess.
I am currently going through this process myself and having a hard time with the configs even though there are tutorials.
Forum: Networking WordPress
In reply to: nginx, subdomain, sites not redirectingIt does not, it goes to the same signup page sadly.
Forum: Networking WordPress
In reply to: nginx, subdomain, sites not redirectingI have created a network site called test (text.example.com). When I click visit, I get directed to the signup page. Am I doing something wrong in the creation stage?
I believe wildcard subdomains are set up right at the domain host. That is all I should need to do for that right?
Forum: Networking WordPress
In reply to: nginx, subdomain, sites not redirectingEven using these settings from the nginx website give the same thing, a signup page. https://wiki.nginx.org/Wordpress
Could it be something else?
Forum: Networking WordPress
In reply to: nginx, subdomain, sites not redirectingI have simplified things, this is now my virtualhost file for exmaple.com
server {
server_name example.com *.example.com;
#rewrite ^ https://www.example.com$uri permanent;server_name *.otherexample.net;
server_name *.anotherexample.com;root /var/www/example;
index index.html index.htm index.php;location / {
# First attempt to serve request as file, then
# as directory, then fall back to index.html
try_files $uri $uri/ /index.php?$args;rewrite ^.*/files/(.*)$ /wp-includes/ms-files.php?file=$1 last;
}location ~* ^.+\.(js|css|png|jpg|jpeg|gif|ico)$ {
rewrite ^.*/files/(.*(js|css|png|jpg|jpeg|gif|ico))$ /wp-includes/ms-files.php?file=$1 last;
expires 24h;
log_not_found off;
}location @wp {
rewrite ^/files(.*) /wp-includes/ms-files.php?file=$1 last;rewrite ^(/[^/]+)?(/wp-.*) $2 last;
rewrite ^(/[^/]+)?(/.*\.php) $2 last;rewrite ^/(.*)$ /index.php?q=$1 last;
}location /doc/ {
alias /usr/share/doc;
autoindex on;
allow 127.0.0.1;
deny all;
}include template.conf;
#include wordpress.conf;}
There are now no IF statments, and wordpress.conf is commented out.
I now get directed to a signup page, a small step forward, but that means something is still not quite right.
Forum: Installing WordPress
In reply to: 3.1 upgrade; database update fails and loopsI also had a similar problem. I was able to rename the W3 Total Cache plugin folder. Refreshed the page and there was an ok button. Click through and you will have a php error with the plugin, but rename it back to what it was and you are good to go.
W3 Total Cache wasn’t even enabled.