Raised This Month: $ Target: $400
 0% 

Error: server failed to transmit file


Post New Thread Reply   
 
Thread Tools Display Modes
Author Message
UnknownMP
Junior Member
Join Date: Aug 2012
Old 08-31-2012 , 17:39   Error: server failed to transmit file
Reply With Quote #1

Hi.
I need help with the errors
PHP Code:
Errorserver failed to transmit file 'sound/jailbreak/lr/1.wav'
Errorserver failed to transmit file 'sound/jailbreak/lr/2.wav'
Errorserver failed to transmit file 'sound/jailbreak/lr/3.wav'
Errorserver failed to transmit file 'sound/jailbreak/lr/4.wav'
Errorserver failed to transmit file 'sound/jailbreak/lr/5.wav'
Errorserver failed to transmit file 'sound/jailbreak/lr/6.wav'
Errorserver failed to transmit file 'sound/jailbreak/lr/7.wav'
Errorserver failed to transmit file 'sound/jailbreak/lr/8.wav'
Errorserver failed to transmit file 'sound/jailbreak/lr/9.wav' 
Important parts of the plugin
PHP Code:
new const musicalr1[]         = { "jailbreak/lr/1.wav" }
new const 
musicalr2[]         = { "jailbreak/lr/2.wav" }
new const 
musicalr3[]         = { "jailbreak/lr/3.wav" }
new const 
musicalr4[]         = { "jailbreak/lr/4.wav" }
new const 
musicalr5[]         = { "jailbreak/lr/5.wav" }
new const 
musicalr6[]         = { "jailbreak/lr/6.wav" }
new const 
musicalr7[]         = { "jailbreak/lr/7.wav" }
new const 
musicalr8[]         = { "jailbreak/lr/8.wav" }
new const 
musicalr9[]         = { "jailbreak/lr/9.wav" }

public 
plugin_precache() 
{    
    
precache_sound(musicalr1)
    
precache_sound(musicalr2)
    
precache_sound(musicalr3)
    
precache_sound(musicalr4)
    
precache_sound(musicalr5)
    
precache_sound(musicalr6)
    
precache_sound(musicalr7)
    
precache_sound(musicalr8)
    
precache_sound(musicalr9)

At the server I have the files
PHP Code:
sound/jailbreak/lr/1.wav
sound
/jailbreak/lr/2.wav
sound
/jailbreak/lr/3.wav
sound
/jailbreak/lr/4.wav
sound
/jailbreak/lr/5.wav
sound
/jailbreak/lr/6.wav
sound
/jailbreak/lr/7.wav
sound
/jailbreak/lr/8.wav
sound
/jailbreak/lr/9.wav 
After a lot of time spent I still get the same errors...

Last edited by UnknownMP; 08-31-2012 at 17:39.
UnknownMP is offline
Infernuz
Member
Join Date: May 2011
Old 08-31-2012 , 18:21   Re: Error: server failed to transmit file
Reply With Quote #2

PHP Code:
new const musicalr1[]         = { "sound/jailbreak/lr/1.wav" 
?

Last edited by Infernuz; 08-31-2012 at 18:22.
Infernuz is offline
Send a message via ICQ to Infernuz
UnknownMP
Junior Member
Join Date: Aug 2012
Old 08-31-2012 , 18:23   Re: Error: server failed to transmit file
Reply With Quote #3

What is the problema with it? I gave you the directory and the file...
UnknownMP is offline
Infernuz
Member
Join Date: May 2011
Old 08-31-2012 , 18:27   Re: Error: server failed to transmit file
Reply With Quote #4

You specified wrong path to the file in your plugin.
Infernuz is offline
Send a message via ICQ to Infernuz
UnknownMP
Junior Member
Join Date: Aug 2012
Old 08-31-2012 , 18:32   Re: Error: server failed to transmit file
Reply With Quote #5

PHP Code:
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/1.wav'
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/2.wav'
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/3.wav'
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/4.wav'
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/5.wav'
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/6.wav'
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/7.wav'
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/8.wav'
Errorserver failed to transmit file 'sound/sound/jailbreak/lr/9.wav' 
PHP Code:
new const musicalr1[]         = { "sound/jailbreak/lr/1.wav" }
new const 
musicalr2[]         = { "sound/jailbreak/lr/2.wav" }
new const 
musicalr3[]         = { "sound/jailbreak/lr/3.wav" }
new const 
musicalr4[]         = { "sound/jailbreak/lr/4.wav" }
new const 
musicalr5[]         = { "sound/jailbreak/lr/5.wav" }
new const 
musicalr6[]         = { "sound/jailbreak/lr/6.wav" }
new const 
musicalr7[]         = { "sound/jailbreak/lr/7.wav" }
new const 
musicalr8[]         = { "sound/jailbreak/lr/8.wav" }
new const 
musicalr9[]         = { "sound/jailbreak/lr/9.wav" 
UnknownMP is offline
daniel46
Senior Member
Join Date: Dec 2011
Old 08-31-2012 , 18:38   Re: Error: server failed to transmit file
Reply With Quote #6

try this

PHP Code:
new musicalr1[] =  "sound/jailbreak/lr/1.wav" 
daniel46 is offline
UnknownMP
Junior Member
Join Date: Aug 2012
Old 09-01-2012 , 07:46   Re: Error: server failed to transmit file
Reply With Quote #7

I need to put
PHP Code:
new musicalr1[] = "jailbreak/lr/1.wav" 
but still the same error as the first post.
UnknownMP is offline
YamiKaitou
Has a lovely bunch of coconuts
Join Date: Apr 2006
Location: Texas
Old 09-01-2012 , 07:51   Re: Error: server failed to transmit file
Reply With Quote #8

Are you using sv_downloadurl?
Is sv_allowdownload set to 1?
__________________
ProjectYami Laboratories

I do not browse the forums regularly anymore. If you need me for anything (asking questions or anything else), then PM me (be descriptive in your PM, message containing only a link to a thread will be ignored).
YamiKaitou is offline
UnknownMP
Junior Member
Join Date: Aug 2012
Old 09-01-2012 , 07:57   Re: Error: server failed to transmit file
Reply With Quote #9

sv_allowdownload "1"
sv_downloadurl ""
UnknownMP is offline
UnknownMP
Junior Member
Join Date: Aug 2012
Old 09-01-2012 , 09:25   Re: Error: server failed to transmit file
Reply With Quote #10

The files were too heavy...Problem solved...
UnknownMP is offline
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 08:19.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode