spectron
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Dashboard Shows Posts but web shows directory treeI got it now. Replacing REQUEST_FILENAME with index.php loads the index.page!
Forum: Installing WordPress
In reply to: Dashboard Shows Posts but web shows directory treeJust tried something on a whim, googled .htaccess for wordpress and found a post in one of the wordpress forums for a suggested .htaccess file.
Created it in notepad with this:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Uploaded to root ans when i go to spectron.net/wordpress i still get the directory tree but, now if I click on spectron.net/wordpress/index.php the page now loads whereas before it did not. So how do i get the spectron.net/wordpress to load the index.php?
Forum: Installing WordPress
In reply to: Dashboard Shows Posts but web shows directory treeThanks tried them and still same issue. Server host is Verio who does support WordPress.
Forum: Installing WordPress
In reply to: Dashboard Shows Posts but web shows directory treeRoot .htaccess file is:
DirectoryIndex welcome.html welcome.shtml index.html index.shtml home.html home.shtml welcome.htm index.htm default.htm home.htm
there is no .htaccess file in the wordpress directory
Forum: Installing WordPress
In reply to: WordPress not updating index.phpindex.php was created an located on the server in the wordpress directory.
It’s:
<?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/wp-blog-header.php’);
?>