Tagged Questions
0
votes
2answers
163 views
Uploading files bigger than 58meg I get HTTP error. or IO error. when using media uploader in WP v3.51 Multisite, hosting is Linux at GoDaddy
For uploading files bigger than 58meg I get HTTP error. or IO error when using media uploader or 500 Internal Server Error when using browser uploader in WordPress v3.5.1 Multisite
.
It seems to get ...
6
votes
1answer
517 views
Moving a WP Multisite to a subdirectory
Firstly, I've read a number of posts on this process. However, for various reasons, the process remains difficult to implement or troubleshoot for lack of even abstracted examples, or maybe too ...
0
votes
1answer
277 views
Permalink Issues by Installing WordPress in Subdirectory / Subfolder
I installed WP in subfolder /cms and it runs live without subfolder. When I use /%postname%/ as permalink I get 404 error on my site. My Server supported mod_rewrite.
My Code
wp-config.php
...
0
votes
2answers
625 views
How to disable the default WordPress redirect to non-www URLs?
I am trying to redirect all non-www to www URLs in my WordPress MultiSite install. I am using a simple .htaccess rule like this:
# Redirect non-www to www:
RewriteCond %{HTTP_HOST} !^www\. [NC]
...
0
votes
1answer
363 views
Setting up .htaccess for subdirectory [closed]
I've edited the .htaccess on root as referenced in Codex:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(www.)?mydomain.com$
RewriteRule ^(/)?$ blog [L]
The /blog/ directory has a .htaccess file:
# ...
0
votes
1answer
2k views
hide wp-content from urls
Here is what I am thinking of trying to hide wp-content from the urls of files included in page source.
defining the following in wp-settings.php
define ...
0
votes
1answer
355 views
Getting WordPress to work inside a rails 3 application
I am migrating an existing WordPress blog into a subdirectory of a new rails 3 app (deployed on Apache2 / Ubuntu 10).
I have PHP/MySQL installed, and I have a standard rails app folder structure in ...