This topic has 4 replies, 4 voices, and was last updated 11 years, 4 months ago by AntoninC.
Viewing 5 posts - 1 through 5 (of 5 total)
Upload an audio file can a be problem if your server has a low upload maximum size limit. (e.g 5M).
Here is a way to work around this.
Use the following tip if you need to increase the upload_max_filesize on your webserver, especially if you are not able to directly access/edit the php.ini file.
1. Create a new file and name it php.ini (the name and the extension are very important).
2. Open it with any text editor and paste the following lines:
upload_max_filesize = 20M
post_max_size = 20M
3. Then, save the file and upload it to your wp-admin folder.
Now you will be able to upload audio files up to 20M.
set upload_max_filesize in .htaccess
php_value upload_max_filesize 200M
php_value post_max_size 200M
If it does not, try
php5_value upload_max_filesize 200M
php5_value post_max_size 200M
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic.