Is WordPress MultiSite secure & how much can it scale? [closed]

Is WordPress MultiSite secure & how much can it scale? WordPress.com — single best example of WordPress Multisite at a large scale. Period. As for the expertise to be able to maintain and manage the cluster — which you should question yourself — it’s a different story. By creating admins for each subdomain, what security … Read more

Using Fullscreenr with a wordpress blog – weird bug

The plugin determines the width and height of the viewport on page load, but it’s using $(window).height() which looks at the size of the viewport and then absolutely positions the content div over the image, relative to the viewport/window. Because the page isn’t loading at the top of the document, the content is absolutely positioned … Read more

Randomise upload filenames (or another solution to hide the original image URL from theft?)

Where am I going wrong? Actually, your code is just fine. Except that I would simply use wp_generate_password() to generate the random string. 🙂 WordPress will still think that the scaled version is called painting-scaled.jpg , etc. Resulting in broken images. Yes, that’s correct. Images are stored as posts of the attachment type in the … Read more

How many post WordPress can handle?

There isn’t a hard upper limit of how many posts WordPress can handle. The practical limit for your site depends on these things in this order: The queries your codebase runs Server power Disk space But before we go into this, WP will not generate 404’s because there are too many posts. If this is … Read more

How to scale up image into thumbnail without distorting it?

The core problem that you’re running into is that WordPress isn’t actually doing anything to your images, because it doesn’t upscale images. You can use hooks to modify WordPress’ behavior without hacking core, or you can try to fix the issue with CSS. Changing WordPress to Upscale Thumbnails ALXMedia has an useful example on adding … Read more