links give error (Oops! This link appears to be broken.)

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

  • @tebertan can You show me your config.php and .htaccess file - it sounds like there's a conflict there.
  • (config.php)
    <?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

  • In config.php make
    $config['site']['path'] = ''; <--Those are two single quotes. Instead of false<br />and in .htaccess
    RewriteBase / <-- instead of /mublog/
  • no it didnt work ,
    btw im using goddady deluxe hosting package maybe its about it , idk
    do you have any idea?
  • @tebertan Can you make a php file called something like test.php with the contents

    <?php
    phpinfo();
    ?>

    And stick it on your site so that I can see your php version and modules?
  • @tebertan So I may have a solution,
    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...
  • how can i find this php.ini file, there is no web or conf directories in the statusnet files which i uploaded on my host,
    can you tell me where is it ?
    thx for help, i apreciate :)
  • @tebertan I think you'll have to talk to godaddy, I got that folder from the phpinfo file you linked.
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