Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter ranger6350

    (@ranger6350)

    BTW, the rest of the posts that don’t have the ‘comment out’ issue are editable. That would mean the above isn’t the issue, shouldn’t it?
    -R

    Thread Starter ranger6350

    (@ranger6350)

    Didn’t realize I would be getting a validation email to validate account usage. So sorry… All is well.
    -Ranger

    Thread Starter ranger6350

    (@ranger6350)

    I read all I could and couldn’t find where to put the code in that you suggested. My index.php file contains the following. Could you tell me where to insert the code snippet you specified in order to make it reverse? I tried several spots with no luck. Thanks!
    -R

    <?php get_header(); ?>
    
    <div id="content" class="narrowcolumn">
    
    <?php if (have_posts()) : ?>
    
    <?php while (have_posts()) : the_post(); ?>
    
    <div class="post" id="post-<?php the_ID(); ?>">
    <h2>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></h2>
    <small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
    
    <div class="entry">
    <?php the_content('Read the rest of this entry »'); ?>
    </div>
    
    <p class="postmetadata">Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments »', '1 Comment »', '% Comments »'); ?></p>
    </div>
    
    <?php endwhile; ?>
    
    <div class="navigation">
    <div class="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
    <div class="alignright"><?php previous_posts_link('Next Entries »') ?></div>
    </div>
    
    <?php else : ?>
    
    <h2 class="center">Not Found</h2>
    <p class="center">Sorry, but you are looking for something that isn't here.</p>
    <?php include (TEMPLATEPATH . "/searchform.php"); ?>
    
    <?php endif; ?>
    
    </div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    Thread Starter ranger6350

    (@ranger6350)

    I changed all the permissions, re-uploaded all the files ‘just in case.’ Still no go. Do I have to change anything in the wp-config.php after the DB_HOST info? I.e., change the prefix or change to localize WordPress (see above code)? I tried it with no changes to that and with ‘WPLANG’, ‘en.mo’ as shown above, neither of which worked.

    Thread Starter ranger6350

    (@ranger6350)

    4 folders and the files. No zeros, all there. All in Transmit ftp’s default, but it doesn’t typically make mistakes in that regard. I’m wondering if it’s permissions, though. I see that index.php is all zeros, for example. So was wp-admin folder, but I changed it to 755 and that didn’t make any difference. install.php is set at 755. Any idea what those should be or is there a listing somewhere? (BTW, thanks for taking a look at this for me!)

    The wp-config file is pasted below. I have tried it with WPLANG left blank the way it came and with ‘en.mo’ in that spot and it hasn’t seemed to matter. Here’s the code (except for the bottom that is supposed to stay the way it is), and I’m sure it’s right in terms of correct paths/username, etc.

    <?php
    // ** MySQL settings ** //
    define(‘DB_NAME’, ‘world_wordpress’); // The name of the database
    define(‘DB_USER’, ‘world_wordpress’); // Your MySQL username
    define(‘DB_PASSWORD’, ‘songbirdworld’); // …and password
    define(‘DB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    // Change the prefix if you want to have multiple blogs in a single database.
    $table_prefix = ‘wp_’; // example: ‘wp_’ or ‘b2’ or ‘mylogin_’

    // Change this to localize WordPress. A corresponding MO file for the
    // chosen language must be installed to wp-includes/languages.
    // For example, install de.mo to wp-includes/languages and set WPLANG to ‘de’
    // to enable German language support.
    define (‘WPLANG’, ‘en.mo’);

    Thread Starter ranger6350

    (@ranger6350)

    It’s called esecuresite2.com, run by proweb. I have several php bulletin boards, phpmydirectory, etc., set up on this and other sites with them and have had no trouble.

Viewing 6 replies - 1 through 6 (of 6 total)