southbound
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My site was attacked. What now?None of the files listed are on the server.
Forum: Plugins
In reply to: WP_Query skipping pagesThanks again, but I read that query_posts() is used to modify the main loop, which is probably not what I want. My plugin is about excluding some pages to show up in the list of pages, so it’s a separate loop, right? I’m kind of stuck with the WP_Query object, according to the docs.
Forum: Plugins
In reply to: WP_Query skipping pagesYay! Thank you so much! I could never have guessed that setting would have anything to do with it. When I changed it to 20, I got my 12 pages.
I suspect it’s the have_posts() function that limits the number of posts (pages). Is there another way to write the loop so that I get all page records at once, instead of a certain number at a time?
Forum: Fixing WordPress
In reply to: How do you edit roles?Wow, that’s a lot of content for one table cell! Perhaps I should give Role Manager a second chance before trying to figure out how that markup works…
For future releases, I think it would be great with a
wp_rolesandwp_capabilitiestable.Forum: Fixing WordPress
In reply to: How do you edit roles?Thanks, I did try the Role Manager plugin, but it’s not compatible with 2.7. In particular, the buttons with capabilities doesn’t change when clicked. But even if it world work, I’d like to know where WP stores the role/capability data. Is it really in the schema.php file, and if so, why isn’t it responding to changes in that file?
Forum: Fixing WordPress
In reply to: Getting IDs without printing them?Found it myself.
the_post();should be
$myQuery->the_post();Forum: Fixing WordPress
In reply to: wp_get_post_categories()Sorry for the duplicate posts. I got an error telling me “Topic not found” when posting.
Forum: Plugins
In reply to: Filter categories on custom fields?Thanks. It helped so far as to tell me that ‘get_categories_taxonomy’ is new in 2.7. But the filter appears early in the get_catagories() function, so I’m not sure if I can use it. What I want is the output array from get_catagories().
Forum: Requests and Feedback
In reply to: Author Email in plugin dataOkay, the forum messes with the markup there. In the first case, there’s no change, in the second, the string mailto: is added and ‘Visit author homepage’ is replaced with ‘Email author’.
Forum: Requests and Feedback
In reply to: WPLANG_ADMIN and WPLANG_USERHow does qTranslate apply to this? I’m not asking to publish in separate languages, but to have separate languages in the user and admin interfaces.
Forum: Fixing WordPress
In reply to: Multiple blog addresses?Well, I’m not sure how else I would achieve the same effect, since having separate web hotels for each domain is not an option (too much work). The ISP offers something called ‘DNS pointers’ as well, but I got the impression cloaked www forwarding is what suited this setup best.
Forum: Fixing WordPress
In reply to: 1 WordPress, 3 languages…To simplify, let’s say the WP front page, interface and static pages are translated in 3 languages, while the posts are not translated. Perhaps what I’m really asking for is to have different themes that changes depending on browser language preferences. Sounds complicated, but someone must have run into this problem before…!
Forum: Fixing WordPress
In reply to: Something’s seriously off here (HTTP 404)I’ve isolated the problem somewhat. I found that all the links work when I set the permalinks back to Default. I do have this line in my httpd.conf file:
LoadModule rewrite_module modules/mod_rewrite.so
I verified that it’s connected by putting this line in the httpd.conf file:
RewriteLog “C:/WWW/Root/rewrite.log”
When restarting Apache, this file was created, which ought to mean that mod_rewrite.so is working.
Forum: Fixing WordPress
In reply to: Something’s seriously off here (HTTP 404)Yes, there is a database of course. Otherwise, the posts wouldn’t be saved at all. I can post on the blog and write pages, but whenever I click a link directly to the posts or pages, they are not there.
Thank you guys for trying to help. More tips are welcome. If I can’t solve it, perhaps a reinstall of WP may help.
Forum: Fixing WordPress
In reply to: Something’s seriously off here (HTTP 404)I’m using the newest version of Apache, on a Windows XP machine. I don’t think it’s a problem with Apache, MySQL or PHP, since I’ve been testing them separately and together before installing WP.
Yes, there’s an .htaccess file in the WP root. It says:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule># END WordPress
The mod_rewrite module is loaded too.