evankennedy Posted November 3, 2007 Share Posted November 3, 2007 Hello, I am trying to create a script to Upload audio files to my website, but whenever I try to upload an audio file it says Internet Explorer cannot display the webpage Most likely causes: You are not connected to the Internet. The website is encountering problems. There might be a typing error in the address. What you can try: Diagnose Connection Problems More information This problem can be caused by a variety of issues, including: Internet connectivity has been lost. The website is temporarily unavailable. The Domain Name Server (DNS) is not reachable. The Domain Name Server (DNS) does not have a listing for the website's domain. If this is an HTTPS (secure) address, click Tools, click Internet Options, click Advanced, and check to be sure the SSL and TLS protocols are enabled under the security section. For offline users You can still view subscribed feeds and some recently viewed webpages. To view subscribed feeds Click the Favorites Center button , click Feeds, and then click the feed you want to view. To view recently visited webpages (might not work on all pages) Click Tools , and then click Work Offline. Click the Favorites Center button , click History, and then click the page you want to view. My code works for other files, but not audio files. Idon't need to post my code, all I'm doing is using <input file='file' name='file'> and then uploading it Link to comment https://forums.phpfreaks.com/topic/75959-file-upload-problem/ Share on other sites More sharing options...
cooldude832 Posted November 3, 2007 Share Posted November 3, 2007 can you try it in firefox, you might be exceeedind hte $_POST_FILE_SIZE limit Link to comment https://forums.phpfreaks.com/topic/75959-file-upload-problem/#findComment-384487 Share on other sites More sharing options...
evankennedy Posted November 3, 2007 Author Share Posted November 3, 2007 When I use firefox it says: The connection was reset The connection to the server was reset while the page was loading. * The site could be temporarily unavailable or too busy. Try again in a few moments. * If you are unable to load any pages, check your computer's network connection. * If your computer or network is protected by a firewall or proxy, make sure that Firefox is permitted to access the Web. Link to comment https://forums.phpfreaks.com/topic/75959-file-upload-problem/#findComment-384493 Share on other sites More sharing options...
cooldude832 Posted November 3, 2007 Share Posted November 3, 2007 how does it time out, either your php ain't allow it, which in that case we like to see the php info page, or you have an issue involving your server allowign you to Link to comment https://forums.phpfreaks.com/topic/75959-file-upload-problem/#findComment-384498 Share on other sites More sharing options...
evankennedy Posted November 3, 2007 Author Share Posted November 3, 2007 I'm using awardspace hosting.. if that makes a differece.. Is there any reason why it would let me upload other files that aren't audio files? Link to comment https://forums.phpfreaks.com/topic/75959-file-upload-problem/#findComment-384500 Share on other sites More sharing options...
cooldude832 Posted November 3, 2007 Share Posted November 3, 2007 I don't know its specifics, but odds are its a server issue if its blocking only mp3s/wavs Link to comment https://forums.phpfreaks.com/topic/75959-file-upload-problem/#findComment-384502 Share on other sites More sharing options...
Northern Flame Posted November 4, 2007 Share Posted November 4, 2007 you might have to change the allowed upload file size on the server via .htaccess and make the directory that you want to upload to writable heres how to increase your max file upload size in .htaccess php_value post_max_size 1000M php_value upload_max_filesize 1000M php_value max_execution_time 6000000 Link to comment https://forums.phpfreaks.com/topic/75959-file-upload-problem/#findComment-384629 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.