MySQL Plugin Increase maximum upload filesize

  • i've decided to move my website from a shared host to my omv server. using the mysql plugin, i want up import my backup sql file. unfortunately MySQL's maximum upload filesize is 25mb. my sql file is much bigger than that. what can i do to increase the filesize limit?

  • Probably a php restriction. You could increase upload_max_filesize and post_max_filesize in php.ini
    More reliable would be to use cli to restore the dump


    mysql -u root -p


    create database myDbWhereToPutMyData;
    use myDbWhereToPutMyData;
    source backup.dump;

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!