Status 1.0.1 Fancy URL issue

edited February 2012 in Installation
Hi everyone,

The other day installed statusnet 1.0.1 on a shared mayfirst.org server
mod_rewrite was enabled before the install but after the installation I have a bit of an issue, namely that fancy works and doesn't. This is what I mean, the site and user status.cyberunions.org/mv works but the site defaults to status.cyberunions.org/index.php/mv instead.

This is my htaccess and config.php files as they currently stand

IfModule mod_rewrite.c>
RewriteEngine On

# NOTE: change this to your actual StatusNet base URL path,
# minus the domain part:
#
# http://example.com/ => /
# http://example.com/mublog/ => /mublog/
#
RewriteBase /

## Uncomment these if having trouble with API authentication
## when PHP is running in CGI or FastCGI mode.
#
#RewriteCond %{HTTP:Authorization} ^(.*)
#RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php?p=$1 [L,QSA]




Order allow,deny



Config.php

<?php
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }

$config['site']['name'] = 'Cyberunions';
$config['site']['server'] = 'status.cyberunions.org';
$config['site']['path'] = '';
$config['site']['fancy'] = true;

$config['db']['database'] = 'REDACTED';

$config['db']['type'] = 'mysql';

$config['site']['profile'] = 'community';

addPlugin('Autocomplete');



Any help or suggestions...I did some tests with @deepspawn of brainbird, suggestion is to rebuild the db and make sure fancy url works before adding subscriptions. Just want to get feedback from the community before I do the db thing
Sign In or Register to comment.

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID