Reply To: trouble with accented characters

#17601
Anonymous
Inactive

Thanks. Should have found that myself.

OK, following those instructions, I compiled and installed it. The first time I tried to run it, it complained that the plugins directory was not specfied in the mt-daapd.conf. Fixed that.

But now, nothing happens when I try to run it. My startup script executes but nothing is loaded.

FWIW, here is my mt-daapd.conf file:

#
# mt-daapd.conf
#
# Edited: Sat Aug 16 13:01:52 2008
# By:
#
web_root /usr/local/share/mt-daapd/admin-root
port 3689
admin_pw ********
mp3_dir /media/disk8/Music
servername venus
runas daapd
playlist /usr/local/etc/mt-daapd.playlist
extensions .mp3,.m4a,.m4p,.ogg,.flac,.ape,.mpc
db_dir /var/db/mt-daapd
rescan_interval 30
scan_type 1
always_scan 1
logfile /var/log/mt-daapd.log
process_m3u 1
compress 1
[plugins]
plugin_dir = /usr/local/share/mt-daapd/plugins

and this is the startup script, which I think the port installed:

#!/bin/sh
#
# $FreeBSD: ports/audio/mt-daapd/files/mt-daapd.sh.in,v 1.1 2006/06/25 13:17:25 itetcu Exp $
# formerly $ FreeBSD: ports/audio/mt-daapd/files/mt-daapd.sh,v 1.1 2004/07/19 09:18:51 edwin Exp $

# PROVIDE: mt-daapd
# REQUIRE: LOGIN

. /etc/rc.subr

name="mtdaapd"
rcvar="mt_daapd_enable"

command="/usr/local/sbin/mt-daapd"
command_args="-c /usr/local/etc/mt-daapd.conf"
pidfile="/var/run/mt-daapd.pid"
required_dirs="/var/db/mt-daapd"
required_files="/usr/local/etc/mt-daapd.conf.sample"

load_rc_config "$name"
run_rc_command "$1"

Anything catch your eye?

Thanks.