Forum Replies Created

Viewing 15 replies - 1 through 15 (of 16 total)
  • Thread Starter southbound

    (@southbound)

    None of the files listed are on the server.

    Forum: Plugins
    In reply to: WP_Query skipping pages
    Thread Starter southbound

    (@southbound)

    Thanks 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 pages
    Thread Starter southbound

    (@southbound)

    Yay! 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?

    Thread Starter southbound

    (@southbound)

    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_roles and wp_capabilities table.

    Thread Starter southbound

    (@southbound)

    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?

    Thread Starter southbound

    (@southbound)

    Found it myself.

    the_post();

    should be

    $myQuery->the_post();

    Thread Starter southbound

    (@southbound)

    Sorry for the duplicate posts. I got an error telling me “Topic not found” when posting.

    Thread Starter southbound

    (@southbound)

    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().

    Thread Starter southbound

    (@southbound)

    Okay, 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’.

    Thread Starter southbound

    (@southbound)

    How 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.

    Thread Starter southbound

    (@southbound)

    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.

    Thread Starter southbound

    (@southbound)

    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…!

    Thread Starter southbound

    (@southbound)

    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.

    Thread Starter southbound

    (@southbound)

    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.

    Thread Starter southbound

    (@southbound)

    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.

Viewing 15 replies - 1 through 15 (of 16 total)