Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Building HTML Problem - Beta 3

Quote Reply
Building HTML Problem - Beta 3
I just recently upgraded from LinksSQL2.1.0 Beta 2 to Beta 3.

When building pages in the "Build Changed" and "Build All" modes I get the following error message:

A fatal error has occured:
Unable to open backup/ for writing: Is a directory at /home/www/pages/ohiobiz/linkssql2/admin/nph-build.cgi line 302.
When I use "Build Staggered" it seems to work fine. Is this a bug or a permissions issue?Thanks.

Mark G.OhioBiz

Quote Reply
Re: [mgeyman] Building HTML Problem - Beta 3 In reply to
I just upgraded and I've got the same problem (I'm running my directory on a RAQ3).

Last edited by:

Mike King: Jan 20, 2002, 6:41 AM
Quote Reply
Re: [Mike King] Building HTML Problem - Beta 3 In reply to
I've got a "worse" problem with beta 3 .... It keeps erasing my table prefix, and then can't access my data! Tried all sorts of things to make it work... but it won't.

Anyone else seeing that? I'm not using the default lsql_ prefix.

I had to roll back to beta 2.


PUGDOG� Enterprises, Inc.

The best way to contact me is to NOT use Email.
Please leave a PM here.
Quote Reply
Re: [pugdog] Building HTML Problem - Beta 3 In reply to
hehe, yeah that's a bug with beta3 Smile
A temporary fix is:
line ~89
Code:
# $DB->prefix($prefix);
$ret = $DB->set_connect ({
driver => scalar $IN->param('driver'),
host => $host,
port => $port,
database => scalar $IN->param('database'),
login => scalar $IN->param('login'),
password => scalar $IN->param('password'),
RaiseError => 0,
PrintError => 0,
AutoCommit => 1,
PREFIX => $prefix || ''

});
and do the same thing on 383.
Comment out the first one, and add in the 2nd one.

Adrian

Last edited by:

brewt: Jan 20, 2002, 11:54 AM
Quote Reply
Re: [brewt] Building HTML Problem - Beta 3 In reply to
Hi,

In which file?


PUGDOG� Enterprises, Inc.

The best way to contact me is to NOT use Email.
Please leave a PM here.
Quote Reply
Re: [pugdog] Building HTML Problem - Beta 3 In reply to
Oops, my bad... admin/setup.cgi

Adrian
Quote Reply
Re: [brewt] Building HTML Problem - Beta 3 In reply to
Does anyone have a solution for my problem?

Thanks.

Mark G.
Quote Reply
Re: [mgeyman] Building HTML Problem - Beta 3 In reply to
You'll have to wait till Alex gets back for an answer on that one. Just use build staggered for now since it works.

Adrian
Quote Reply
Re: [brewt] Building HTML Problem - Beta 3 In reply to
When I make a clean install of Beta3 into a new directory, no problem, runs fine. The problem occurs when it is installed as an "upgrade", over existing code.

My ADMIN finds my categories and forums, but they don't display via the application. My database is fine, however something seems to be happening to the DB prefix in the code (as mentioned previously by BREWT) so that the application doesn't see the data (thus "no Forums" is displayed).
Quote Reply
Re: [Mike King] Building HTML Problem - Beta 3 In reply to
Scratch the above comment. It was very late/way early and my mind was not in gear. Unsure