Forum Replies Created

Viewing 15 replies - 181 through 195 (of 238 total)
  • This is kind of a work around but it might fix your problems in the short-term. It’s a plugin designed to use a different method of rewrite rules. But being a plugin it’s easy to edit out the <IfModule… lines>.

    http://boren.nu/archives/2005/03/07/reduced-rewrite-plugin/

    Hey dtl, does removing the <IfModule mod_rewrite.c> and </IfModule> lines make your .htaccess work?

    Forum: Fixing WordPress
    In reply to: Where to start…

    Sounds like you’re hooked – Welcome to WordPress!

    Dherren makes a very good point, there are lots of ways to make this easier to manage. I would definitely consult with Shadow and Dherren for some pointers. There was someone writing a script for multi installs. I’ll see if I find progress on that.

    Do you know where you’re going to be hosting these blogs?

    Regarding upgrading I’m not sure anyone besides the developers know how multiblogging will work. However, the devs take upgrading very (very!) seriously.

    I think one database would suit your situation. WP uses table prefixes to keep installations separate. (ie wpjudy_posts, wpjimmy_posts – it’s in the wp-config-sample.php). One database just makes backup and maintenance easier.

    Forum: Fixing WordPress
    In reply to: Theme Editor

    Make sure the specific file is writable, not the folder.

    ie /wp-content/themes/your theme here/single.php should be chmod 777.

    Forum: Fixing WordPress
    In reply to: Where to start…

    Oh and I should mention that under the next version (1.6) goals. They first line is:
    “Support for mass deployment (allows people to host multiple blogs securely and without having to manually create each one)”

    http://codex.wordpress.org/Version_1.6

    So if it doesn’t work out now we’ll definitely be seeing you again hey? 😉

    Forum: Fixing WordPress
    In reply to: Where to start…

    The (possibly) good and (certainly) bad news.

    First the bad:

    Each WordPress blog requires it’s own install.

    example.com/varaonaid
    example.com/judy
    example.com/jimmy

    All separate installs. They can use the same database but that’s a minor issue that just makes installs quicker.

    Installation:
    1. Install each blog
    2. Login: Change your password and create a student user
    3. Run through options (ie comments must be approved before posting).

    Long term maintenance
    – You have to log in to each blog separately. (You can have the same username and password)
    – No overview of the blogs. You have to go check and see if there are new comments waiting to be approved, etc
    – Adding new themes and plugins. You will have to do this for each install

    Although you’ve got full control over all the blogs it’s not easy to manage.

    The (possibly) good news:

    There is a forked version of WordPress called Multi-user wordpress. I’ve never used it but it’s designed to do what you’re looking for. Check out http://mu.wordpress.org. They don’t have the same support forums as the regular WordPress but they do have a mailing list with developers on it that would be happy to provide assistance.

    I’ve never used B2evo so I can’t comment on that. You might also want to check out Drupal. It’s a little more complex than WordPress but it has multiple blog/community blogging built in.

    Is your .htaccess being written? If it’s writable WP will take care of it. But if it’s not WP will put a bunch of code at the bottom of the page that you’ll have to cut and paste into your .htaccess. That’s what converts ?page_id=13 into /about/

    You can include php in posts and pages using the RunPHP or PHPExec plugins.

    If you’re pages are really PHP heavy then I think you’re on the right track. I’d create a new template customized how you like and then assign that template to your page(s). That allows you a fully custom page wrapped in WP goodness.

    ‘If the file was writable…’

    So you need to make that file and not the whole directory writable. In 1.5 navigate to the wp-content/themes/name of your theme/ and you’ll see a list of files you can edit. If you wanted to edit single.php, you would type:
    chmod 666 single.php

    Do the same for any other file you want to edit.

    WordPress uses index.php for the index page, single.php for an individual post and archive.php for displaying daily, monthly, yearly, author and category archives. ‘Pages’ can also be created and you can assign any template you create (ie page.php) to them.

    So by default WordPress should do what you want. The only time WP would use your index.php for say, a single post, would be if single.php was missing.

    Here’s the docs page on themes that gives you a much better overview than I can.
    http://codex.wordpress.org/Using_Themes

    Oops, 1.2.1 is not the second newest version. 1.2.2 is the newest version before 1.5.

    You’re using version 1.2.1 (checked by viewing the source). That’s the most recent stable, security version before 1.5 (which only came out a month ago). You might want to email your host and see if they have plans to upgrade Fantastico with 1.5.

    The is_category function doesn’t exist in 1.2 so you’ll have to use some good ol’ PHP. It sounds like David Chait was doing this in 1.2 so he’ll probably have the solution.

    Forum: Fixing WordPress
    In reply to: Catch 22…

    That’s one smart moose.

    WordPress handles the pretty urls under options -> permalinks. You’ll need to configure them and then WP generates the code for your .htaccess. If your .htaccess is writable then WP would automatically add them. If it’s not you can just cut and paste the code.

    Here’s more info:
    http://codex.wordpress.org/Using_Permalinks

    This isn’t going to be very easy I’m afraid. Kubrick, the design in your mockup, is a fixed width 2 column design. That means if you want to add another column you either need to shrink the main content and existing sidebar or widen the whole page. Keep in mind that the images are also fixed width. If you widen the page the images will no longer work.

    It’s not to say this is impossible but turning Kubrick into a 3 column design is going to take some real effort.

    If you’re set on a 3 column design then I’d find a template that already has 3 columns. It’s much easier to change colors and images then to grapple with 2 vs 3 column positioning.

    Check http://codex.wordpress.org/Using_Themes. They’ve got a good list there and links to external sites. Find a theme with a layout similar to your mockup and you’ll have a much easier time.

    What about…

    <?php wp_list_pages(‘sort_column=time_modified&show_date=modified’); ?>

Viewing 15 replies - 181 through 195 (of 238 total)