i created my statusnet site on
http://cmktpn.co.cc/ , it installed fine and i can open main page, but the links on main page arenot working , they give me the links are broken error. (Oops! This link appears to be broken.)
p.s: i also tried with another pc it says "no input file"
Comments
<?php<br />if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
$config['site']['name'] = 'yenisite ';
$config['site']['server'] = 'cmktpn.co.cc';
$config['site']['path'] = false;
$config['db']['database'] = 'mysqli://cmktpn:(mypassword)@cmktpn.db.hostedresource.com/cmktpn';
$config['db']['type'] = 'mysql';
(htaccess.sample file no .htaccess in the main directory)
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
$config['site']['path'] = '';<--Those are two single quotes. Instead of false<br />and in .htaccessRewriteBase /<-- instead of /mublog/btw im using goddady deluxe hosting package maybe its about it , idk
do you have any idea?
<?php
phpinfo();
?>
And stick it on your site so that I can see your php version and modules?
in your php.ini file (/web/conf/php5.ini) look for doc_root and set it to ""
doc_root = ""But more importantly it seems that you do not have mod_rewrite enabled, you may need to talk to your host...
can you tell me where is it ?
thx for help, i apreciate :)