![]() |
Thanks for this :) Great Job!!
|
When I am trying to run this i get an error Failover was initiated for MySQLDump Binary & An error occured during the MySQL backup. Details (Could not open Destination SQL file for writing.
Can you explain me what i am doing wrong ? |
Did you chmod the folder that the backup is being written into to 777?
Are you using an absolute path to the backup folder (i.e. /home/user/public_html/backup/) or wherever it is? Also, if you are running it again on the same date, make sure that there is not a file in the backup folder with that date already... :) hth |
Quote:
------- But yes, cyber is right, make sure you are chmodding the directory you are wanting to save the dump to, 777. Also make sure the path is valid. Either use a full path, or a path relative to the main forum directory. For example I use: $backup['DUMP_PATH'] = 'admincp/backups'; Which saves the dump to the backups folder inside my admincp folder. |
When I ran the database backup via cron -- it worked perfectly -- but it did not compress the FILE -- and it left my forums closed with the default "backing up the database" message.
Any suggestions? |
Quote:
------ What compression settings are you using, Mysqldump or PHPdump etc.. |
I ran the cron manually -- and it works perfectly. I didn't get any error messages on the screen.
These are the compression settings from the config file: $backup['COMPRESS'] = 1; $backup['BUFFER'] = 1048576; $backup['COMPRESSION']= 'gz'; $backup['COMPRESSORS']= array( 'gzip' => 'gzip', 'bzip2' => 'bzip2', 'tar' => 'tar', 'zip' => 'zip' ); |
Quote:
to zip, or tgz.. As for the script not setting your forum back up.. that really doesnt make sense, unless for some reason something is causing premature termination of the script, sometimes calls to functions that don't exist will do that.. What php, mysql version are you using? |
Mysql = 4.0.22
Php = 4.3.10 |
I figured out what i was doing wrong :) Thanks great script.
|
Quote:
|
Installed, works fine for 2 weeks now, i have forgot to say thanks for this great script! ;)
|
Welcome, still a bit more to add though. Will try to get it done over the week.
|
We want to set up a second copy of vB for development, writing and testing new mods, etc. Per the license, we can set it up in a directory called vbtest and not make it public (password protect it). We're looking for a script that can syncronize the database, templates, etc from the production copy to the development copy.
If we back up the production copy of using VBulletin Database Backup Pro, can we restore it to the development copy? |
yes, just make sure to look over all the configuration options, and configure accordingly, make any changes needed.
|
Quote:
I did use the xzvf and it did uncompress it, but to a separate folder due to the path I used in the config. So it's extracting, but making a new folder. No problem though, I can always use gzip compression like you suggested. And Gzip -d works as well to uncompress. :) |
Quote:
|
Great hack, thanks :smoke:
can't wait for the "Restore" addon. :up: |
Can anyone tell me about how long the forum would be down if the option to temporarily suspend is on? My database is currently at about 30MB
|
If you have shutdown option configured, it would shutdown before backup, and reopen immediately afterward.
30mb is a very small database, I would say total backup time, 5-20sec |
Quote:
|
Quote:
|
Top Hack, Installed with no probs at all.
One question though, Can I rename or change one of the phps so that I can also run a backup once a week and ftp my database? I have the cron set to run at midnight at present and dont want to FTP everynight. Thanks XraY |
Quote:
Other then that, just change your cron to backup once a week.. OR 1 more thing you could do. ------------------- create a copy of cronbackup so that you have: cronbackup.php cronbackup2.php create a copy of mysqlbackupconfig so that you have mysqlbackupconfig.php mysqlbackupconfig2.php change cronbackup2.php to include mysqlbackupconfig2.php instead of mysqlbackupconfig.php change mysqlbackupconfig.php, and turn FTP off make sure mysqlbackupconfig2.php has FTP on add the crontask as such: cronbackup.php is daily, it will not use ftp cronbackup2.php is weekly, it will use ftp ------------------- Hope I didnt make that all to be too complicated |
Hi
Is there a way to encrypt the backup files so I can store my files safely on public servers knowing that no one can read them but me. Or I could make a deal with someone to send me his backups and I send him min! Thanks |
Quote:
1. I "Could" code in shell support for using ZIP's encryption, tar/gz and I believe bz also do not support encryption. 2. Use MCRYPT to encrpyt a backup archive into a solid mass of encryption, then it would be up to you to Decrypt using another PHP script or I could create one. 3. BEST Option. Set your backup directory to something, below your public_html directory, that way it can not be accessed via url by traditional means. |
I have aproblem that I cannot solve..
I put the rights passwords and login name etc but it gives me the following message... Invalid SQL: LOCK TABLES `access` READ, `adminhelp` READ, `administrator` READ, `adminlog` READ, `adminutil` READ, `announcement` READ, `attachment` READ, `attachmenttype` READ, `attachmentviews` READ, `avatar` READ, `bbcode` READ, `calendar` READ, `calendarcustomfield` READ, `calendarmoderator` READ, `calendarpermission` READ, `cpsession` READ, `cron` READ, `cronlog` READ, `customavatar` READ, `customprofilepic` READ, `datastore` READ, `deletionlog` READ, `editlog` READ, `event` READ, `faq` READ, `forum` READ, `forumpermission` READ, `gamechallenges` READ, `gamenews` READ, `games` READ, `gamesessions` READ, `holiday` READ, `icon` READ, `imagecategory` READ, `imagecategorypermission` READ, `language` READ, `mailqueue` READ, `moderation` READ, `moderator` READ, `moderatorlog` READ, `passwordhistory` READ, `phrase` READ, `phrasetype` READ, `pm` READ, `pmreceipt` READ, `pmtext` READ, `poll` READ, `pollvote` READ, `post` READ, `post_parsed` READ, `posthash` READ, `postindex` READ, `profilefield` READ, `ranks` READ, `regimage` READ, `reminder` READ, `reputation` READ, `reputationlevel` READ, `search` READ, `session` READ, `setting` READ, `settinggroup` READ, `smilie` READ, `stats` READ, `strikes` READ, `style` READ, `subscribeevent` READ, `subscribeforum` READ, `subscribethread` READ, `subscription` READ, `subscriptionlog` READ, `template` READ, `thread` READ, `threadrate` READ, `threadviews` READ, `upgradelog` READ, `user` READ, `useractivation` READ, `userban` READ, `userfield` READ, `usergroup` READ, `usergroupleader` READ, `usergrouprequest` READ, `usernote` READ, `userpromotion` READ, `usertextfield` READ, `usertitle` READ, `word` READ; mysql error: Access denied for user: 'o0oo0X@localhost' to database 'o0oo0X' How can i solve it? |
Quote:
$backup['LOCK'] = 0; $backup['LOCKTABLES'] = 0; You most likely dont have the necessary permissions. Also, make sure to read the configuration, there are lots of options to chose, and I have them explained; in detail. |
Thanks 4 answering, I guess I wont backup the locked tables if I set them to 0 right?
So my backup won´t be complete.. Tell me if Iám wrong. |
Is there any way to have it backup other databases as well?
|
This is a great hack, since it save my poor weary brain from forgetting to do backups on time but I am having a slight problem, each time it runs the backup, it turns the board off but it never turss it back on. So if II am not around when the bacckup runs the boards are shutdown till I check and turn them back on.. Any thoughts?
Thanks |
Quote:
|
Quote:
I have the error reporting option turned on, althought i don't see that it is creating any error files, I also have the scheduled task log reporting option set but I don't see that it is even creating a log entry :confused: |
I wrote something similiar to this without the amount of features. I can tell you are definately a programmer. I've never seen such a well documented clean written hack here yet. Other programmers and hack developers should follow your programming ways, including myself!
Great hack, documentation and beyond! |
Quote:
For the last week, since I've recently purchased Zend Studio; I am completely writing the script phpDoc compatible. When that is finished, I will also upload the Zip file of it, which will completely document the class/function usage of the script in HTML format. |
Quote:
|
I get this when I tried to do it manually
Quote:
|
Quote:
PHP Code:
1. You should be doing a full table dump. 2. If you are doing a selective table dump, you have to fill the array of tables to be dumped. Judging by that error you are getting. You are doing a selective table dump, and you havnt filled the table array. Please Read The Configuration, before asking questions here. |
Note: If your using option 1 to dump all tables it will
ignore the TABLES array anyway. NOte: If you are using prefixes, you must specify them yourself in the tables array ie. forum_post, forum_user. ----------------------------------------------------------- Combine Tables For Selective Dump ----------------------------------------------------------- If you have selected option 0 to dump specific tables. This option determines whether or not the dumps are Re-Combined into 1 File for the purpose of keeping a cleaner dump folder and ease of use, without having to re-import multiple files again. NOTE: If you set COMBINE to 0 you MUST use the compression handler (tar, tgz, tbz, zip) INSTEAD of (gz, bz2) as they alone do not support multiple files in 1 compressed archive. For that reason, if you are not going to use the combine option, use one of the tar variations or zip. ----------------------------------------------------------- 0 = Individual Tables SQL files are archived together. 1 = All Tables are re-joined back into 1 SQL File. ----------------------------------------------------------- */ $backup['TYPE'] = 1; $backup['TABLES'] = array('post','user'); $backup['COMBINE'] = 1; |
Quote:
Update: Contact with Lionel, problem solved. |
All times are GMT. The time now is 08:59 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|