<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — extension installation instructions - step by step]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=5665&amp;type=atom" />
	<updated>2015-04-08T07:41:50Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=5665</id>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23166#p23166" />
			<content type="html"><![CDATA[<p>**-----------------**<br />This &quot;Solution&quot; didn&#039;t work for me. Not saying it wont work for you BUT please test completely 1st before wasting your time with the setup like I did <img src="https://frontaccounting.com/punbb/img/smilies/smile.png" width="15" height="15" alt="smile" /> <br />**------------------**</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-08T07:41:50Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23166#p23166</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23165#p23165" />
			<content type="html"><![CDATA[<p>For those attempting to use FA on Ubuntu 14.04, replace all instances of <strong>gzopen</strong> with <strong>gzopen64</strong> to get it working.</p><p>The following should be self-explanatory:</p><div class="codebox"><pre><code>php -r &#039;var_dump(function_exists(&quot;gzfile&quot;));&#039; 
bool(true) 
php -r &#039;var_dump(function_exists(&quot;gzopen&quot;));&#039; 
bool(false) 
php -r &#039;var_dump(function_exists(&quot;gzopen64&quot;));&#039; 
bool(true)</code></pre></div><p>The following posts are useful references:<br /><a href="https://phabricator.wikimedia.org/T68952">generateSitemap.php gzopen() fatal error on Ubuntu 14.04 (replace gzopen() by gzopen64())</a><br /><a href="https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1315888">Zlib functions (gzopen etc.) are undefined while gzopen64 etc. exist </a><br /><a href="http://pear.php.net/bugs/bug.php?id=20246">Bug #20246 &nbsp; &nbsp; Broken with php 5.5.9</a></p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-04-08T07:18:12Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23165#p23165</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23163#p23163" />
			<content type="html"><![CDATA[<p>**-------------------------------------------**</p><p>EDIT : All the issues here are a result of using ubuntu 14.04 LTS</p><p>I have reinstalled using ubuntu 12.04LTS and everything is running well</p><p>**-------------------------------------------**</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-08T05:43:49Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23163#p23163</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23160#p23160" />
			<content type="html"><![CDATA[<p>Hi @apmuthu.</p><p>I&#039;ll be running FA on a VM so I don&#039;t &quot;have&quot; to be using ubuntu 14.04.</p><p>I&#039;m open to using Ubuntu 12.04LTS if it removes the problem.</p><p>Do you know (or heard) if this issue exists in previous Ubuntu versions?</p><p>thank you<br />Darryl</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-08T01:36:55Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23160#p23160</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23112#p23112" />
			<content type="html"><![CDATA[<p>https://bugs.launchpad.net/ubuntu/+source/php5/+bug/1315888</p><p>If gzopen64() function exists, use it else use gzopen() =&gt; needs to be implemented in FA.</p><p>The said function appears in 4 core files (and not in any extension file):</p><div class="codebox"><pre><code>  admin/backups.php (1 hit)
    Line 102:     if (function_exists(&quot;gzopen&quot;))
  admin/db/maintenance_db.inc (1 hit)
    Line 723:         if ($zp = @gzopen(BACKUP_PATH . $backupfile, &quot;a9&quot;))
  includes/archive.inc (2 hits)
    Line 441:             if ($fp = gzopen($this-&gt;options[&#039;name&#039;], &quot;wb{$this-&gt;options[&#039;level&#039;]}&quot;))
    Line 462:         return @gzopen($this-&gt;options[&#039;name&#039;], &quot;rb&quot;);
  includes/packages.inc (2 hits)
    Line 165:     $list = gzopen($file, &#039;rb&#039;);
    Line 220:     $file = $zip ?  gzopen($fname, &#039;wb&#039;) : fopen($fname, &#039;wb&#039;);</code></pre></div><p>Maybe a wrapper function is in order.... fa_gzopen()</p><p>@joe: any ideas?</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-04-05T15:53:59Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23112#p23112</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23105#p23105" />
			<content type="html"><![CDATA[<p>update 3 - problem persists.</p><p>although It looks like progress on the face of it, i.e. I can see&nbsp; list of themes / extensions.</p><p>I cannot apply a theme nor see the &quot;activated extension&quot; of import transactions</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-05T08:30:57Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23105#p23105</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23104#p23104" />
			<content type="html"><![CDATA[<p>Update 2 (need further test to see if solved completely)</p><p>10) found a similar issue in wordpress found here https://wordpress.org/support/topic/php-function-is-disabled-abort-expected-gzopen-updraft </p><p>11) added this code to the config.php - &gt;function gzopen( string $filename , $mode, $use_include_path = 0 ) { return gzopen64($filename, $mode, $use_include_path); }</p><p>12) now can see the list of extensions / themes / COA&#039; (good start</p><p>However this error is thrown (with debugging still on) - &gt; Argument 1 passed to gzopen() must be an instance of string, string given, called in /var/www/html/frontaccounting/includes/packages.inc on line 165 and defined in file: /var/www/html/frontaccounting/config.php at line 290</p><p>13) further help needed but getting closer. </p><p>Can now:<br />a) see the theme list and download (but can not activate)</p><p>b) see the COA list and download (appears to working when creating new company)</p><p>c) see list of extensions and download and activate (yet to see how to use the import transactions function, or see where it lives after activation)</p><p>If anyone can assist further with the error and theme installation, thank you.</p><p>After a day of banging my head against a wall ,im taking a break to watch the footy and have a beer.</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-05T06:14:56Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23104#p23104</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23103#p23103" />
			<content type="html"><![CDATA[<p>Update (still not solved)</p><p>It seems &quot;not seeing any extension/themes listed in the setup area&quot; is something to do with PHP zlib compression not being installed in ubuntu 14.04</p><p>further steps taken&quot;</p><p>1) turned on FA debugging</p><p>2) clicking on install/activate COA get this msg &quot; www/html/frontaccounting/includes/packages.inc on line 165&quot;</p><p>3) google search revealed zlib not installed in PHP</p><p>4) confirmed not installed by running phpinfo in doc root</p><p>5) installed using these instructions: http://www.namhuy.net/2430/install-enable-zlib-linux-server.html</p><p>6) NOTE! if you get this error, like i did -&gt; &quot;Could not open lock file /var/lib/dpkg/lock - open (13: Permission denied)&quot;</p><p>THEN use these instruction before completing step 5) http://ubuntuforums.org/showthread.php?t=1853026</p><p>7) reboot apache</p><p>8) can see zlib is now on (via phpinfo)</p><p>Directive&nbsp; &nbsp; Local Value&nbsp; &nbsp; Master Value<br />zlib.output_compression&nbsp; &nbsp; On&nbsp; &nbsp; On<br />zlib.output_compression_level&nbsp; &nbsp; 6&nbsp; &nbsp; 6<br />zlib.output_handler&nbsp; &nbsp; no value&nbsp; &nbsp; no value</p><p>9) and Im stuck again (the same error persisting &quot; www/html/frontaccounting/includes/packages.inc on line 165&quot;</p><p>.....but now convinced it&#039;s something to do with ubuntu 14 /PHP version.</p><p>I hoping someone can point me in the right direction from here</p><p>Cheers<br />Daz</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-05T05:09:50Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23103#p23103</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23099#p23099" />
			<content type="html"><![CDATA[<p>Perhaps and img will help explain the issue better - Lets use your Australia COA as an example.</p><p>So far I have :</p><p>1) downloaded the en_AU-0000.sql file from your git hub fork<br />2) copied into the FA SQL directory<br />3) AS ADMIN loged into the initial company and navigated to install COA<br />4) I am faced with this page (nothing in the list -&gt; https://www.dropbox.com/s/icbq1u66vugr3p0/Screen%20shot%202015-04-05%20at%208.27.25%20AM.jpg?dl=0</p><p>Now,</p><p>If I create a new company, the en_AU-0000 appears in the list (although it is throwing sql errors which is another issue)</p><p>system info:<br />ubunutu 14.04LTS<br />mysql 5.5.41<br />PHP 5.5.9</p><br /><br /><p>Can you tell me what possible causes are for this?</p><p>Thank you</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-04T22:49:13Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23099#p23099</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23098#p23098" />
			<content type="html"><![CDATA[<p>and what are the steps to do = &quot;Install from the official pkg repo from within FA first&quot;</p><p>I am an end user, not a programmer.</p><p>I&#039;ve noticed most of the extension installation questions in the forum remain un answered.</p><p>unfortunately there are some real holes in the the documentation and answered being provided. </p><p>Well intentioned responses but to much assumed knowledge in the replies. Knowledge not covered sufficiently in the documentation. </p><p>Hopefully, If I get a solution for this, I can provide some clearly written, step by step instructions for the subject.</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-04T21:18:41Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23098#p23098</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23097#p23097" />
			<content type="html"><![CDATA[<p>Install from the official pkg repo from within FA first. Then update the files from <a href="https://github.com/apmuthu/frontaccounting/tree/master/extensions">my unofficial extensions</a> file set.</p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-04-04T20:30:58Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23097#p23097</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23075#p23075" />
			<content type="html"><![CDATA[<p>Hi Apthur,</p><p>If I go to&nbsp; Install/Activate Extensions, I am faced with the install extension bage with no options.</p><p>Not sure if it&#039;s related but the problem is the same for :<br />&nbsp; Install/Activate Extensions<br />&nbsp; Install/Activate Themes<br />&nbsp; Install/Activate Chart of Accounts</p><br /><p>Docu seems to suggest clicking these options should make FA populate the list from the githup repo, is that right?</p><p>I have net access on this machine. Any ideas?</p><br /><p>Cheers<br />Daz</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-02T22:40:33Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23075#p23075</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23071#p23071" />
			<content type="html"><![CDATA[<p>The Wiki is the place to look:</p><p>Generic Installation of <a href="https://frontaccounting.com/fawiki/index.php?n=Main.Usage">Addons and their links</a>.</p><p><a href="https://frontaccounting.com/fawiki/index.php?n=Help.InstallActivateExtensions">Specific to Modules</a></p>]]></content>
			<author>
				<name><![CDATA[apmuthu]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=364</uri>
			</author>
			<updated>2015-04-02T16:20:56Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23071#p23071</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[extension installation instructions - step by step]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=23069#p23069" />
			<content type="html"><![CDATA[<p>**-------------------------------------------**</p><p>EDIT : All the below issue are a result of using ubuntu 14.04 LTS</p><p>I have reinstalled using ubuntu 12.04LTS and everything is running well</p><p>**-------------------------------------------**<br />Hi all,</p><p>I&#039;ve been trolling through heaps of posts for an hour looking for a simple step by guide to installing extensions.</p><p>Is there a link somewhere on the forum?</p><p>There really should be a stick for something like this for my 2 cents</p><p>Cheers<br />Daz</p>]]></content>
			<author>
				<name><![CDATA[slewman]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=19763</uri>
			</author>
			<updated>2015-04-02T12:37:32Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=23069#p23069</id>
		</entry>
</feed>
