I'm trying to add file on email template and when I click on "add file" button it shows an empty window titled "choose file". Why this? Can't I add file on email template?
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
Assistance on LimeSurvey forum and LimeSurvey core development are on my free time.
I'm not a LimeSurvey GmbH member. -
Professional support
-
Plugins, theme and development
. I don't answer to private message.
Hi,
I met the problem on my instance. In my case this was due to the fact that my LS server is located behind a reverse proxy that serves requests on https, whereas communication between reverse proxy and my LS server is in http.
I had to add the following line to application/config.config.php within the components array:
'request'=>array(
'hostInfo'=>'
surveys.mycompany.com
',
),
Maybe you will meet another problem with KCfinder: you need to set the cookie domain in the config file of kcfinder. Edit /third_party/kcfinder/conf/config.php
In the 'cookieDomain' => "", line add your server url -> 'cookieDomain' => "surveys.mycompany.com",