dashboard not found

Permalink
Installation into subdir went smooth. Getting into the dashboard gives me some problem; -"The requested URL /index.php/dashboard/ does not exist"-. The subdir I used is actually an addon domain but redirected for now. I used the real address likehttp://www.mydomain.com/addon. Thanks for your help.

hgbeeker
 
Remo replied on at Permalink Reply
Remo
can you create a php file with this content

<?php
phpinfo();
?>

and try to call it like that: info.php/test

does that work? if not, there's a configuration problem on your webserver.. (apache, iis?)
hgbeeker replied on at Permalink Reply
hgbeeker
I think I know what happened. I used the default field settings for domain and subdir at installation, whilst I had to use domain.com/addon. The subdir field however confused me. Now I'm not sure whether I still had to leave the /addon in the subdir field. So, where can I change these settings in the configuration. I still have to change it all over again when I stop the redirect. All else seems to work allright.
Remo replied on at Permalink Reply
Remo
site.php in config..
hgbeeker replied on at Permalink Reply
hgbeeker
Thanks Remo, but still..
A.define('BASE_URL', 'http://www.mydomain.com');
define('DIR_REL', '/addon');
result in:
http://www.mydomain.com/index.php/dashboard/....


B.define('BASE_URL', 'http://www.mydomain.com/addon');
define('DIR_REL', '');
when I go to site addres will result in:
The requested URL /addon/addon/ does not exist.

How can I define these settings.