Aight, all I want to do is be able to play mp3s by clicking links on a webpage...
IE, two comptuers:
computer1: mp3 server
computer2: regular old crappy windows computer
I click a link on computer2 on a webpage hosted by computer1. Computer1 runs the Perl / PHP script I clicked on, and starts mpg123 playing the song.
PROBLEM:
When I do this, mpg123 dies with a Signal 11, which I believe is a Segmentation Fault. I would assume this is because either the 'nobody' user doesnt have permissions to start mpg123, or something else to do with mpg123 being started as user 'nobody' because the script works fine if I execute it via shell ( perl MyPerlScript.pl )
Does anyone know how I could fix this / why this happens?