thegreyorm
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: Subscribers-only v1.02.1 downloadI wouldn’t bother. I downloaded and installed the file, and after a week of testing and tweaking I still can’t get it to work. It just doesn’t seem to be compatible with the latest WP — mainly, it still has the bugs that caused it to be taken down: it does not update the options page for the plug-in (making it literally useless).
Unfortunately, I don’t know PHP & WP well enough to locate the problem with the code. Thus, I suggest bugging the author for an updated, bug-free version.
Forum: Requests and Feedback
In reply to: Subscribers-only v1.02.1 downloadExcellent! I wanted to use this and saw it was still not available on Edwards site, so thank you very much for this!
Forum: Plugins
In reply to: Forcing users to categoriesThere are also a couple plug-ins out there that allows you to run multiple blogs from one WP installation. I came across one called Multiply the other night, and suggest it or something similar as a solution that might work better for you?
(This way you would have a seperate blog PER group/project/whatever, rather than being limited to one category for each group.)
Forum: Fixing WordPress
In reply to: Trying to pass variables with PHP in templateThanks for the info, doodlebee. I tried your solution, because I had attempted something similar myself earlier but wanted to integrate the gallery as a page (and understand the php better).
I did find out something interesting, though: apparently, the header call itself is what is causing problems.
If I put this:
<?php
define('WP_USE_THEMES', false);
require('./wp-blog-header.php');
get_header();
?>
in my page, it causes something to break, and the php variable doesn’t pass back to the page. However, if I remove that and leave everything else, the page passes the variable.
Does anyone know why this is?