Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Forum: Fixing WordPress
    In reply to: I broke my site
    Thread Starter carlman3

    (@carlman3)

    The original developer got the site back up and running.. Not sure the extent of the issues but it’s mostly fixed now. Thanks for the helpful responses.
    -Carl

    Forum: Fixing WordPress
    In reply to: I broke my site
    Thread Starter carlman3

    (@carlman3)

    If anyone is interested in helping me for pay, please contact me via PM here or email, cmcmillan3 at yahoo dot com.
    Thanks,
    Carl

    Forum: Fixing WordPress
    In reply to: I broke my site
    Thread Starter carlman3

    (@carlman3)

    OK.. So I have moved all my styles (comments and styles.php) into 1, stylesheet.css to get the site to look good on everything but the front page.
    The only thing missing is the most important, the actual articles and their categories or ‘posts’.. They are all missing. They are in the database, I can see it all in the admin, it just doesn’t display.
    The pagezone div appears to be missing..
    I have a friend helping me but he is not a WordPress person but knows a lot more than me in programming.

    We’re stuck. Thanks for the help!

    -Carl

    Forum: Fixing WordPress
    In reply to: I broke my site
    Thread Starter carlman3

    (@carlman3)

    You may be correct about the style or css.. sounds completely plausible.
    Here is the style.php file contents:

    <?php
    
    require_once '../../../wp-blog-header.php';
    
    if (isset($options['style'])) {
    
    if ($options['text_direction'] == 'rtl') {
    header('Content-type: text/css');
    print <<<_CSS
    @import url(styles/${options['style']}/stylesheet.css);
    @import url(styles/${options['style']}/rtl.css);
    _CSS;
    } else {
    header('Content-type: text/css');
    print <<<_CSS
    @import url(styles/${options['style']}/stylesheet.css);
    _CSS;
    }
    
    } else {
    
    header('Content-type: text/css');
    print <<<_CSS
    @import url(styles/default/stylesheet.css);
    _CSS;
    
    }
    
    ?>

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