Is it possible to have the local index search used by default, rather than the the peer-to-peer network?
you can either switch to robinson mode or switch off “Index Receive” in Peer-to-peer mode in /ConfigNetwork_p.html
.
Not sure if it’s possible just to switch the default, shouldn’t be difficult to code that, you can start an issue asking for improvement (or better, change the code yourself).
Late but
In the index.html (htroot)
Lines 114 and 115 just move
checked=checked
to the line bellow.
(Should work)
Before
<input type=radio name=resource id=rglobal value=global checked=checked /><label for=rglobal>the peer-to-peer network</label>
<input type=radio name=resource id=rlocal value=local><label for=rlocal>only the local index</label>
After
<input type=radio name=resource id=rglobal value=global /><label for=rglobal>the peer-to-peer network</label>
<input type=radio name=resource id=rlocal value=local checked=checked ><label for=rlocal>only the local index</label>
1 Like