mik.e245
Forum Replies Created
-
Fixed it! Subdirectories now work great. You just have to comment out
define('DOMAIN_CURRENT_SITE', '...');
@ultimateuser Yes, you’re right, I didn’t need to define BP_ENABLE_MULTIBLOG to true since I only have one site per network.
@ultimateuser I’m still trying to figure this out. I’m going to test my setup tomorrow and will make sure to post back here if I find a working solution.
Forum: Networking WordPress
In reply to: WordPress MU nginx sub-site configurationNevermind, it works now with this configuration:
https://pastebin.com/G1XJKr3WForum: Networking WordPress
In reply to: WordPress MU nginx sub-site configurationHi Rahul,
Of course, here is my nginx.conf file:
https://pastebin.com/RfuncRdBthank you!
MichaelForum: Plugins
In reply to: [Contact Form 7] How to add form submit callbacks in JS?I found it! Around line 800 in jquery.form.js.
Forum: Fixing WordPress
In reply to: WordPress Site Root Redirect ProblemOkay, I think it works now. There wasn’t really a concrete solution, I just played around with the .htaccess files on my site.
Forum: Fixing WordPress
In reply to: WordPress Site Root Redirect ProblemWhat should I put for the Rewrite Base? The root directory (/)?
I tried this and had the same problem.However, what is strange is that I added a couple more directories and files via FTP, and some of them are found by the web browser, some aren’t (resulting in a WordPress-styled 404 error).
Forum: Fixing WordPress
In reply to: WordPress Site Root Redirect ProblemJust in case, here’s what my .htaccess file looks like:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPress
…And I put some more files/folders on my site and found that I can access some, but not all of them. Strange…