From: Franky V. L. <lie...@te...> - 2008-07-29 18:01:01
|
You have an error in your config: $ESPCONFIG['localhost'] = $ESPCONFIG['proto'] . $server['HTTP_HOST'] . 'workdir/phpESP/'; should be: $ESPCONFIG['base_url'] = $ESPCONFIG['proto'] . $server['HTTP_HOST'] . 'workdir/phpESP/'; Franky On Tue, 29 Jul 2008 17:03:46 +0200 To...@we... wrote: > Hello Franky, > > i`ve just chose a css design, which was successfully shown in the > demo, but on my server is always a blank white page with my > questions. Where do i change the layout? Which file is importent? > i`ve modified the default.css file i chose in the beginning of survey > creation and tried to change the background colour but failed > although the path is given in phpesp.ini.php. Here an outtake: > > ---------------------------------------------------------------------------------------- > Here are all the configuration options. > */ > > // use http or https? > $ESPCONFIG['proto'] = 'http://'; > > // Base URL for phpESP > $ESPCONFIG['localhost'] = $ESPCONFIG['proto'] . > $server['HTTP_HOST'] . 'workdir/phpESP/'; > > // URL of the images directory (for <img src='...'> tags) > $ESPCONFIG['image_url'] = $ESPCONFIG['base_url'] . 'images/'; > > // URL of the automatic survey publisher > $ESPCONFIG['autopub_url'] = $ESPCONFIG['base_url'] . > 'public/survey.php'; > > // URL of the CSS directory (for themes) > $ESPCONFIG['css_url'] = $ESPCONFIG['base_url'] . 'public/css/'; > > //URL for management javascript > $ESPCONFIG['js_url'] = $ESPCONFIG['base_url'] . 'js/'; > ---------------------------------------------------------------------------------------- |