Recent Topics

1 Jan 19, 2009 01:11    

My b2evolution Version: Not Entered

My home page order for Windows hosting at godaddy is default.php first then index.php. So when going to my domain root it displays the wrong home page. For the time being I renamed my my default.php in my root to xdefault.php. Is there some place where I can correct the link to " View Default Page >>" in Administrative tasks under the Dashboard ? I know that I do not need my default.php but any broken links bother me.

2 Jan 19, 2009 06:12

Yeah check out inc/dashboard/dashboard.ctrl.php looking for "default.php" and change it to whatever you dig on.

Broken links suck. But hey it could be worse right? Like, your links work but ... uh ... oh crap it actually can't be worse than that :(

4 Jan 19, 2009 17:17

Thanks for the pointer, I assumed the links were created dynamicly DuH ! I did try the .htaccess fix but my windows hosting does not give me the option to decide which precident order is set for default home pages and ignors this file.

5 Jan 19, 2009 17:55

Ahh, windows ... hmmm, try saving this as web.config and seeing if it works

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
    <system.webServer>
        <defaultDocument>
            <files>
                <add value="index.php" />
            </files>
        </defaultDocument>
    </system.webServer>
</configuration>

¥


Form is loading...