lynnelil
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Will upgrading 1.5.1 to 2.6 kill my template?OK, I think I’m fine with disabling plugins and switching to the default template, in thinking about it. If it would make things easier. People can live with the site as “basic” for a few weeks. What I am trying to do is to get the system to the point to where it can export via that WXR format, as that seems the simplest way to do what I need to do in the next phase of this project.
The only thing I’m really worried about now is exporting the PodPress elements from that plugin – I want to be able to export that data (where the audio files I’ve linked to some posts reside) so I can import that with the posts into a new system. I’m transferring the website into ExpressionEngine because I’ve become an EE guru and there’s functionality I want that I can get easier in EE (not that I don’t love WP, but for this site, I need more control to do some really custom things, and I know how I can accomplish that in EE, but not WP). So, if I go back to the basic template, disable the plugins (including PodPress), upgrade, then install the newest PodPress, then do the WXR export, will that work?
(And yeah, I’d rather not do a local install to test, not that I can’t – I used to do it all the time, but not in the last few years LOL. And the site didn’t get updated because, well, I got lazy, and then several versions went by and it got to be too much of a pain. I don’t get paid for this website, it’s my blog, and I spend enough time writing it, never mind maintaining it. Heh.)
Forum: Plugins
In reply to: List of recent posts (Plugin: Customizable Post Listings)neilcauldwell: Do you think this would work for my problem as well? I’m looking to list a set of the most recent posts within one category, and as you can see, no one has been able to solve that issue for me.
Forum: Plugins
In reply to: Customizable Post Listings – not able to limit category listingArg, reset the thread to “not resolved” – hopefully that helps it show up where it can be looked at. Sorry about that – still sorta a newbie (but I did stay at a Holiday Inn Express last night – and read the sticky thread about “resolved” and “not resolved” statuses). π
Forum: Plugins
In reply to: Customizable Post Listings – not able to limit category listingI agree…at this point, I’d even throw in a little pay (if I can get my clients to finally pay <i>me</i>) because literally, this is the last element I need to upgrade my Left in Lowell blog to 2.1x, with the new user features I’ve been promising my readers. (Heck, I’ll even do some fundraising on my blog to get the cash to get this done, they’re as eager as I am to upgrade.)
Anyone?
If this does get fixed and/or someone wants to talk about getting this done, my email is lynne at leftinlowell.com. Thanks…
missnina: At least I know I’m not insane and someone else had the same issue!
Forum: Plugins
In reply to: Customizable Post Listings: working in 2.1, not 2.2FYI, the SQL generated by the plugin is as follows:
SELECT DISTINCT * FROM wp_posts LEFT JOIN wp_post2cat ON (wp_posts.ID = wp_post2cat.post_id) AND ( category_id = 4) WHERE wp_posts.post_date <= '2007-07-18 09:16:42' AND ( wp_posts.post_status = 'publish' ) AND wp_posts.post_password = '' GROUP BY wp_posts.ID ORDER BY wp_posts.post_date DESCThis is using the c2c_get_recent_posts() function of the plugin.
It has “AND ( category_id = 4)” but the plugin then goes on and lists all categories of recent posts anyway.
Seriously, is there someone who’s going to be able to help me?
Forum: Plugins
In reply to: Customizable Post Listings – not able to limit category listing*bump* please, can someone help me? I’m really at my wits’ end…tried everything I could think of to make the SQL only pick out the category in question, but it’s getting all the categories.
Forum: Plugins
In reply to: Customizable Post Listings – not able to limit category listingFYI, I did find something – the code wasn’t using wp_posts and wp_comments and wp_categories for the sql table calls. I changed that but it still isn’t working.
Here’s the SQL generated by the code:
SELECT DISTINCT * FROM wp_posts LEFT JOIN wp_post2cat ON (wp_posts.ID = wp_post2cat.post_id) AND ( category_id = 4) WHERE wp_posts.post_date <= '2007-07-16 13:15:53' AND ( wp_posts.post_status = 'publish' ) AND ( wp_posts.post_type = 'post' )I’m still newish to the table/db structure, can anyone else find something wrong with that SQL right off the bat that would cause an issue?
Forum: Plugins
In reply to: Do not want users who contribute to see other’s comment IPAwesome, thanks. I did some searching for this info and I guess I must have missed the right keywords. π
I do hate hacking into the core code though. *le sigh* This should probably be addressed at some point!
Forum: Fixing WordPress
In reply to: Limit Categories, WP2.1 and php5Scratch that, I even tried Limit Categories in php4.x (downgraded my server temporarily, since it’s pretty easy to do that with my host) and THAT didn’t even work. When I went to look at/edit categories in the admin panel (logged in as admin), all categories are missing, and you can’t add new ones. You get the category headers, but nothing else.
I really need Limit Categories to work in order to implement the new version of my site.
Forum: Fixing WordPress
In reply to: Limit Categories, WP2.1 and php5-bump-
Anyone?Forum: Fixing WordPress
In reply to: Can you restrict users to write to only 1 category?OK,
What I can gleam from all this is that Limit Categories works with 2 (does it work with 2.1?) but not if running php5.I am running 2.1 on php5, and I do not like the idea of downgrading php5 just to make one plugin work. However, this plugin is not working. (When activated, I can’t even go to the Manage Categories admin section without getting an Internal Server Error.)
To reiterate, I don’t need per-user limits for categories, just per-role limits. Is there a solution out there?