I've searched all over the place and nothing seems to make this work. I have changed the Define ABSPATH in step 4 to be the directory of my blog. Ive done installs in both seperate, and the same directories. Ive tried every conceivable definition for ABSPATH, but no matter what i do it always says it cant wp-config.php, even when i have made copies of wp-config.php and pasted them into every directory that the error says it cannot find the file in. Look:
I realize the text is small, but it says: file not found /storefront/blog/wp-config.php
Which is exactly where the file is. so......WTF?! Im starting to rage its been three days and ive read a solid 50 pages of this thread.
Here is my wordpress config file:
<?php
//
// wordpress on zencart by http://www.s-page.net/
//
define ('ABSPATH','/storefront/blog/');
$woz_install=0;
if (file_exists(ABSPATH.'wp-config.php')) {
$woz_install=1;
define('WP_USE_THEMES', true);
$wp_did_header = true;
require_once(ABSPATH.'wp-config.php');
$i=strlen(DIR_WS_CATALOG);
$req=substr($_SERVER['REQUEST_URI'],$i,1);
if($req=='?'){
$_GET['main_page']='wordpress';
}
if(isset($_GET['feed'])){
wp();
gzip_compression();
// require_once('./wordpress/wp-includes/template-loader.php');
require_once(ABSPATH . WPINC . '/template-loader.php');
exit();
}
}
?>




Reply With Quote

