Large .PDF Files Not Uploading To MySQL Database as Medium BLOB Via PHP, Files under 2MB Work Fine

后端 未结 5 1625
温柔的废话
温柔的废话 2021-01-03 05:14

I am developing a PHP script for uploading .PDF documents as medium BLOBs into a MySQL database via PHP. The script also allows users to search for files and open/download

5条回答
  •  暗喜
    暗喜 (楼主)
    2021-01-03 05:44

    If you're trying to do this on shared hosting (where you can't make changes to MySQL conf files, etc), Google 'mysqli prepared statements'.

    This allows you to upload large queries in predefined byte chunks, circumventing any buffer restrictions.

提交回复
热议问题