<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Solved: Backup does not complete]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=6784</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=6784&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Solved: Backup does not complete.]]></description>
		<lastBuildDate>Thu, 21 Sep 2017 17:50:55 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=28689#p28689</link>
			<description><![CDATA[<p>Thanks for your reply, I will get back to you soon.</p>]]></description>
			<author><![CDATA[null@example.com (delords)]]></author>
			<pubDate>Thu, 21 Sep 2017 17:50:55 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=28689#p28689</guid>
		</item>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=28675#p28675</link>
			<description><![CDATA[<p>Increase the company timeout from 600 (10 minutes) to 86400 (1 day) in <strong>Setup -&gt; Company Setup.</strong>.</p><p>The said message comes from line 256 of <strong>includes/session.inc</strong><br />This happens when <strong>sys_prefs</strong> parameter &#039;db_ok&#039; is not true (1) and $_SESSION[&quot;wa_current_user&quot;] has become invalid due to a timeout.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Wed, 20 Sep 2017 17:20:05 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=28675#p28675</guid>
		</item>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=28674#p28674</link>
			<description><![CDATA[<div class="quotebox"><cite>apmuthu wrote:</cite><blockquote><p>I trust you have restarted your webserver after changes to php.ini and apache conf files.<br />Hope you have table prefixes for your FA tables. Otherwise, all tables in your database will be attempted to be backedup and it will cause a sever resource issue.<br />Purge the FA cache in the company folders:<br /></p><div class="codebox"><pre><code>FA 2.3
company/#/js_cache/*.js

FA 2.4
company/#/js_cache/%/*.js</code></pre></div></blockquote></div><p>I have followed the above but I am still having the issue of the status bar rotating for a few seconds, then disappears and the process ending with neither an error or completion message, but it&#039;s obvious no backup was created.</p><p>Here is something new I am experiencing, A message comes up once in a while in red stripe...</p><p>&quot;Access to database has been blocked until database upgrade is completed by system administrator.&quot;</p>]]></description>
			<author><![CDATA[null@example.com (delords)]]></author>
			<pubDate>Wed, 20 Sep 2017 16:16:26 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=28674#p28674</guid>
		</item>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=28230#p28230</link>
			<description><![CDATA[<p>I trust you have restarted your webserver after changes to php.ini and apache conf files.<br />Hope you have table prefixes for your FA tables. Otherwise, all tables in your database will be attempted to be backedup and it will cause a sever resource issue.<br />Purge the FA cache in the company folders:<br /></p><div class="codebox"><pre><code>FA 2.3
company/#/js_cache/*.js

FA 2.4
company/#/js_cache/%/*.js</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Sun, 23 Jul 2017 02:58:52 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=28230#p28230</guid>
		</item>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=28229#p28229</link>
			<description><![CDATA[<p>Hello, </p><p>thank you for your reply but still not working.</p>]]></description>
			<author><![CDATA[null@example.com (delords)]]></author>
			<pubDate>Sat, 22 Jul 2017 12:43:56 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=28229#p28229</guid>
		</item>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=28225#p28225</link>
			<description><![CDATA[<p>max_execution_time = 120<br />post_max_size = 8M<br />upload_max_filesize = 32M</p><div class="quotebox"><blockquote><p>Apache conf file:<br />http://httpd.apache.org/docs/2.2/mod/core.html#limitrequestbody</p><p>If, for example, you are permitting file upload to a particular location and wish to limit the size of the uploaded file to 100K, you might use the following directive:</p><p>LimitRequestBody 102400</p></blockquote></div><p>Other defaults hardcoded in FA are in the <a href="https://frontaccounting.com/fawiki/index.php?n=Devel.DefaultFADataInCodeAndNotInConfigFiles">Wiki</a>. In particular, refer the lines 562-566 in <em>function db_export()</em> in <strong>admin/db/maintenance_db.inc</strong>:<br /></p><div class="codebox"><pre><code>    // set max string size before writing to file
    $max_size = 1048576 * 2; // 2 MB
    // changes max size if value can be retrieved
    if (ini_get(&quot;memory_limit&quot;))
        $max_size = 900000 * ini_get(&quot;memory_limit&quot;);</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Fri, 21 Jul 2017 16:46:12 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=28225#p28225</guid>
		</item>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=28222#p28222</link>
			<description><![CDATA[<p>Hi, my backup is more than 2MB zipped and I have increased memory_limit in php.ini to 32M, yet backup still not working</p>]]></description>
			<author><![CDATA[null@example.com (delords)]]></author>
			<pubDate>Fri, 21 Jul 2017 14:08:54 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=28222#p28222</guid>
		</item>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=27878#p27878</link>
			<description><![CDATA[<p>Thanks for the suggestion. Timeouts are not an issue, but the backups are close to 1MB, compressed, just over 6MB uncompressed. </p><p>It turns out that the memory_limit in php.ini was just 8M, so I increased it to 32M, and the problem went away.</p><p>Thanks again for the quick response and the really useful suggestion.</p>]]></description>
			<author><![CDATA[null@example.com (rlhamilton)]]></author>
			<pubDate>Mon, 22 May 2017 22:07:39 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=27878#p27878</guid>
		</item>
		<item>
			<title><![CDATA[Re: Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=27835#p27835</link>
			<description><![CDATA[<p>When the backup file size becomes big, the php.ini&#039;s settings and script timeout values may begin to matter. What was the size of your last backup - with and without compression? Check to see if this is on the threshold of the php.ini and apache conf settings.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 16 May 2017 15:46:21 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=27835#p27835</guid>
		</item>
		<item>
			<title><![CDATA[Solved: Backup does not complete]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=27833#p27833</link>
			<description><![CDATA[<p>I&#039;m running into a strange problem regarding backups. When I click Create Backup, I get the status bar for a few seconds, then that disappears and the process has clearly ended with neither an error or completion message. However, no backup file is shown in the backup list (I checked the backup directory and confirmed that it contains no new backup file). I see no error messages in any log (apache, mysql, etc.).</p><p>This is relatively recent; until about a week ago (long after I last updated Frontaccounting), I was able to successfully create, save, and restore backups.</p><p>I&#039;m running front accounting 2.3.25 on Ubuntu 14.04 LTS with MySQL 14.14, Apache2, and PHP 5.5.9.</p><p>I suspect this is not a front accounting problem (other than the lack of error messages), but I&#039;m hoping someone has some insight into what might be happening or some suggestions on troubleshooting the problem.</p><p>Thanks in advance for any insight you can provide.</p>]]></description>
			<author><![CDATA[null@example.com (rlhamilton)]]></author>
			<pubDate>Mon, 15 May 2017 20:50:08 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=27833#p27833</guid>
		</item>
	</channel>
</rss>
