Runtime Error when uploading music

Yuri
15 Mar 2013, 23:45
I get this error when uploading music:

Server Error in '/' Application.

Runtime Error

Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed remotely (for security reasons). It could, however, be viewed by browsers running on the local server machine.

Details: To enable the details of this specific error message to be viewable on remote machines, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "Off".


<!-- Web.Config Configuration File -->

<configuration>
<system.web>
<customErrors mode="Off"/>
</system.web>
</configuration>



Any ideas what's wrong?

Asyranok
16 Mar 2013, 05:20
So you were editing your game online and then uploaded the music to the online editor? Or you added the music to your game and uploaded it all at once into the website and got the error?

Alex
16 Mar 2013, 10:36
How big is the file you're trying to upload?

Yuri
16 Mar 2013, 13:56
Asyranok wrote:So you were editing your game online and then uploaded the music to the online editor? Or you added the music to your game and uploaded it all at once into the website and got the error?


I was editing the game online and uploaded the music ;)

9 MB ;)

What's the limit of uploading music?

Alex
16 Mar 2013, 14:45
The default upload size limit is apparently 4MB, so I probably need to increase this (unless I have already, and forgot).

Yuri
16 Mar 2013, 17:16
Okay, that wouldn't be big deal if there would be some option to play uploaded music from the web.

I have a webserver and it would be way more easier if I upload all the music and just link it to the game.

Do I just have to put the link in the "expression" field or do I have to do something else to make that work?