|
From: Joe E. <joe...@ya...> - 2001-11-22 02:52:34
|
Hi there,
I am trying to install the last release of
sql-ledger software but i always get this error :
##########################3
Forbidden
You don't have permission to access
/sql-ledger/admin.pl on this server.
Apache/1.3.20 Server at linux Port 80
############################
My httpd.conf file has the following entries :
AddHandler cgi-script .pl
DocumentRoot "/var/www"
<Directory "/var/www">
Alias /sql-ledger/ "/var/www/sql-ledger/"
<Directory "/usr/www/sql-ledger">
Options ExecCGI Includes FollowSymlinks
<Directory>
User nobody
Group nogroup
With the above configuration in my http.conf file i
still get the error above.
Besides to that there is something else i don't
understand of the faq.html file in the "permission
denied" section about
chown nobody:nogroup users templates users/members
i don't have the "users/members", is that right ?, or
i got a wrong installation, or it means
users/members.defautl file ?.
Please let me know .
I will appreciate it.
Joe
__________________________________________________
Do You Yahoo!?
Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1
|
|
From: Dieter S. <dsi...@sq...> - 2001-11-22 23:24:36
|
chown nobody:nogroup users templates the members file will be created on first use if it doesn't exist. Dieter Simader http://www.sql-ledger.org (780) 472-8161 DWS Systems Inc. Accounting Software Fax: 478-5281 =========== On a clear disk you can seek forever =========== On Wed, 21 Nov 2001, Joe Echavarria wrote: > Hi there, > > I am trying to install the last release of > sql-ledger software but i always get this error : > > ##########################3 > Forbidden > > You don't have permission to access > /sql-ledger/admin.pl on this server. > > Apache/1.3.20 Server at linux Port 80 > ############################ > My httpd.conf file has the following entries : > > AddHandler cgi-script .pl > DocumentRoot "/var/www" > <Directory "/var/www"> > > Alias /sql-ledger/ "/var/www/sql-ledger/" > <Directory "/usr/www/sql-ledger"> > Options ExecCGI Includes FollowSymlinks > <Directory> > > User nobody > Group nogroup > > With the above configuration in my http.conf file i > still get the error above. > > Besides to that there is something else i don't > understand of the faq.html file in the "permission > denied" section about > > chown nobody:nogroup users templates users/members > > i don't have the "users/members", is that right ?, or > i got a wrong installation, or it means > users/members.defautl file ?. > > Please let me know . > > I will appreciate it. > > > Joe > > __________________________________________________ > Do You Yahoo!? > Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month. > http://geocities.yahoo.com/ps/info1 > > |
|
From: Louis B. M. <lb...@he...> - 2001-11-23 17:17:15
|
Greetings, I'm trying my first SQL-Ledger installation, using Postgres on a Debian box (Potato which implies postgres 6.5). In due course of creating the database I get: ERROR: parser: parse error at or near "select" insert into tax (chart_id,rate) values ((select id from chart where accno = 2310),0.07); It appears that postgres 6.5 isn't able to do the parenthetical select, is this problem resolved with postgres 7.x? Thanks in advance, Louis |
|
From: <gha...@fr...> - 2001-11-23 17:40:58
|
On Fri, 23 Nov 2001, Louis B. Moore wrote: > I'm trying my first SQL-Ledger installation, using Postgres on a Debian > box (Potato which implies postgres 6.5). In due course of creating the > database I get: > > ERROR: parser: parse error at or near "select" insert into tax > (chart_id,rate) values ((select id from chart where accno = 2310),0.07); > > It appears that postgres 6.5 isn't able to do the parenthetical select, > is this problem resolved with postgres 7.x? I run Debian testing/unstable and unstable systems with PostgreSQL. The completely "unstable" system has SQL-Ledger, and it works. Or at least the version of SQL-Ledger installed on it works. I may not be quite up to date. Gord |
|
From: Louis B. M. <lb...@he...> - 2001-11-23 22:40:02
|
> > > > It appears that postgres 6.5 isn't able to do the parenthetical select, > > is this problem resolved with postgres 7.x? > > I run Debian testing/unstable and unstable systems with PostgreSQL. > The completely "unstable" system has SQL-Ledger, and it works. > Or at least the version of SQL-Ledger installed on it works. > I may not be quite up to date. > > Gord > That's good news. Testing has the more current postgresql and stable is still at 6.5. Thanks, Louis |
|
From: Gary P. <ga...@es...> - 2001-11-24 15:20:51
|
I got this error when I first installed SQL-Ledger. The cause of the problem wasn't anything like what the error message would have lead me to believe. After a long fight I managed to rid myself of the error. I did the following: 1) Named my database in all lower case letters 2) Insured the Database Adminstrator was postgres 3) Insured that Connected To used template1 3) Verified that postgres was the user that created the postgresql installation 4) Changed the sql-ledger configuration file so that postgres was the user. I think pregres was the one in the configuration file. 5) Reinstalled from scratch postgresql, DBD and DBI Unfortuantely, I don't know exactly which of these steps fixed the problem. I had a series of setback before I got everything up and running. I hope this helps you out. -Gary On Fri, 23 Nov 2001, Louis B. Moore wrote: > > Greetings, > > I'm trying my first SQL-Ledger installation, using Postgres on a Debian > box (Potato which implies postgres 6.5). In due course of creating the > database I get: > > ERROR: parser: parse error at or near "select" insert into tax > (chart_id,rate) values ((select id from chart where accno = 2310),0.07); > > It appears that postgres 6.5 isn't able to do the parenthetical select, > is this problem resolved with postgres 7.x? > > Thanks in advance, > > Louis > > > > |