Client data available & bb-hostsvc.sh
list Charles Jones
Whenever I click the "client data available" link, instead of seeing the client data, I am prompted to download a file called "bb-hostsvc.sh". I searched the archive and saw someone else mention this, but no resolution? -Charles
list Mike Arnold
▸
Charles Jones wrote:
Whenever I click the "client data available" link, instead of seeing the client data, I am prompted to download a file called "bb-hostsvc.sh". I searched the archive and saw someone else mention this, but no resolution? -Charles
I would have to assume your webserver was mis-configured. Assuming you
use apache, and assuming you use the hobbit-apache.conf that provides
these settings:
ScriptAlias /hobbit-cgi/ "/usr/libexec/hobbit/cgi-bin/"
<Directory "/usr/libexec/hobbit/cgi-bin">
AllowOverride None
Options ExecCGI Includes
Order allow,deny
Allow from all
</Directory>
I would think you may have a stray MIME setting somewhere. Check for
DefaultType, AddHandler, or AddType in your http.conf setting *.sh to
Text.
--
-mike
list Charles Jones
I double-checked my conf.d/hobbit.conf and it does have the correct settings. And, lo and behold without me changing anything, today the client data available links work properly again. I think its a random occurence, like when the "info", status does the same thing. -Charles
▸
Mike Arnold wrote:Charles Jones wrote:Whenever I click the "client data available" link, instead of seeing the client data, I am prompted to download a file called "bb-hostsvc.sh". I searched the archive and saw someone else mention this, but no resolution? -CharlesI would have to assume your webserver was mis-configured. Assuming you use apache, and assuming you use the hobbit-apache.conf that provides these settings: ScriptAlias /hobbit-cgi/ "/usr/libexec/hobbit/cgi-bin/" <Directory "/usr/libexec/hobbit/cgi-bin"> AllowOverride None Options ExecCGI Includes Order allow,deny Allow from all </Directory> I would think you may have a stray MIME setting somewhere. Check for DefaultType, AddHandler, or AddType in your http.conf setting *.sh to Text.