Topic: WordPress 2.8 install

Hi

Installed Mowes portable II.  Mediawiki works, PHPadmin works, SugarCRM works - great stuff.

Wordpress 2.8 package doesn't, the link http://127.0.0.1:8080/wordpress produces a http 404 page not found

Index.php in ~www/wordpress is

<?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('./wp-blog-header.php');
?>

wp-blog-header.php is

<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/

if ( !isset($wp_did_header) ) {

    $wp_did_header = true;

    require_once( dirname(__FILE__) . '/wp-load.php' );

    wp();

    require_once( ABSPATH . WPINC . '/template-loader.php' );

}

?>

Anyone any ideas? Anyone have 2.8 working?

Thanks

Elraidor

Re: WordPress 2.8 install

I remember some other post here that in wordpress, if you change the port, you need to change the config file as well....  there should be something like $somevar = "http://localhost/wordpress"; change it to $somevar = "Http://localhost:8080";