Hi all,

i complete my work on this stupid fu**ing error and try all the things i found in the internetz ... :P

Here are the "Resolutions", but first my Settings:

Linux (Squeeze x64) vServer
TS3 Final

Following Errors i had:
- "File not found" when i try to change the Icons
- "File not found" when i try to upload an avatar
- "File not found" when i try to open the filebrowser for a channel

Here is my upgrading history":

TS3RC1 on Winx64
Upgrade to RC2
Upgrade to RC3
Migrate to Debian x64
Upgrade to Final

My Config:
Code:
ts3server.ini
machine_id=
default_voice_port=9987
voice_ip=46.38.232.20
licensepath=
filetransfer_port=30033
filetransfer_ip=46.38.232.20
query_port=10011
query_ip=46.38.232.20
dbplugin=ts3db_mysql
dbpluginparameter=ts3db_mysql.ini
dbsqlpath=sql/
dbsqlcreatepath=create_mysql/
logpath=logs
logquerycommands=1
disable_db_logging=0

ts3db:
holycrappydatawithpasswordsandsoon...

But now, how to get the filetranser shit working:
1st Step: follow the TS3 Installation Instructions (its importan, because u need the right permissions and so on)
Second: Check the "files" directory permissions ("chmod -R 700 files" will be okay)
Third: Check the Database 4 All Channels. Because i was migrating from Windows i ca find values like this: "files\virtualserver_1/channel_6" (in channel_properties). Know u see the Problem: the damn BACKSLASH!!! Here my code to Fix the Problem:
PHP Code:
UPDATE `channel_propertiesSET `value` = REPLACE(`value`, '\\','/'WHERE `valueLIKE "%\\\%" 
But this was not all, the second Problem is "1" (or more, dont know how many server u host...) entry in "virtualserver_filebase" of server_properties. Here u must do the same thing...

PHP Code:
UPDATE `server_propertiesSET `virtualserver_filebase` = REPLACE(`virtualserver_filebase`, '\\','/'WHERE `valueLIKE "%\\\%" 

When u complete that, restart the Server and flipping out :>



BTW: BACKUP before !