From 9ac0e51a1c397f0652e51ccdbd5b76090c7326e5 Mon Sep 17 00:00:00 2001 From: einhverfr Date: Mon, 25 Sep 2006 22:16:44 +0000 Subject: Updated faq git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@151 4979c152-3d1c-0410-bac9-87ea11338e46 --- doc/faq.html | 63 +++++------------------------------------------------------- 1 file changed, 5 insertions(+), 58 deletions(-) (limited to 'doc') diff --git a/doc/faq.html b/doc/faq.html index 14af4b26..dc739e05 100755 --- a/doc/faq.html +++ b/doc/faq.html @@ -82,55 +82,6 @@ tries to create them, you will receive an error message indicating that the tables already exist. -

  • PostgreSQL 8.0+

    - -To use LedgerSMB with PostgreSQL 8.0+ you have to modify -Pg-tables.sql. This file is in the sql directory. - -
    -CREATE TABLE orderitems (
    -  trans_id int,
    -  parts_id int,
    -  description text,
    -  qty float4,
    -  sellprice float8,
    -  discount float4,
    -  unit varchar(5),
    -  project_id int,
    -  reqdate date,
    -  ship float4,
    -  serialnumber text,
    -  id int default nextval('orderitemsid')
    -) WITH OIDS;
    -
    -CREATE TABLE inventory (
    -  warehouse_id int,
    -  parts_id int,
    -  trans_id int,
    -  orderitems_id int,
    -  qty float4,
    -  shippingdate date,
    -  employee_id int
    -) WITH OIDS;
    -
    -CREATE TABLE assembly (
    -  id int,
    -  parts_id int,
    -  qty float,
    -  bom bool,
    -  adj bool
    -) WITH OIDS;
    -
    - -This change is only required for LedgerSMB versions 2.6.3 and below. - -

    If you already built a dataset without this change you will get -an error when you try to save a PO or assembly. - -

    "ERROR: column "oid" does not exist" - -

    Drop the tables and rebuild WITH OIDS. -

  • Japanese characters

    modify apache so that EUC_JP is the main additional language.
    comment out all unrelated languages except, UTF_8 shift jis, EUC_JP @@ -193,6 +144,10 @@ To make them work load the template either with the builtin template editor or a text editor and save. Templates designed on a Windows platform have the same problem and won't work on a UNIX platform. Once you strip the ^M's the'll work just fine. +

    +Note too that most Linux and UNIX installations come with two utilities for making these +conversions: unix2dos and dos2unix. Windows users can obtain these utilities as part of +Cygwin.

  • UTF-8 character encoding

    @@ -280,7 +235,7 @@ Check if you have latex and pdflatex installed.

  • Apache 2.0 "error 500"

    -Some of the early versions of Apache 2.0 (< patchlevel 44) had a rewrite engine +Some of the early versions of Apache 2.0 (< patchlevel 44) had a rewrite engine which decoded escaped strings. This created a lot of problems and I worked around it by escaping strings twice. If you get a server 500 error 'filename too long' or if collapsed menus @@ -565,14 +520,6 @@ Add in your httpd.conf file. -

  • unknown terminal!

    -the frontend script couldn't figure out which browser you are using -

    include the terminal variable on the URL -

    -  http://localhost/ledger-smb/login.pl?terminal=lynx
    -Valid terminal variables are lynx, mozilla and js - -

  • permission denied

    Check if your web server has write permission to write to the following -- cgit v1.2.3