<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[FrontAccounting forum — Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
		<link>https://frontaccounting.com/punbb/viewtopic.php?id=3279</link>
		<atom:link href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=3279&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Install/Activate Extensions, Theme, Chart of Accounts not working.]]></description>
		<lastBuildDate>Tue, 17 Jan 2023 10:43:02 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41958#p41958</link>
			<description><![CDATA[<p>Some COAs are not in the official list.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 17 Jan 2023 10:43:02 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41958#p41958</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=41923#p41923</link>
			<description><![CDATA[<p>on my softolisious install of 2.4.14 Extensions, themes, and COAs don&#039;t work<br />tried the recipe here and no joy</p><p>error<br />Cannot download repo index file.</p><p>is the repo gone?</p>]]></description>
			<author><![CDATA[null@example.com (PatJr)]]></author>
			<pubDate>Wed, 04 Jan 2023 15:18:49 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=41923#p41923</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=29527#p29527</link>
			<description><![CDATA[<p>Edit <strong>php.ini</strong> file and remove the semicolon comment character preceding the extension for OpenSSL dll file in windows or the .so file in linux and restart the webserver.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Wed, 08 Nov 2017 09:14:20 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=29527#p29527</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=29524#p29524</link>
			<description><![CDATA[<p>how to active SSL option during installation of front accounting ?</p>]]></description>
			<author><![CDATA[null@example.com (shoaibczone)]]></author>
			<pubDate>Wed, 08 Nov 2017 08:22:09 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=29524#p29524</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21652#p21652</link>
			<description><![CDATA[<p>Each PHP build, not necessarily based on version alone, will have different default php modules/extensions installed or enabled. A check on <strong>php -m</strong> would reveal all those available to it and a comparision will possibly reveal the lack of gzopen() function.</p><p>The PHP 5.5 gzopen() bug is quite well alluded to in stackoverflow.com and other public forums.</p><p>http://pear.php.net/bugs/bug.php?id=20246<br />http://ubuntuforums.org/showthread.php?t=2217927</p><div class="quotebox"><blockquote><p>https://bugs.launchpad.net/ubuntu/+source/php5/+bug/432291/comments/7</p><br /><br /><p>The bug is NOT zlib link problem because it can open gz files with &quot;fopen&quot; for example:</p><p>&lt;?php<br />$gzfile = fopen(&quot;compress.zlib://hello.txt.gz&quot;, &quot;w&quot;);<br />fwrite($gzfile, &quot;hello world!&quot;);<br />fclose($gzfile);<br />?&gt;</p><p>is work well on released binaries. BUT &quot;gzopen&quot; is not defined in php5 binaries it cannot run:</p><p>&lt;?php<br />$data = &quot;Hello World!&quot;;<br />$gzfile = gzopen(&quot;hello.txt.gz&quot;, &quot;w9&quot;);<br />gzwrite($gzfile, $data);<br />gzclose($gzfile);<br />?&gt;</p></blockquote></div><p>configure php with the <strong>--with-zlib=yes</strong> option and for 64 bit systems check if <strong>gzopen64()</strong> exists and possibly either do a search and replace in the FA code or create an <a href="http://piwigo.org/forum/viewtopic.php?id=23759">alias function / wrapper</a> for it:<br />http://stackoverflow.com/questions/23417519/php-zlib-gzopen-not-exists</p><div class="quotebox"><blockquote><p>https://wordpress.org/support/topic/php-function-is-disabled-abort-expected-gzopen-updraft</p><p>&quot;because of large file support, gzopen() has been replaced by gzopen64()&quot;<br />Link: http://www.dotdeb.org/2012/03/01/php-5-4-0-preview-packages/#comment-23656</p><p>Looks like the gzopen() function is no longer available on new versions..</p></blockquote></div>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Fri, 05 Dec 2014 03:58:55 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21652#p21652</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21648#p21648</link>
			<description><![CDATA[<p>The recommended fix did not solve the Install/Activate problem for me.&nbsp; I originally was running:</p><ul><li><p>Ubuntu Server 14.0.4 (LTS)</p></li><li><p>Apache2 (2.4.7-1ubuntu4.1)</p></li><li><p>Mysql 5.5 (5.5.40-0ubuntu0.14.04.1)</p></li><li><p>PHP5 (5.5.9+dfsg-1ubuntu4.5)</p></li><li><p>Frontaccounting (2.3.22)</p></li></ul><p>I noted the exact same behavior as discussed earlier, though even the go_debug = 2 had errors of its own that didn&#039;t appear on the page.&nbsp; The errors involved aren&#039;t particularly important, however, because I tried the same Frontaccounting install on Debian 7.7 and had no issues at all:</p><ul><li><p>Debian Server 7.7</p></li><li><p>Apache2 (2.2.22-13+deb7u3)</p></li><li><p>Mysql 5.5 (5.5.40-0+wheezy1)</p></li><li><p>PHP5 (5.4.35-0+deb7u2)</p></li><li><p>Frontaccounting (2.3.22)</p></li></ul><p>Perhaps this could be a PHP 5.5 issue?&nbsp; I did notice getting errors on the Ubuntu install that gzopen() wasn&#039;t a known function, even though phpinfo() showed zlib installed.</p>]]></description>
			<author><![CDATA[null@example.com (roundtree)]]></author>
			<pubDate>Thu, 04 Dec 2014 20:47:38 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21648#p21648</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21402#p21402</link>
			<description><![CDATA[<p>The bug in the Activate extensions that has been <a href="http://devel.frontaccounting.com/git/?p=fa-stable.git;a=blobdiff;f=includes/archive.inc;h=131ea413102c445178d302e43d17b8c2c7d01c62;hp=696903f9b807ad091ecd7d2f2727c5f62aefd2af;hb=edd2754dc10ac74cfcce991520ad9f9dac8b1905;hpb=9145f42a983ab1e8119092c1bb225c060e29e97a">rectified in v2.3.22 itself</a>. </p><p>Further update by overwriting with the <a href="https://frontaccounting.com/punbb/viewtopic.php?pid=21395#p21395">changed files</a>.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Sun, 09 Nov 2014 10:25:09 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21402#p21402</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=21395#p21395</link>
			<description><![CDATA[<p>I install the version 2.3.22 in on Linux web server.<br />I have the same problem. when I try to Install:<br />&nbsp; <br />Install/Activate Extensions<br />ita works fine but after successfully activating all extensions<br />i m unable to use it&nbsp; &nbsp;<br />My System Diagnotic is OK.<br />Some one fix this problem?<br />Thanks,<br />Arjav Shah</p>]]></description>
			<author><![CDATA[null@example.com (npsentco)]]></author>
			<pubDate>Sat, 08 Nov 2014 12:09:20 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=21395#p21395</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=18923#p18923</link>
			<description><![CDATA[<p><a href="https://frontaccounting.com/punbb/viewtopic.php?id=3884">Related Post</a></p><p><a href="https://frontaccounting.com/fawiki/index.php?n=Main.Installation">Wiki</a> Pre-requisites section has the necessary notes.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Fri, 03 Jan 2014 20:20:14 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=18923#p18923</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=18903#p18903</link>
			<description><![CDATA[<p>I had the same problem with the installs and I finally solved it (at least on my system).<br />I use XAMPP 1.7.7. and I noticed in php.info that OpenSSL Library Version and OpenSSL Header Version are incompatable. This is causing the Apache server to shut down and restart (with &quot;[notice] Parent: child process exited with status 3221225477 -- Restarting.&quot; in the Apache error log) and, in some cases, also producing a Windows error message, saying something like &quot;Shutting down httpd.exe&quot;.<br />Anyway, the solution is really simple. Rename libeay32.ddl and ssleay32.dll in the \xampp\apache\bin folder. Copy \xampp\php\libeay32.ddl and ssleay32.dll to \xampp\apache\bin.<br />Restart Apache and the installs are working as they should.<br />I believe this also applies to a few other XAMPP versions.</p>]]></description>
			<author><![CDATA[null@example.com (rein)]]></author>
			<pubDate>Thu, 02 Jan 2014 16:38:58 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=18903#p18903</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=17016#p17016</link>
			<description><![CDATA[<div class="quotebox"><cite>myname wrote:</cite><blockquote><p>hai...</p><p>I just installed FA 2.3.16 but when I try to install/activate the Languages, Extensions, Themes, and Chart of Accounts there are nothing happen.</p><p>I tried the &quot;mekonen&quot;&#039;s ways, but its not work for me...</p><p>the browser always say &quot;The connection was reset&quot; (I tried with Firefox 22.0 and Google Chrome 27.0.1453.116) what can I do for this problem ?</p><p>thanks</p></blockquote></div><p>hallo ... any body here??? <img src="https://frontaccounting.com/punbb/img/smilies/smile.png" width="15" height="15" alt="smile" /></p>]]></description>
			<author><![CDATA[null@example.com (myname)]]></author>
			<pubDate>Wed, 10 Jul 2013 13:58:32 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=17016#p17016</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=17006#p17006</link>
			<description><![CDATA[<p>hai...</p><p>I just installed FA 2.3.16 but when I try to install/activate the Languages, Extensions, Themes, and Chart of Accounts there are nothing happen.</p><p>I tried the &quot;mekonen&quot;&#039;s ways, but its not work for me...</p><p>the browser always say &quot;The connection was reset&quot; (I tried with Firefox 22.0 and Google Chrome 27.0.1453.116) what can I do for this problem ?</p><p>thanks</p>]]></description>
			<author><![CDATA[null@example.com (myname)]]></author>
			<pubDate>Tue, 09 Jul 2013 16:36:58 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=17006#p17006</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16671#p16671</link>
			<description><![CDATA[<p>Check file/directory write permissions (displayed on system diagnostic page). You can also add all the translations later, when you have FA installed and running.</p>]]></description>
			<author><![CDATA[null@example.com (itronics)]]></author>
			<pubDate>Thu, 16 May 2013 10:27:31 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16671#p16671</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=16662#p16662</link>
			<description><![CDATA[<p>Hi, just downloaded frontaccounting, and begin installation but i&#039;m getting this error:<br />Cannot download repo index file.<br />I have no problems with the preliminary requirements page, the only thing is that I&#039;m behind a proxy, does this affect me?, I can install the aplication without problems but i need to set it up in another languaje</p>]]></description>
			<author><![CDATA[null@example.com (jvargas)]]></author>
			<pubDate>Wed, 15 May 2013 16:43:10 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=16662#p16662</guid>
		</item>
		<item>
			<title><![CDATA[Re: Install/Activate Extensions, Theme, Chart of Accounts not working]]></title>
			<link>https://frontaccounting.com/punbb/viewtopic.php?pid=14673#p14673</link>
			<description><![CDATA[<p><a href="https://frontaccounting.com/fawiki/index.php?n=Main.Installation">Wiki</a>ied as a prequisite for installation.</p>]]></description>
			<author><![CDATA[null@example.com (apmuthu)]]></author>
			<pubDate>Tue, 18 Dec 2012 07:46:04 +0000</pubDate>
			<guid>https://frontaccounting.com/punbb/viewtopic.php?pid=14673#p14673</guid>
		</item>
	</channel>
</rss>
