• Ok, this is my fourth attempt. Thought I’d cracked it on the third attempt but it seems everything has gone down again!

    I wanted to install wordpress on our streamline.net account (on the sub domain susanne.treacletheatre.co.uk) – set up the database, loaded up the files, followed all the instructions, etc.

    2 days ago it was working fine (for one session, in which I uploaded some initial themes, put in the user settings, changed the password, tested to see if the site was where I wanted it (it was), and had a general browse). I tried again today. Nothing, just the usual:

    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, [email protected] and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log.

    Hmmm? This is the second time this happened (after the first problem I started from scratch), so I guess it is something wrong with my upload or the FTP manager (checked and all the files were there). I have tried everything on https://codex.www.ads-software.com/Login_Trouble apart from the scary editing stuff in PHPmyAdmin.

    Only other note that may be relevant is that I moved the index.php into the main ht-docs folder, leaving the rest in the wordpress folder. rerouted it though and this was all before it ‘worked’ for an initial login.

    Any help really appreciated. Let me know if i can provide any extra info…
    Kaspar

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter kaspar wimberley

    (@kaspar-wimberley)

    If this helps…this is the index.php in root /htdocs /wordpress /wp-admin

    <?php
    /**
    * Dashboard Administration Panel
    *
    * @package WordPress
    * @subpackage Administration
    */

    /** Load WordPress Bootstrap */
    require_once(‘admin.php’);

    /** Load WordPress dashboard API */
    require_once(ABSPATH . ‘wp-admin/includes/dashboard.php’);

    wp_dashboard_setup();

    wp_enqueue_script( ‘dashboard’ );
    wp_enqueue_script( ‘plugin-install’ );
    wp_enqueue_script( ‘media-upload’ );
    wp_admin_css( ‘dashboard’ );
    wp_admin_css( ‘plugin-install’ );
    add_thickbox();

    $title = __(‘Dashboard’);
    $parent_file = ‘index.php’;
    require_once(‘admin-header.php’);

    $today = current_time(‘mysql’, 1);
    ?>

    <div class=”wrap”>
    <?php screen_icon(); ?>
    <h2><?php echo esc_html( $title ); ?></h2>

    <div id=”dashboard-widgets-wrap”>

    <?php wp_dashboard(); ?>

    <div class=”clear”></div>
    </div><!– dashboard-widgets-wrap –>

    </div><!– wrap –>

    <?php require(ABSPATH . ‘wp-admin/admin-footer.php’); ?>

    Thread Starter kaspar wimberley

    (@kaspar-wimberley)

    this is the index.php in root /htdocs

    <?php
    /**
    * Front to the WordPress application. This file doesn’t do anything, but loads
    * wp-blog-header.php which does and tells WordPress to load the theme.
    *
    * @package WordPress
    */

    /**
    * Tells WordPress to load the WordPress theme and output it.
    *
    * @var bool
    */
    define(‘WP_USE_THEMES’, true);

    /** Loads the WordPress Environment and Template */
    require(‘./wordpress/wp-blog-header.php’);
    ?>

    Thread Starter kaspar wimberley

    (@kaspar-wimberley)

    the wp-login in “root /htdocs /wordpress” and the admin.php in ” root /htdocs /wordpress /wp-admin” are a bit long – so only if you need them…

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Please help – was working and now it’s gone again!’ is closed to new replies.