Forum Moderators: bakedjake
Recently I lost all my forum, as I never use to take the backup, now I want to take the backup regularly, I am using php and mysql, phpmyadmin has a limit of 2 mb.
How to take the bakup, I will prefer some softwares, please help me out, your help will be highly appreciated.
Thanks in Advance.
Aji
[rfxnetworks.com...]
; Maximum allowed size for uploaded files.
upload_max_filesize = 2M
If you don't have access to your php.ini file, try using the ini_set() function to set the limit. I believe it would look something like this:
ini_set('upload_max_filesize', '2M');
Maybe by placing that line in the phpMyAdmin 'config.inc.php' file, you can make a larger transfer.
Cheers,
Jeff