[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-06-28T01:09:01-07:00 https://integramod.com/forum/feed.php?f=17&t=1124 2006-06-28T01:09:01-07:00 2006-06-28T01:09:01-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=10386#p10386 <![CDATA[Your Daily Database Backup Failed.]]> Statistics: Posted Author: Flex — Wed Jun 28, 2006 1:09 am


]]>
2006-06-28T00:39:31-07:00 2006-06-28T00:39:31-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=10385#p10385 <![CDATA[Re: Your Daily Database Backup Failed.]]>
The result is:

freeserver: failed
1. payment server: failed
2. payment server: WORKS!!!!
so it seems it depends on servers type too <img>

Statistics: Posted Author: febern — Wed Jun 28, 2006 12:39 am


]]>
2006-06-20T01:48:43-07:00 2006-06-20T01:48:43-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9829#p9829 <![CDATA[Your Daily Database Backup Failed.]]>
I am on an SBD unix shared host.

I am going to check with my host to see if they have the feature turned off.

Edit: My host allows the SYSTEM command.

Statistics: Posted Author: Apocal — Tue Jun 20, 2006 1:48 am


]]>
2006-06-20T00:15:58-07:00 2006-06-20T00:15:58-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9819#p9819 <![CDATA[Re: Your Daily Database Backup Failed.]]>
"aoowais";p="9815" wrote:
I'm getting this problem too with phpbb security 1.02, and I'm now trying to upgrade to phpbb security 1.03 but I can't seem to download. I tried going to the old archive to get it, however, the download icon has disappeared.

So does anyone have the upgrade file?


I have it but I'm not able to upload files on these forums, so I've temporarely put it up on my forums for you to download, once you do, I'll ger rid of it.

Sorry about having to register to get it though.

[url=http]GET IT HERE[/url]

Statistics: Posted Author: Flex — Tue Jun 20, 2006 12:15 am


]]>
2006-06-19T23:10:47-07:00 2006-06-19T23:10:47-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9815#p9815 <![CDATA[Re: Your Daily Database Backup Failed.]]>
So does anyone have the upgrade file?

Statistics: Posted Author: aoowais — Mon Jun 19, 2006 11:10 pm


]]>
2006-06-15T09:21:09-07:00 2006-06-15T09:21:09-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9497#p9497 <![CDATA[Re: Your Daily Database Backup Failed.]]>
This is about as good as it gets... I have edited the phpbb_security to look for the file including as many possible paths as I can think of. I also check environment variables and the pathà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦

I could have searched the entire drive but a little over the top <img>

This should work for 99% of people however if anyone runs into a problem all we need to know is the path and we can provide a solutionà¢Ãƒ ¢Ã¢â‚¬Å¡Ã‚ ¬Ãƒâ€šÃ‚ ¦
Mike

Statistics: Posted Author: Michaelo — Thu Jun 15, 2006 9:21 am


]]>
2006-06-15T09:12:15-07:00 2006-06-15T09:12:15-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9495#p9495 <![CDATA[Your Daily Database Backup Failed.]]>
It would be nice if this was included in the ACP as a configuration setting. The path on Windows could vary, depending on how it was installed. For example, my local machine is:
C:Program FilesMySQLMySQL Server 4.1binmysqldump.exe

I'm not positive of the location on my server, but it is probably the same (or similar) location. Although, I have to wonder, will the spaces cause problems? I wouldn't think so....

Statistics: Posted Author: Jason Sanborn — Thu Jun 15, 2006 9:12 am


]]>
2006-06-15T02:10:30-07:00 2006-06-15T02:10:30-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9480#p9480 <![CDATA[Your Daily Database Backup Failed.]]> Statistics: Posted Author: Unregistered — Thu Jun 15, 2006 2:10 am


]]>
2006-06-14T23:55:38-07:00 2006-06-14T23:55:38-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9472#p9472 <![CDATA[Re: Your Daily Database Backup Failed.]]>
Try this code in phpbb_security.php around line ~1192
 if ( ($last_backup != $today) && (date('H') >= $backup_time) ){                         // Locate your copy of mysqldump and edit the path below //                             // Linux path (most distros?)         //$my_path = "/usr/bin/";                             //Windows path (Windows 2000 using xampp)         //$my_path = "C:/xampp/xampp/mysql/bin/";                             // I'm using Xampp so I use the following...         $my_path = "C:/xampp/xampp/mysql/bin/";           system($my_path ."mysqldump -u". $dbuser ." -p". $dbpasswd ." -h ". $dbhost ." ". $dbname ." > ". (($_SERVER['DOCUMENT_ROOT']) ? $_SERVER['DOCUMENT_ROOT'] : $HTTP_SERVER_VARS['DOCUMENT_ROOT']) . $board_config['script_path'] . $backup_folder ."/". $backup_file  ."-". date('Y-m-d') .".sql", $fp);                 if ($fp == 0)         $msg = 'Your Daily Database Backup Was Completed.';     else         $msg = 'Your Daily Database Backup Failed. Error:# ' . $fp;  


In the event of an error I have added the return var which will result in passing a # to indicate the error type... Note system should be available on all windows home systems... Not sure if different Linux distros use different paths for mysqldump but this should fix most problems...

PS. Remember if you copy this code change &quot... to " as the php bbcode removes HTML on this site

Optional approach...

[code]  if( file_exists( '/usr/bin/mysqldump'))     $my_path = "/usr/bin/";elseif( file_exists( 'C]

Mike

Statistics: Posted Author: Michaelo — Wed Jun 14, 2006 11:55 pm


]]>
2006-06-14T16:37:09-07:00 2006-06-14T16:37:09-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9460#p9460 <![CDATA[Your Daily Database Backup Failed.]]>
"Unregistered";p="9429" wrote:
heh actualy i didnt notice from anywhere that my phpbb security was out of date :D


Lucky for some <img>

Statistics: Posted Author: Flex — Wed Jun 14, 2006 4:37 pm


]]>
2006-06-14T07:26:13-07:00 2006-06-14T07:26:13-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9429#p9429 <![CDATA[Your Daily Database Backup Failed.]]>

Statistics: Posted Author: Unregistered — Wed Jun 14, 2006 7:26 am


]]>
2006-06-14T01:00:15-07:00 2006-06-14T01:00:15-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9421#p9421 <![CDATA[Your Daily Database Backup Failed.]]>
Your Daily Database Backup Was Completed.

:mrgreen: <img>

Statistics: Posted Author: found it — Wed Jun 14, 2006 1:00 am


]]>
2006-06-13T18:57:31-07:00 2006-06-13T18:57:31-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9410#p9410 <![CDATA[Your Daily Database Backup Failed.]]> Statistics: Posted Author: Unregistered — Tue Jun 13, 2006 6:57 pm


]]>
2006-06-13T18:53:04-07:00 2006-06-13T18:53:04-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9409#p9409 <![CDATA[Your Daily Database Backup Failed.]]>
Your Daily Database Backup Was Completed.

<img>

Statistics: Posted Author: Unregistered — Tue Jun 13, 2006 6:53 pm


]]>
2006-06-12T02:36:14-07:00 2006-06-12T02:36:14-07:00 https://integramod.com/forum/viewtopic.php?t=1124&p=9263#p9263 <![CDATA[Re: Your Daily Database Backup Failed.]]> Statistics: Posted Author: Teelk — Mon Jun 12, 2006 2:36 am


]]>