MTPCenter - server solution for Pinnacle Showcenter
From NAS-Central Buffalo - The Linkstation Wiki
(Difference between revisions)
(→Installation) |
|||
| Line 1: | Line 1: | ||
| + | [[Image:MTPCenter02.png]] | ||
| + | |||
<big><font color=red>Only notes so far - not finished</font></big> | <big><font color=red>Only notes so far - not finished</font></big> | ||
| Line 15: | Line 17: | ||
=== Installation === | === Installation === | ||
| + | Download MTPCenter into apache's DocumentRoot | ||
cd /var/www | cd /var/www | ||
| - | + | <nowiki>wget http://www.panczyk.org/linux/linux_mtpcenter_1.0.tar.gz</nowiki> | |
| - | wget http://www.panczyk.org/linux/linux_mtpcenter_1.0.tar.gz | + | |
| + | Untar the downloaded file and enter the new directory | ||
tar zxvf linux_mtpcenter_1.0.tar.gz | tar zxvf linux_mtpcenter_1.0.tar.gz | ||
| - | |||
cd linux_mtpcenter_1.0 | cd linux_mtpcenter_1.0 | ||
| - | + | Change user:group | |
| + | |||
| + | chown -R www-data:www-data /var/www/linux_mtpcenter_1.0 | ||
| + | === Apache === | ||
| + | |||
| + | Now you will need to create a file in apache to see MTPCenter | ||
pico /etc/apache/conf.d/mtpcenter | pico /etc/apache/conf.d/mtpcenter | ||
| + | |||
| + | and add this to that file | ||
# mtpcenter Apache Virtual Host Configuration file | # mtpcenter Apache Virtual Host Configuration file | ||
| Line 43: | Line 53: | ||
</VirtualHost> | </VirtualHost> | ||
| + | Restart apache | ||
/etc/init.d/apache restart | /etc/init.d/apache restart | ||
| + | == Run It == | ||
| + | |||
| + | Go to MTPCenter on your Linkstation | ||
| + | |||
http:/<LinkstationIP>:8280 | http:/<LinkstationIP>:8280 | ||
| - | ensure that the following settings in | + | ensure that the following settings in your php.ini are set as listed below |
;;;;;;;;;;;;;;;;; | ;;;;;;;;;;;;;;;;; | ||
| Line 58: | Line 73: | ||
| - | [Informix] (on line 792/1077) | + | [Informix] <font color=green>(on line 792/1077)</font> |
; Initialize session on request startup. | ; Initialize session on request startup. | ||
session.auto_start = 0 | session.auto_start = 0 | ||
| - | should get this - | + | You should get this - |
[[Image:MTPCenter01.JPG|250px]] | [[Image:MTPCenter01.JPG|250px]] | ||
| + | The next thing to do is change the language - unless you are German ofcourse | ||
cd /var/www/linux_mtpcenter_1.0/config | cd /var/www/linux_mtpcenter_1.0/config | ||
| Line 73: | Line 89: | ||
// Used Language | // Used Language | ||
// possible values so far: "de" "eng" "fr" | // possible values so far: "de" "eng" "fr" | ||
| - | $LangUsed="eng"; | + | $LangUsed="<strike>de</strike>"; <font color=red>"eng";</font> |
| + | You'll need to enter directories where you want MTPCenter to look for your files in the relevent section and enter MySQL details etc... | ||
// ###### PART: Standard Directories | // ###### PART: Standard Directories | ||
Revision as of 17:18, 6 July 2006
Only notes so far - not finished
Contents |
Requirements
You will need to install:
apt-get install php4-gd
Installation
Download MTPCenter into apache's DocumentRoot
cd /var/www wget http://www.panczyk.org/linux/linux_mtpcenter_1.0.tar.gz
Untar the downloaded file and enter the new directory
tar zxvf linux_mtpcenter_1.0.tar.gz cd linux_mtpcenter_1.0
Change user:group
chown -R www-data:www-data /var/www/linux_mtpcenter_1.0
Apache
Now you will need to create a file in apache to see MTPCenter
pico /etc/apache/conf.d/mtpcenter
and add this to that file
# 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>
Restart apache
/etc/init.d/apache restart
Run It
Go to MTPCenter on your Linkstation
http:/<LinkstationIP>:8280
ensure that the following settings in your 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
You should get this -
The next thing to do is change the language - unless you are German ofcourse
cd /var/www/linux_mtpcenter_1.0/config pico config.inc
// Used Language // possible values so far: "de" "eng" "fr" $LangUsed="de"; "eng";
You'll need to enter directories where you want MTPCenter to look for your files in the relevent section and enter MySQL details etc...
// ###### PART: Standard Directories // Music Main Directory $MusicDir="/mnt/music/"; // MP3 Directory $AudioDir="";
Update
wget http://www.panczyk.org/linux/linux_mtpcenter_1.0_Update_2.tar.gz tar zxvf linux_mtpcenter_1.0_Update_2.tar.gz
// ######## Added for Update2
$Music_Stream=true;
$Music_Sort_Type = array("Title", "Title", "Track", "Title", "Title", "Title", "Track", "Title");
$External_Remux=false;
$External_Identify=array('-PIN-230','-VNE-258',,,);
$External_Write_SH=true;
$External_Script="temp/externremux.sh";
$External_Software="/usr/local/bin/ts2ps <VPID> <APID>";


