spacer
spacer search

SwissCenter

Search
spacer
Main Menu
Home
Documentation + FAQ
Screenshots
Downloads
Forums
Bug Tracking
History
Login
Username

Password

Remember me
?
No account yet?

Locations of visitors to this page

 
Home arrow Forums

SwissCenter Forums  


<< Start < Previous 1 2 3 4 5 6 Next > End >>
Re: Manual to install Swisscenter on Synology CS/DS - 2009/10/11 04:19 Hi Klaasvaak.

I deleted the virtual host and did again the steps except for creating the virtualhost by Synology.

However with the chmod line same result. I have to point out that in the step before I got the following text when entering the code:

volume1> cd /usr/syno/bin/
volume1> ln -s /bin/ls /usr/syno/bin/ls
ln: /usr/syno/bin/ls: File exists

Has this something to do with it?

Kind regards,

Hanamail
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/10/11 10:10 humm, not good ...

If you get the message
Code:

 file exists

it means that the symlink is not established. I'm not sure what's causing this. You may try the following:
Code:

 cd /usr/syno/bin/  ln -sf /bin/ls /usr/syno/bin/ls

and see if this works.

If not, I suggest you reinstall the latest Synology firmware once again (you won't loose your data) and try installing SwissCenter again; that's probably the quickest way to get SwissCenter rolling again.

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1318
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0914
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/10/17 06:00 Hello Hanamail & Klaas.

I did some experimenting with the virtual host menu. Below my observations:

1.
Creating a virtual host in the Synology menu will overwrite the existing httpd-vhost.conf-user file. So any changes made in step 4 will be undone. (That’s why you need to do this step before step 4. And thereafter you should not use this Synology function anymore)

2.
Creating the virtual host will result in some error messages in the existing httpd-vhost.conf-user file such as:

ErrorDocument 403 /webdefault/sample.php
ErrorDocument 404 /webdefault/sample.php
ErrorDocument 500 /webdefault/sample.php


3.
Creating a virtual host in the Synology menu will create a direcrtory directly in the \volume1\web directory. While I guess it should be created in the directory \volume1\web\svr instead. (and I don’t know how to change the path to \volume1\web\svr\swiss via the Synology virtual host menu.)

- - -

So my experience is that its better not to use the virtual host option in the Synology menu.
Just change the httpd-vhost.conf-user file with the one in step 4.

(Though the error messages can be omitted. And the IP range after the code “Allow from” may be different for everybody. I use : Allow from 192.168.1.

So my httpd-vhost.conf-user looks like this:

Code:

 Listen 8050  NameVirtualHost *:8050  NameVirtualHost *:80  <VirtualHost *:80>  ServerName *  DocumentRoot /var/services/web  </VirtualHost>  <VirtualHost *:8050>    ServerName SwissCenter    DocumentRoot "/volume1/Web/svr/swiss"    <Directory "/volume1/Web/svr/swiss">      Options Indexes FollowSymlinks MultiViews      AllowOverride None      Order deny,allow      Deny from all      Allow from 192.168.1    </Directory>    <IfModule mod_dir>      DirectoryIndex index.html index.php    </IfModule>    Alias /root"/" </VirtualHost>




Klaas, I appreciate your view on this. Any particular reason that you want to use the virtual host menu of the Synology? (As I don’t see the added value)

And where you able to create the virtual host with the correct path via the Synology?
QNAP TS-509 (1.6 MHz, 4 GB ) – Linux - PHP 5.2.11, MySQL 5.1.36 & Apache ??? – Swisscenter SVN [1405]
Custom PC (2.8 MHz, 4GB ) – Windows 7 Pro - PHP 5.2.9-1, MySQL 5.1.32 & Simese v2.5.10 - Swisscenter SVN [1376]
Synology CS407 (0.5 MHz, 128 ) – Linux - PHP 5.2.10, MySQL 5.1.34 & Apache
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/10/18 04:19 Hi Wouter,

Your observation is correct; it isn't really needed to switch on the VirtualHost in the Synology control panel. The reason why I included in the manual to do so (step 2), is that it may help users to adjust file 'httpd-vhost.conf-user' as the path to the VirtualHost is already there.


Wouter wrote
And where you able to create the virtual host with the correct path via the Synology? ]
I think so, but cannot test this for a while as I'm in Darfur for another 10 days. As soon as I'm back in The Netherlands, I'll test it, and get back to you.

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1318
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0914
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/10/18 07:17 Hello Klaasvaak and Dutchsea,

I have the SC working on my DS. I have deleted all SC files on the DS and recreated manually the web/svr/swiss folders. I have taken and used the script from Dutchsea and did not create the virtual host via the DS. Lo and behold it worked!

A big thank you to both of you!

Regards,

Hanamail
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/10/18 07:26 Good to hear you've got it working again. Apparently step [2] of the manual is more confusing than helping, so I adjust the manual

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1318
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0914
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/10/18 17:04 Same here! I am happy to have made a small contribution for a change.
(after recieving much help from others in this forum)
QNAP TS-509 (1.6 MHz, 4 GB ) – Linux - PHP 5.2.11, MySQL 5.1.36 & Apache ??? – Swisscenter SVN [1405]
Custom PC (2.8 MHz, 4GB ) – Windows 7 Pro - PHP 5.2.9-1, MySQL 5.1.32 & Simese v2.5.10 - Swisscenter SVN [1376]
Synology CS407 (0.5 MHz, 128 ) – Linux - PHP 5.2.10, MySQL 5.1.34 & Apache
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/02 15:47 I have installed Swisscenter on my DS209+11 as per the install manual, when I enter http://<ds server ip:8050/config> I get the synology Sorry, the page you are looking for is not found.
Can anyone help?
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/02 17:41 There're might be an issue with your VirtualHost, could you post the contents of your '/usr/syno/etc/httpd-vhost.conf-user'-file.

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1339
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/04 04:32 Hi,
I have reinstalled my firmware and will install Swisscenter again, I will see if it then works. if not I will be back, thanks for your help.
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/06 12:35 Nope, I still get the same synology screen, below is my conf-user file contents.

Listen 8050
NameVirtualHost *:8050
NameVirtualHost *:80
<VirtualHost *:80>
ServerName *
DocumentRoot /var/services/web
</VirtualHost>

<VirtualHost *:8050>
ServerName Swisscenter
DocumentRoot "/var/services/web/svr/swiss"
<Directory "/volume1/web/svr/swiss">
Options Indexes FollowSymlinks Multiviews
AllowOverride None
Order deny,allow
Deny from all
Allow from 192.168.0
</Directory>
</IfModule mod_dir>
DirectoryIndex index.html index.php
</Ifmodule>
Alias /root/ "/"
</VirtualHost>
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/06 15:36 ah … I see, you’ve got an error in your VirtualHost. You should change the SwissCenter DcoumentRoot

from
Code:

 DocumentRoot "/var/services/web/svr/swiss"

into
Code:

 DocumentRoot "/volume1/web/svr/swiss"

Besides, you must be aware that all Synology NAS boxes are case sensitive.

Hope this helps,

reards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1339
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 03:59 Hi

in the Step 2:
[2] created in the same VirtualHost menu with the following path: Code:
/ volume1/web/svr/swiss /

because when creating VirtualHost I can not use the character "/" I do not write anything.
although I can not copy-paste to create the VirtualHost

My written English was created solely by google translate, like the bed
I apologize, then for errors and omissions arising from this use


Regard
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 13:09 Simply copy and paste won't work. With command
Code:

 vi

you open the file. Then, to edit the file you should use the command
Code:

 SHIFT i

(capital i)

After the editing, you press
Code:

 esc

and
Code:

 SHIFT zz

(capital zz)

Restart Apache, and your VirtualHost should be working. Hope this helps,

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1342
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 13:25 Hello!

I installed SC with your manual, it starts well. But I can´t start the media search.
I used http://ip/media_search, but nothing happens.
In the log file only this entry is found:

[2009.12.15 18:59:11] Set system preference 'MEDIA_SCAN_STATUS' to 'Läuft'
[2009.12.15 18:59:11] Refreshing MOVIES database
[2009.12.15 18:59:11] Scanning : /volume1/video/

I tried the installation two times, but I can´t find a failure...
I had installed SC a few month ago, without any problems.

Maybe you can help me.
Thank you!

Regards
Thomas
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 13:55 klaasvaak

the my problem is rappresent in the attachment image

rename file without .zip

Raffaele
File Attachment:
File name: VirtualHost.JPG.zip
File size:85093 bytes
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 14:39 @ziobill

aha … I see what you mean. Due to some unclarity in the manual, some users may have problems with the creation of the VirtualHost (as pointed out by Dutchsea).

The issues may occur when using the Synology configuration menu to create VirtualHost. Basically, it’s best not to use it and create the VirtualHost manually in file ’/usr/syno/etc/httpd-vhost.conf-user'.

Have a look at the rephrased manual step [2], [3] and [4]; if you follow these steps I expect your issue to disappear.

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1342
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 14:49 @Thomas

This is odd, as your logfile mentions that the system is scanning.

There are two options that you can try, in stead of
Code:

 http://<IP>/media_search

try
Code:

 http://<IP>:<port>/media_search.php

However, you may find it easier to use the SwissCenter Configuration Utility, menu Media Management, option Search For New Media.

If it still doesn’t work, please post the log files (level 8) for both options.

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1342
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 15:29 I´ve tried it with php at the end and in the Configuration Menu.
This is the log when I start it in the menu:

[2009.12.15 21:23:07] Page Requested : http://192.168.0.2:8050/config/index.php by client (192.168.0.109)
[2009.12.15 21:23:08] Set system preference 'MEDIA_SCAN_TYPE' to 'MEDIA'
[2009.12.15 21:23:08] Set system preference 'MEDIA_SCAN_MEDIA_TYPE' to ''
[2009.12.15 21:23:08] Set system preference 'MEDIA_SCAN_CATEGORY' to ''
[2009.12.15 21:23:08] Set system preference 'MEDIA_SCAN_REFRESH_METADATA' to 'YES'
[2009.12.15 21:23:08] Set system preference 'MEDIA_SCAN_ITUNES' to 'NO'
[2009.12.15 21:23:08] Set system preference 'MEDIA_SCAN_CLEANUP' to 'YES'
[2009.12.15 21:23:08] Set system preference 'MEDIA_SCAN_RSS' to ''
[2009.12.15 21:23:08] Set system preference 'MEDIA_SCAN_STATUS' to 'Anstehend'
[2009.12.15 21:23:08] Executing (via wget) URL in the background: media_search.php
[2009.12.15 21:23:08] Device details (in the session)
[2009.12.15 21:23:08] Array
[2009.12.15 21:23:08] (
[2009.12.15 21:23:08] [last_seen] => 2009-12-15 21:21:21
[2009.12.15 21:23:08] [ip_address] => 192.168.0.109
[2009.12.15 21:23:08] [port] => 8050
[2009.12.15 21:23:08] [device_type] => PC
[2009.12.15 21:23:08] [agent_string] => Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5
[2009.12.15 21:23:08] [browser_x_res] => 800
[2009.12.15 21:23:08] [browser_y_res] => 450
[2009.12.15 21:23:08] [browser_scr_x_res] => 800
[2009.12.15 21:23:08] [browser_scr_y_res] => 450
[2009.12.15 21:23:08] [screen_x_res] => 800
[2009.12.15 21:23:08] [screen_y_res] => 450
[2009.12.15 21:23:08] [aspect] => 16:9
[2009.12.15 21:23:08] [screen_type] => HDTV
[2009.12.15 21:23:08] [mac_addr] =>
[2009.12.15 21:23:08] )
[2009.12.15 21:23:08]
[2009.12.15 21:23:08] ------------------------------------------------------------------------------
[2009.12.15 21:23:08] Page Requested : http://192.168.0.2:8050/config/index.php?section=MEDIA&action=PROGRESS&type=MEDIA by client (192.168.0.109)
[2009.12.15 21:23:18] ------------------------------------------------------------------------------
[2009.12.15 21:23:18] Page Requested : http://192.168.0.2:8050/config/index.php?section=MEDIA&action=PROGRESS&type=MEDIA by client (192.168.0.109)

It always stays at 0%...
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 15:34 This is the log if I start it with "http://ip: port/media_search.php":

[2009.12.15 21:32:18] Page Requested : http://192.168.0.2:8050/media_search.php by client (192.168.0.109)
[2009.12.15 21:32:19] Including movie parser file /volume1/web/svr/swiss/ext/parsers/movie/www.imdb.com.php
[2009.12.15 21:32:19] Including tv parser file /volume1/web/svr/swiss/ext/parsers/tv/www.TheTVDB.com.php
[2009.12.15 21:32:19] Set system preference 'MEDIA_SCAN_STATUS' to 'Läuft'
[2009.12.15 21:32:19] Refreshing MOVIES database
[2009.12.15 21:32:19] Scanning : /volume1/video/
[2009.12.15 21:33:54] ------------------------------------------------------------------------------
[2009.12.15 21:33:54] Page Requested : http://192.168.0.2:8050/ by client (192.168.0.109)
[2009.12.15 21:33:55] Resizing /volume1/web/svr/swiss//styles/KDE/right.gif (10,20) to fit (13,18). New size is (9,18)
[2009.12.15 21:33:55] Built temporary image
[2009.12.15 21:33:55] Resized/Stretched image
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 17:05 ahhhhhh behold, now everything is clear, or at least I hope.
Tomorrow I will try, but be ready because you annoy even klaas
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 18:40 Hi klaas
I modified the files:
vhost.conf-httpd-user -> previously was empty
php.ini

after the restart Apache by Code:
sh / usr/syno/etc.defaults/rc.d/S97apache-user.sh restart
Apache gave me syntax error.
The first I resolved, I think, and it was:
DocumentRoot "/ volume1/Web/svr/swiss"
<Directory "/volume1/Web/svr/swiss">
in
DocumentRoot "/ volume1/web/svr/swiss"
<Directory "/volume1/web/svr/swiss">

the second concerns the following lines:
ErrorDocument 403 / webdefault / sample.php status = 403 & = subweb SwissCenter
ErrorDocument 404 / webdefault / sample.php? Status = 404 & = subweb SwissCenter
ErrorDocument 500 / webdefault / sample.php? Status = 500 & = subweb SwissCenter

I did not investigate this because my GlypeProxy no longer worked
Then I restored the 2 files that I had changed and GlypeProxy returned to work.

Now I do 2 questions klaas

First. is possible to coexist swisscenter with glypeproxy? (http://www.glype.com/) (for me glype is an important thing), if so how? step by step please

Second. The path of media files after the installation necessarily be a path within the Synology, or on other network drives? (This is one other important thing for me as I shed my average in most tests for network)

You must have a little patience with me. Also add my problems to understand English and the end as well as icing on the cake Put the advanced age

Google translated

best best regards
Raffaele
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/15 18:40 @Thomas

It looks like wget is not executued. Did you replace function 'shell_exec()' with function 'exec()' (see also step [11] of the manual)? If not, change file /base/file.php, and try again. If it still doesn't work, or if you already did step [11] without success, please post the Support Info from menu Information of the SwissCenter Configuration Utility.

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1344
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/16 03:30 Hello!

I´ve checked the file.php again and looks like I´ve changed the first time something wrong.
Now I replaced shell_exec with exec, but it still doesn´t work.
Thats the log now:
[2009.12.16 09:15:46] Page Requested : http://192.168.0.2:8050/media_search.php by client (192.168.0.2)
[2009.12.16 09:15:54] Loaded en language file into language
[2009.12.16 09:16:02] Loaded de language file into language
[2009.12.16 09:16:02] Including movie parser file /volume1/web/svr/swiss/ext/parsers/movie/www.imdb.com.php
[2009.12.16 09:16:02] Including tv parser file /volume1/web/svr/swiss/ext/parsers/tv/www.TheTVDB.com.php
[2009.12.16 09:16:03] Set system preference 'MEDIA_SCAN_STATUS' to 'Läuft'
[2009.12.16 09:16:03] Refreshing MOVIES database
[2009.12.16 09:16:03] Scanning : /volume1/video/
[2009.12.16 09:16:13] Device:
[2009.12.16 09:16:13] Array
[2009.12.16 09:16:13] (
[2009.12.16 09:16:13] [last_seen] => 2009-12-16 09:16:13
[2009.12.16 09:16:13] [ip_address] => 192.168.0.2
[2009.12.16 09:16:13] [port] => 8050
[2009.12.16 09:16:13] [device_type] => UNKNOWN
[2009.12.16 09:16:13] [agent_string] => Wget/1.11.4
[2009.12.16 09:16:13] [browser_x_res] =>
[2009.12.16 09:16:13] [browser_y_res] =>
[2009.12.16 09:16:13] [screen_x_res] => 1280
[2009.12.16 09:16:13] [screen_y_res] => 720
[2009.12.16 09:16:13] [browser_scr_x_res] => 1280
[2009.12.16 09:16:13] [browser_scr_y_res] => 720
[2009.12.16 09:16:13] [aspect] => 16:9
[2009.12.16 09:16:13] [screen_type] => HDTV
[2009.12.16 09:16:13] )
[2009.12.16 09:16:13]
[2009.12.16 09:16:13] ------------------------------------------------------------------------------
[2009.12.16 09:16:13] Page Requested : http://192.168.0.2:8050/media_search.php by client (192.168.0.2)
[2009.12.16 09:16:21] Loaded en language file into language
[2009.12.16 09:16:29] Loaded de language file into language
[2009.12.16 09:16:29] Including movie parser file /volume1/web/svr/swiss/ext/parsers/movie/www.imdb.com.php
[2009.12.16 09:16:29] Including tv parser file /volume1/web/svr/swiss/ext/parsers/tv/www.TheTVDB.com.php
[2009.12.16 09:16:29] Set system preference 'MEDIA_SCAN_STATUS' to 'Läuft'
[2009.12.16 09:16:29] Refreshing MOVIES database
[2009.12.16 09:16:29] Scanning : /volume1/video/
[2009.12.16 09:16:30] ------------------------------------------------------------------------------
[2009.12.16 09:16:30] Page Requested : http://192.168.0.2:8050/media_search.php by client (192.168.0.109)
[2009.12.16 09:16:30] Including movie parser file /volume1/web/svr/swiss/ext/parsers/movie/www.imdb.com.php
[2009.12.16 09:16:30] Including tv parser file /volume1/web/svr/swiss/ext/parsers/tv/www.TheTVDB.com.php
[2009.12.16 09:16:30] Set system preference 'MEDIA_SCAN_STATUS' to 'Läuft'
[2009.12.16 09:16:30] Refreshing MOVIES database
[2009.12.16 09:16:30] Scanning : /volume1/video/

And that is the support information:

File Attachment:
File name: support.jpg
File size:556709 bytes
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/16 16:38 Hi Thomas,

Not sure yet what it's causing the issue, but there's something funny. The client (I assume your PC) and the server (your Synology) seem to have one and the same IP number; see the first line of your posted logfile.

This should not be, it could be related to the problem you have ...

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1344
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/16 17:12 The client (I assume your PC) and the server (your Synology) seem to have one and the same IP number; see the first line of your posted logfile.
Just means he's doing a media search from the PC browser.
Players : Netgear EVA700 | Popcorn A-100 (100516) | Popcorn A-200 (100208)
Webserver : Simese v2.6.4 | Apache 2.2.16 | PHP v5.2.12 | MySQL v5.1.32
Server : Windows 7 Home Premium 64bit
Spec : Intel C2Q Q6600 - 4GB RAM - 4TB HDD
AV : Pioneer VSX-915 | Samsung LE40C650
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/16 18:36 Hi,
I managed to take a step forward.
I entered in the file httpd-vhost.conf-user
the code posted by changing only this Dutchsea
DocumentRoot "/ volume1/Web/svr/swiss"
<Directory "/volume1/Web/svr/swiss">
in
DocumentRoot "/ volume1/web/svr/swiss"
<Directory "/volume1/web/svr/swiss">

Code:
Listen 8050
NameVirtualHost *: 8050
NameVirtualHost *: 80
<VirtualHost *:80>
ServerName *
DocumentRoot / var / services / web
</ VirtualHost>

<VirtualHost *:8050>
ServerName SwissCenter
DocumentRoot "/ volume1/web/svr/swiss"
<Directory "/volume1/web/svr/swiss">
Options Indexes FollowSymlinks MultiViews
AllowOverride None
Order deny, allow
Deny from all
Allow from 192.168.1
</ Directory>
<IfModule Mod_dir>
DirectoryIndex index.html index.php
</ IfModule>
Alias / root / "/"
</ VirtualHost>
this configuration to restart apache I get errors, my glypeproxy works but swisscenter no.
attached log and image

regards,
Raffaele

rename file without .zip
File Attachment:
File name: log.rar.zip
File size:64296 bytes
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 05:04 hi,
using image.php of chrisrixon and arial_tt13.gsf copying the file and rename arial12.gdf I managed to get what you can see attached.
File Attachment:
File name: log_00002.zip
File size:77429 bytes

I do not understand xchè do not see the whole menu and why can not I create a new database (wrong password)

regards,
Raffaele
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 06:51 Hi,

I couldn't open your logfile. Maybe you want to save it as txt-file, then you can upload it to the forum without zipping.

Moreover, could you please describe a bit more in detail you problem you have at this moment?

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1344
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 06:55 Nigel wrote:Just means he's doing a media search from the PC browser.
You are right when the client connects to a server, that is installed on the same PC. However, in this case the server is on a NAS. And it's not possible to approach the server located on a NAS from the same NAS through the config screen (simply because there's no browser on the NAS; the only way it is possible - as far as I can see - is using a scheduled task from the NAS, but that's not the case).

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1344
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 07:16 Hi
I think the images and the log should be comprehensive enough to describe my problem.

Regards,
Raffaele

I could attach to
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 07:20 first
File Attachment:
File name: support.log_00004.zip
File size:7469 bytes

and second
File Attachment:
File name: support.log_00004.zip
File size:7469 bytes


please rename file without .zip

may have succeeded
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 08:12 The obvious item in the logfiles is that you do not have a database or SwissCenter is unable to connect to the database.

The logfile also says:
- Unable to access /volume1/web/svr/swiss//config/swisscenter.ini

This file contains the database connection details, so ensure it exists and contains something like:
Code:

 ;*************************************************************************  ; SwissCenter Configuration                                                 ;*************************************************************************  DB_HOST=localhost  DB_USERNAME=swisscenter  DB_PASSWORD=swisscenter  DB_DATABASE=swiss 

Players : Netgear EVA700 | Popcorn A-100 (100516) | Popcorn A-200 (100208)
Webserver : Simese v2.6.4 | Apache 2.2.16 | PHP v5.2.12 | MySQL v5.1.32
Server : Windows 7 Home Premium 64bit
Spec : Intel C2Q Q6600 - 4GB RAM - 4TB HDD
AV : Pioneer VSX-915 | Samsung LE40C650
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 09:02 Hi,
file not found
I create the file "swisscenter.ini" in \volume1\web\svr\swiss\config\
but unfortunately the problem remains the same

regards
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 09:28 Have you actually installed MySQL with the database connection details in swisscenter.ini? Players : Netgear EVA700 | Popcorn A-100 (100516) | Popcorn A-200 (100208)
Webserver : Simese v2.6.4 | Apache 2.2.16 | PHP v5.2.12 | MySQL v5.1.32
Server : Windows 7 Home Premium 64bit
Spec : Intel C2Q Q6600 - 4GB RAM - 4TB HDD
AV : Pioneer VSX-915 | Samsung LE40C650
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 09:40 I did nothing but follow step by step manual klaas

but it is normal double // in /volume1/web/svr/swiss//config/swisscenter.ini?
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 10:22 I may have solved.

I had forgotten to enable MySQL into Synology

Thanks for all the time now that you have dedicated
regards
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/17 16:08 Hello

I am back with a new question

When I enter a path media and click the Add location button, Internet Explorer replies: "Can not display the page"


add log

greetings
Raffaele

File Attachment:
File name: support.rar.zip
File size:16218 bytes


reneme without .zip
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/27 14:51 Hi Raffaele,

It looks like that you didn’t enter the correct path. In stead of
Code:

 //DISKSTATION/Public/Serie TV

it should be
Code:

 /volume1/Public/Serie TV

where I assume that your directory ‘Public/Serie TV’ is located on the first disk and that the path’s exactly written like you mentioned (in terms of capitals); if not, the path won’t be recognised as the system’s case sensitive.

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1344
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/27 19:07 Hi Klaas,
thanks to you I solved this problem too.
Now accepts the paths of the media, I can continue hoping not to encounter more problems until the end of the installation


regards,
Raffaele
Players: Showcenter 1000/1000/1000/200/250HD and Egreat EG 34a all Wired
Webserver : Simese v2.09
PHP : v4.4.4
MySQL : v5.0.67-community
SwissCenter 1.22
Windows Vista Ultimate Service Pack 1
Pentium IV ExtremeEdition 3,8 GHZ - (4GB Ram)
Synology DS207+ ( 2Tb )+( 2Tb USB ) - GigaNas 1TB - Nas ( 0.6Tb ) - Nslu2 ( 0.6Tb+0.6Tb ) - Ubuntu Machine ( 1TB )
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2009/12/29 17:29 Hi Raffaele,

Most welcome; if you do have any problems pls drop a line, regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1344
Simese 2.5.9 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/02 18:39 Hi,

thank you for this great manual. But I have still two problems.

First, when I start http:192.168.0.51:8099 on my PC, I receive a window an buttons/icons (Music, Movies, Photos etc) on the bottom. When I start the same IP with my HDX-1000 (PCH clone) I only get the window, but no buttons nor icons. How can I select Music on my NMT?

Second, when I select Music and then for example filtered by artist I get no results. Why? In the config I have entered
Typ = Audio
Kategorie=General
Zertifikat=Uc (what does the certificates mean?)
Ordner=/volume1/MusicOnDS (which is the folder on the Diskstation)

[Edit] I made a new folder and copied one album into it. New search and I could select it. But what's the problem with my standard folder. There a approx. 150 folder (albums) in? [/Edit]

/Andi
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/02 19:22 when I select Music and then for example filtered by artist I get no results. Why?
Have you performed a media search, and do your audio files contain artist tags?
Players : Netgear EVA700 | Popcorn A-100 (100516) | Popcorn A-200 (100208)
Webserver : Simese v2.6.4 | Apache 2.2.16 | PHP v5.2.12 | MySQL v5.1.32
Server : Windows 7 Home Premium 64bit
Spec : Intel C2Q Q6600 - 4GB RAM - 4TB HDD
AV : Pioneer VSX-915 | Samsung LE40C650
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/03 04:04 yes I did the media search. As I edited in my first post, the new forder with only one album hast been shown in the list. AND after that my NMT showed a new menu 'Musik' where I could select this album. So question one is solved. Music is shown when there's something in the mp3s table.

But why does the media search in my main folder with all albums not function?

/Andi
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/03 09:49 Did you replace function “shell_exec()” by “exec()” (see step 11 of the manual)?

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1351
Simese 2.5.10 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/04 09:27 yes I did. The only thing is, that it was in line 690 in my file.php. The file only has 707 lines. You wrote it must be in line 734.

Today I added my folder with the photos (more than 2000 in several folders). When I start the swisscenter I now have a new menu 'Photos' but there are not all photos.
The config window shows status 'running', search '50%' (since two or three hours).

Is it possible that the media search has problems with too much folders/files?
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/04 17:08 Is it possible that the media search has problems with too much folders/files?
No, don't think so, could you post your logfile (at level 8) of a photo search?

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1352
Simese 2.5.10 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/12 10:27 Hi,

At the step 15 (http://diskstation:8050/media_search )I get these errors:

Warning: require_once() [function.require-once]: Filename cannot be empty in /volume1/web/svr/swiss/media_search.php on line 13

Fatal error: require_once() [function.require]: Failed opening required '' (include_path='.:/usr/syno/php/lib/php') in /volume1/web/svr/swiss/media_search.php on line 13

Can someone help me?
Thanks
File Attachment:
File name: support_00028.log
File size:837060 bytes
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/12 10:28 Hi,

Where we can add path for media search?

Thanks
  | | The administrator has disabled public write access.
Re: Manual to install Swisscenter on Synology CS/DS - 2010/01/12 12:43
Code:

 Warning: require_once() [function.require-once]: Filename cannot be empty in /volume1/web/svr/swiss/media_search.php on line 13 Fatal error: require_once() [function.require]: Failed opening required '' (include_path='.:/usr/syno/php/lib/php'in /volume1/web/svr/swiss/media_search.php on line 13

Can you check whether you've got file '/video_obtain_info.php' in your main SwissCenter directory, and also check whether the file isn't empty.

regards, Klaas

---------------------------------------------------------------------------
SwissCenter SVN 1360
Simese 2.5.10 / PHP 5.2.9-1 / MySQL 5.1.32 / Windows XP SP3
Apache 2.2.11 / PHP 5.2.10 / MySQL 5.1.34 / Linux Synology 2.6.15
Synology DS107+ (128), firmware: DSM 2.2-0959
Pinnacle SC200 / PCH A-110
  | | The administrator has disabled public write access.
<< Start < Previous 1 2 3 4 5 6 Next > End >>
spacer
 

Screenshots

www.flickr.com
This is a Flickr badge showing public photos from swisscenter. Make your own badge here.


 

Mambo is Free Software released under the GNU/GPL License.
spacer