Can I use the same Folder name as a Multisite Blog?

By default, yes, you will have conflicts. The default WordPress .htaccess rules look something like this: # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress The -f and -d in those lines are important here. They basically … Read more

Where should I store disabled plugins?

I don’t think you need an extra directory for storing your disabled plugins. Better keep them there default location (/plugins/) and whenever you need to reactive just simple one click away! Or, if you think that plugin doesn’t help you in future, just DELETE it!

Cannot access subdirectory subpages

Finally fixed this errow after browsing for a couple of hours and trying many options. In this block in your Apache httpd.conf file, (located in my CentOS instance at $ sudo vi /etc/httpd/conf/httpd.conf) # # AllowOverride controls what directives may be placed in .htaccess files. # It can be “All”, “None”, or any combination of … Read more

Impossible to index an upload folder with 10k files

Axel, I would recommend getting an SSH connection to your host. This means that you’ll get a command prompt that you can issue commands. Something like this if you have a linux server: … once you have that, simply browse to your directory and gzip/compress the entire uploads directory: tar -zcf mybackup.tar.gz uploads/ Then once … Read more

Getting Internal server in sub folder pages

you need to create .htaccess file. Create .htaccess file and paste below code in it # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPress

Will placing custom templates in sub directory break any native WordPress functionality

Since WP 3.4 page templates can be stored in theme root folder or direct sub-directoryr, that is no problem. But rename page templates, which include moving files to other directories, will unassign that page templates for all pages currently using it. To reassign the page template, simply edit the page, and reselect the desired template. … Read more