this is my .htaccess file :
####
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 /mublog/
## 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
###
this is my config.php file:
###
<?php<br />if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
$config['site']['name'] = 'mysite';
$config['site']['server'] = 'mysite.com';
$config['site']['path'] = ' ';
$config['site']['fancy'] = false;
$config['site']['mobile'] = true;
$config['db']['database'] = 'mysql';
$config['db']['type'] = 'mysql';
###
if i change the fancy config to 'true' , my site is show blank page. please help me, because i run a serious site for my college..
Comments
RewriteBase /Did you read the README section I sent you when you PM'd me?
You will also need to have mod_rewrite for apache enabled if apache is your webserver.
Sorry, i am a beginner.
Do you have shared hosting or is it a VPS/Dedicated solution?
thanks jordanc!