Hi! Again,
Tried again -- nothing! This is what's happened so far (I'm including everything I added to the directory structure).
Here's what I did:
I created the pixelpost.conf file as follows;
<IfModule !mod_rewrite.c>
LoadModule rewrite_module modules/mod_rewrite.so
</IfModule>
AccessFileName .htaccess
<Files ~ "^\.htaccess$">
order allow,deny
deny from all
</Files>
Alias /pixelpost "/www/webapps/pixelpost"
<Directory "/www/webapps/wordpress">
Options FollowSymLinks
AllowOverride FileInfo
order allow,deny
allow from 127.0.0.1
# allow from all
AddType text/html .php
AddHandler application/x-httpd-php .php
</Directory>
I also created a .htaccess file as follows;
# BEGIN pixelpost
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /pixelpost/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /pixelpost/index.php [L]
</IfModule>
# END pixelpost
I installed pixelpost to C:\www\webapps\, and the following directory tree was created;
DIRECTORY
pixelpost - this folder contains index.php and the .htaccess file
SUB DIRECTORIES
addons
admin - this folder contains install.php
docs
includes - this folder contains the install.php include files ---> functions.php, and "pixelpost.php" (this is the file that contains the required database configuration I mentioned earlier)
language
templates
Below is the pixelpost.php code:
<?php
/*
Pixelpost version 1.5
CVS file version: $Id: pixelpost.php,v 1.15 2006/07/25 18:55:38 gajcy Exp $
Pixelpost www:
http://www.pixelpost.org/Version 1.5:
Development Team:
Ramin Mehran, Connie Mueller-Goedecke, Will Duncan, Joseph Spurling, GeoS
Version 1.1 to Version 1.3: Linus <http://www.shapestyle.se>
Contact:
thecrew@pixelpost.orgCopyright 2006 Pixelpost.org <http://www.pixelpost.org>
License:
http://www.gnu.org/copyleft/gpl.htmlThis program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
// database variables - this is info you've received from you hosting service
// those are needed for the script to connect and use MySQL
$pixelpost_db_host = "localhost"; // database host, often "localhost"
$pixelpost_db_user = "root"; // database user
$pixelpost_db_pass = "rootwdp"; // database user password
$pixelpost_db_pixelpost = "pixelpost"; // database
$pixelpost_db_prefix = "pixelpost_"; // table prefix, leave as is unless you want to install multiple blogs on the same database
// pixelpost version
$version = "MS41IEZpbmFsIC0gSnVseSAyMDA2";
?>
WHEW!!!