The requested URL /Ushahidi_Web/admin/login was not found on this server


#1

Once the installation finish it doesn’t open the requested URL /Ushahidi_Web/admin/login.

View your page

Upload report data    etc … was not found on this server.


#2

Hi,

Check ur .htaccess  and config.php (path/application/config) files.

The .htaccess should look something like this:

Turn on URL rewriting only when mod rewrite is turn on

RewriteEngine On

Installation directory

RewriteBase /Site_Name

Protect application and system files from being viewed

RewriteRule ^(application|modules|system|tests|sql) – [F,L]

Allow any files or directories that exist to be displayed directly

RewriteCond %{REQUEST_FILENAME} !-f

RewriteCond %{REQUEST_FILENAME} !-d

Rewrite all other URLs to index.php/URL

RewriteRule .* index.php?kohana_uri=$0 [L,QSA]

Protect the htaccess from being viewed

<Files .htaccess>

order allow,deny

deny from all

Don’t show directory listings for URLs which map to a directory.

Options -Indexes

#Follow symlinks

Options +FollowSymlinks

For the config.php file, edit the $config[‘index_page’] = ‘ ‘; to this:

$config[‘index_page’] = ‘index.php’;

 

Sharon.


#3

than rutto,

the problem was at config.php file . now its ok

there is another issue

http://localhost/ushahidi/admin/addons/plugins/    was not found on this server

how to sort it out

Chandana