MTPCenter - server solution for Pinnacle Showcenter
From NAS-Central Buffalo - The Linkstation Wiki
(Difference between revisions)
(→Installation) |
(→Installation) |
||
| Line 66: | Line 66: | ||
[[Image:MTPCenter01.JPG|250px]] | [[Image:MTPCenter01.JPG|250px]] | ||
| - | |||
| + | cd /var/www/linux_mtpcenter_1.0/config | ||
| + | pico config.inc | ||
| + | |||
| + | // Used Language | ||
| + | // possible values so far: "de" "eng" "fr" | ||
| + | $LangUsed="eng"; | ||
| + | |||
| + | |||
| + | // ###### PART: Standard Directories | ||
| + | |||
| + | // Music Main Directory | ||
| + | $MusicDir="/mnt/music/"; | ||
| + | |||
| + | // MP3 Directory | ||
| + | $AudioDir=""; | ||
| + | |||
| + | |||
| + | wget http://www.panczyk.org/linux/linux_mtpcenter_1.0_Update_2.tar.gz | ||
| + | |||
| + | tar zxvf linux_mtpcenter_1.0_Update_2.tar.gz | ||
[[Image:MTPCenter02.JPG]] | [[Image:MTPCenter02.JPG]] | ||
Revision as of 13:17, 6 July 2006
Only notes so far - not finished
Requirements
You will need to install:
apt-get install php4-gd
Installation
cd /var/www
wget http://www.panczyk.org/linux/linux_mtpcenter_1.0.tar.gz
tar zxvf linux_mtpcenter_1.0.tar.gz
cd linux_mtpcenter_1.0
chown -R www-data:www-data /var/www/linux_mtpcenter_1.0
pico /etc/apache/conf.d/mtpcenter
# mtpcenter Apache Virtual Host Configuration file
Listen 8280
<VirtualHost _default_:8280>
DocumentRoot "/var/www/linux_mtpcenter_1.0"
<Directory "/var/www/linux_mtpcenter_1.0">
Options Indexes FollowSymLinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
<IfModule mod_dir.c>
DirectoryIndex index.html index.php
</IfModule>
</VirtualHost>
/etc/init.d/apache restart
http:/<LinkstationIP>:8280
ensure that the following settings in the php.ini are set as listed below
;;;;;;;;;;;;;;;;; ; Data Handling ; ;;;;;;;;;;;;;;;;; ; register_globals = Off
[Informix] (on line 792/1077) ; Initialize session on request startup. session.auto_start = 0
should get this - works on Linkstheater, need to write up the rest
cd /var/www/linux_mtpcenter_1.0/config pico config.inc
// Used Language // possible values so far: "de" "eng" "fr" $LangUsed="eng";
// ###### PART: Standard Directories // Music Main Directory $MusicDir="/mnt/music/"; // MP3 Directory $AudioDir="";
wget http://www.panczyk.org/linux/linux_mtpcenter_1.0_Update_2.tar.gz
tar zxvf linux_mtpcenter_1.0_Update_2.tar.gz

