<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[FrontAccounting forum — Installation guide]]></title>
	<link rel="self" href="https://frontaccounting.com/punbb/extern.php?action=feed&amp;tid=1003&amp;type=atom" />
	<updated>2011-02-26T03:08:46Z</updated>
	<generator>PunBB</generator>
	<id>https://frontaccounting.com/punbb/viewtopic.php?id=1003</id>
		<entry>
			<title type="html"><![CDATA[Re: Installation guide]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8392#p8392" />
			<content type="html"><![CDATA[<p>Hi All.</p><p>I intend experiment with FrontAccounting.<br />I run Ubuntu Desktop 10.10 and am quite new having moved from Windows to Ubuntu<br />I installed FrontAccounting 2.2.8-1 using the Ubuntu Synaptic Package Manager in /usr/share/frontaccounting<br />I saw from the FrontAccounting.org website that one needs Apache, PHP and MySQL<br />Synaptic Package Manager installed Apache 2.2.16-1ubuntu3.1 and MySQL 5.1.49-1ubuntu8.1 and php5-mysql 5.3.3-1ubuntu9.1<br />I also have phpMyAdmin 4:3.3.7-2build0.10 and can log in as users: root and phpmyadmin</p>]]></content>
			<author>
				<name><![CDATA[gukleifo34]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=4399</uri>
			</author>
			<updated>2011-02-26T03:08:46Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8392#p8392</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Installation guide]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=8320#p8320" />
			<content type="html"><![CDATA[<p>What does &quot;I was unable to login &quot; mean. Did you get a screen? Or does your login passwod fail to get you into the system?</p><p>You might try editing config.php and setting <br />&nbsp; &nbsp; $debug &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = 1;&nbsp; &nbsp; // show sql on database errors</p><p>&nbsp; &nbsp; $show_sql &nbsp; &nbsp; &nbsp; &nbsp; = 1;&nbsp; &nbsp; // show all sql queries in page footer for debugging purposes<br />&nbsp; &nbsp; $go_debug &nbsp; &nbsp; &nbsp; &nbsp; = 2;&nbsp; &nbsp; // set to 1 for basic debugging, or 2 to see also backtrace after failure.<br />&nbsp; &nbsp; $pdf_debug &nbsp; &nbsp; &nbsp; &nbsp; = 0;&nbsp; &nbsp; // display pdf source instead reports for debugging when $go_debug!=0</p><p>to see what&#039;s going on.</p>]]></content>
			<author>
				<name><![CDATA[p2409]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=267</uri>
			</author>
			<updated>2011-02-12T16:39:49Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=8320#p8320</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Installation guide]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=7860#p7860" />
			<content type="html"><![CDATA[<p>Hi there.</p><p>I intend experiment with FrontAccounting.<br />I run Ubuntu Desktop 10.10 and am quite new having moved from Windows to Ubuntu<br />I installed FrontAccounting 2.2.8-1 using the Ubuntu Synaptic Package Manager in /usr/share/frontaccounting<br />I saw from the FrontAccounting.org website that one needs Apache, PHP and MySQL<br />Synaptic Package Manager installed Apache 2.2.16-1ubuntu3.1 and MySQL 5.1.49-1ubuntu8.1 and php5-mysql 5.3.3-1ubuntu9.1<br />I also have phpMyAdmin 4:3.3.7-2build0.10 and can log in as users: root and phpmyadmin</p><p>I have had some troubles accessing frontaccounting but was able to get to the frontaccounting login page after doing these things:</p><p>After setting this line:</p><p>&nbsp; &nbsp; Alias /frontaccounting /usr/share/frontaccounting</p><p>in /etc/apache2/conf.d/frontaccounting.conf I was able to get to the frontaccounting login page on localhost by typing:</p><p>&nbsp; &nbsp; http://localhost/frontaccounting/</p><p>I was unable to login and discovered and edited the file:</p><p>&nbsp; &nbsp; /etc/frontaccounting/config_db.php (copied from config_db.php.template)</p><p>to connect to a MySQL database I had set up in phpMyAdmin with these details:</p><p>Database: WYOT<br />User: pauly<br />Password: password</p><p>Here is my config_db.php:</p><p>&lt;?php</p><p>/*Connection Information for the database<br />- $def_coy is the default company that is pre-selected on login</p><p>- host is the computer ip address or name where the database is the default is localhost assuming that the web server is also the sql server</p><p>- user is the user name under which the database should be accessed - need to change to the mysql (or other DB) user set up for purpose<br />&nbsp; NB it is not secure to use root as the user with no password - a user with appropriate privileges must be set up</p><p>- password is the password the user of the database requires to be sent to authorise the above database user</p><p>- DatabaseName is the name of the database as defined in the RDMS being used. Typically RDMS allow many databases to be maintained under the same server.<br />&nbsp; The scripts for MySQL provided use the name logicworks */</p><br /><p>$def_coy = 0;</p><p>$tb_pref_counter = 1;</p><p>$db_connections = array (<br />&nbsp; &nbsp; 0 =&gt; array (&#039;name&#039; =&gt; &#039;WYOT&#039;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;host&#039; =&gt; &#039;localhost&#039;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;dbuser&#039; =&gt; &#039;pauly&#039;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;dbpassword&#039; =&gt; &#039;password&#039;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;dbname&#039; =&gt; &#039;WYOT&#039;,<br />&nbsp; &nbsp; &nbsp; &nbsp; &#039;tbpref&#039; =&gt; &#039;&#039;),<br />&nbsp; &nbsp; );<br />?&gt;</p><br /><p>Can anyone suggest some things to do?</p><p>Thanks</p>]]></content>
			<author>
				<name><![CDATA[paulysa1969]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3278</uri>
			</author>
			<updated>2010-12-30T08:09:33Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=7860#p7860</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Installation guide]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=4376#p4376" />
			<content type="html"><![CDATA[<p>I am sorry. The install instruction at&nbsp; https://frontaccounting.com/punbb/viewtopic.php?id=4 is almost 3 years old and outdated. It has been deleted. Follow the instructions in install.html that is in the root directory after unpacking FA.</p><p>/Joe</p>]]></content>
			<author>
				<name><![CDATA[joe]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=3</uri>
			</author>
			<updated>2010-01-12T22:54:14Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=4376#p4376</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Installation guide]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=4375#p4375" />
			<content type="html"><![CDATA[<p>Ihave not tried this, but the above instructions seem to contradict instruction at https://frontaccounting.com/punbb/viewtopic.php?id=4</p><p>Me thinks, that index.php will &quot;sense&quot; new installation and redirect accordingly?<br />Anyway I will be trying this out and will post reply to clarify this thread.</p>]]></content>
			<author>
				<name><![CDATA[zenx]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=603</uri>
			</author>
			<updated>2010-01-12T22:00:41Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=4375#p4375</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Installation guide]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=4347#p4347" />
			<content type="html"><![CDATA[<p>You should unpack the tarball in your www server document directory, then simply open index.php in this directory with your browser, and follow installer wizard instructions.<br />Janusz</p>]]></content>
			<author>
				<name><![CDATA[itronics]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=89</uri>
			</author>
			<updated>2010-01-10T10:18:37Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=4347#p4347</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Installation guide]]></title>
			<link rel="alternate" href="https://frontaccounting.com/punbb/viewtopic.php?pid=4345#p4345" />
			<content type="html"><![CDATA[<p>I&#039;m trying to install FrontAccounting for my small biz. I however don&#039;t seem to understand the IT jargons in the installation guide. What should actually happen once one has downloaded the files?</p>]]></content>
			<author>
				<name><![CDATA[Bena]]></name>
				<uri>https://frontaccounting.com/punbb/profile.php?id=601</uri>
			</author>
			<updated>2010-01-10T09:55:54Z</updated>
			<id>https://frontaccounting.com/punbb/viewtopic.php?pid=4345#p4345</id>
		</entry>
</feed>
