MECU
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Upgrade from 4.5.2 to 4.5.3 deletes wp_options row for pluginCustom plugin. Not publicly available. I am the developer of it.
Forum: Fixing WordPress
In reply to: 404 on custom ( non-wordpress ) pagesThank you mfields, this worked great for me.
To help someone else, this goes in the theme functions “functions.php” file.
You can easily define a constant like:
define('GALLERY_NAME', TRUE);in your custom php files. You should replace GALLERY_NAME as mfields suggested, and TRUE could be anything.
Forum: Plugins
In reply to: How to add database intensive pages that are scalable?What I did was use PHP inclusion and create the Pages manually with the link to the PHP file that created the content. There’s another PHP execution plugin, but I don’t think it lets you just include a file (though it may, I didn’t look).
Going down route 2 I think would be a bad idea, though I haven’t tried it.
No. WordPress is fairly fast and clean. If you use WP-SuperCache (or something by that title), you can survive even Digg hits.
I think people are just starting to get into accomplishing this with WordPress. My problem, and yours, is that after you create the 12 Pages that get 99% of your hits, how do you get the other 1000 Pages setup easily? Create 12 (or 45 in my case) Pages easily, without manually going through and creating them. I was looking for a way to do that when I came across your post.\
I hope this helps. Good luck.