HowTo:Fix default config

From iFolder

Tested with: ifolder-server-svn-3.6.7200.1dl9pf-2.1 ( from http://software.opensuse.org/download/home:/dl9pf/ )

http://localhost/admin

login as admin simias

goto servers tab

Note private and public URL (not correct!)

select host1

--> ***error***



Solution

There are 2 possible Solutions:

Solution A

(as root)

rcapache2 stop

edit /var/lib/simias/Simias.config and change/add these lines:

simple version: (no networked clients ...)

<section name="Server">
 <setting name="Name" value="Host1" />
 <setting name="PublicAddress" value="http://localhost/simias10" /> 
 <setting name="PrivateAddress" value="http://localhost/simias10" /> 
</section>

better version:

<section name="Server">
 <setting name="Name" value="Host1" />
 <setting name="PublicAddress" value="http://<your servers ip>/simias10" /> 
 <setting name="PrivateAddress" value="http://<your servers ip>/simias10" /> 
</section>


save and quit

rcapache2 start

Now the URL is correct and the system works.

Solution B

(as root)

rcapache2 stop
rm /etc/apache2/conf.d/ifolder-server.conf

run

simias-server-setup
ifolder-web-setup
ifolder-admin-setup


--Dl9pf 15:34, 19 Jul 2007 (EDT)

(Tnx go to Thomas for getting this to work)