davidbgonzalez
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Permissions and locations for new network blogIpstenu,
I feel like such a tool. Turns out I had a typo in my ServerAlias stanza!
Thank you for your response, and sorry to take up your time.
Happy Holidays!
Forum: Networking WordPress
In reply to: Permissions and locations for new network blogIpstenu,
The DNS is pointing to the root domain, a la:
journal CNAME ldspunk.org.
Since, ldspunk.org resides at 69.169.164.27, a little more similar approach to the one illustrated in the referenced doc page would be something like an A record:
*.ldspunk.org. IN A 69.169.164.27
Either way, they should be handed off to Apache to serve according to the apache alias: ServerAlias *.ldspunk.org or ServerAlias journal.ldspunk.org if I wanted to get picky.
About the only thing that seems to point anywhere, and I apologize for my lack of understanding with www.ads-software.com, are the rewrite stanzas in the .htaccess (as generated by www.ads-software.com):
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] # uploaded files RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L] RewriteCond %{REQUEST_FILENAME} -f [OR] RewriteCond %{REQUEST_FILENAME} -d RewriteRule ^ - [L] RewriteRule . index.php [L] </IfModule> # END WordPress
And somewhere the php, it would appear, is serving a dir or file that is not chmod’d correctly. But I don’t know which dir or file that would be; seeing as how the root domain ldspunk.org’s blog is resolving and serving without incident.
Thanks,
David
Forum: Fixing WordPress
In reply to: Broken wp-config.php linking on debian system with multiple blogsAll fixed!
Here’s the logic for anyone who cares:
/etc/wordpress/ contains a file called wp-config.php which, contains the logic for doing a lookup of a blogs db configuration.
So,
symlink from your blog’s root directory to /usr/share/wordpress/wp-config.php and symlink /usr/share/wordpress/wp-config.php to /etc/wordpress/wp-config.php.