Alright I am trying to upload a .sql file to phpmyadmin.
I get the error:
You probably tried to upload a file that is too large. Please refer to documentation for a workaround for this limit.
After reading some online solutions, I decided to edit my php.ini to allow bigger file uploads.
I changed this:
Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 2M
to
Maximum allowed size for uploaded files.
; http://php.net/upload-max-filesize
upload_max_filesize = 900M
Then restarted apache with no luck.
How can I bypass this limit? Did I do something wrong? Surely the file can't be bigger than 900M because google chrome reported it to be 15MB when downloading. How can I import this file?