0

I have implemented jquery file upload plugin in Codeigniter, for any ext of file for my site. I have upgrade the upload files size to 50 mb. but while uploading files greater than 8 mb, it gives an error ( It works for less than 8 mb.). When I checked it, it shows that, progress bar and ajax process stop abnormally and $_FILES[] - this array is empty in php. For this I have increase the timeout for ajax. Then ajax process and progress bar process works fine but still I got $_FILES[] array empty. Anybody have solution or suggestion for this issue. I want to use this plugin only.

Thanks in advance.

4

1 に答える 1

0

これは、ホスティングプロバイダーが8MBを超えるファイルのダウンロードを制限しているためだと思います。これはシステム設定と同様です。サイトのルートディレクトリ文字列の.htaccessファイルに追加してみてください:'php_value memory_limit 50M'

注意してください:ホスティングプロバイダーがphp_value --directivesをブロックしている場合、500エラーが発生する可能性があります(ファイルのアップロードの制限を増やすようにプロバイダーに依頼する必要があります)

于 2013-01-16T13:16:26.750 に答える