I've uploaded your hello.php to my public_html folder : it will not
load, let alone show the expected result. Exactly the same as with me
trying to access
bluesmaster.nl : the browser says it's busy
contacting the domain but nothing eventually happens. Updated my still
open support ticket with this result and asked for an explanation.
Couldn't open my habari.db with terminal on the server (likely a
password should've been included somewhere ?) FYI : I'm not very
comfortable with terminal use (being a Mac OS X aficionado). So I've
downloaded habari.db via FTP and now accessed the file on my desktop
successfully: the answer was 'normal', but I'm afraid that doesn't say
much about the file on the remote server ? BTW, would deleting
habari.db on the server and replacing it with the copy on my desktop
be essentially the same as the result of the terminal session :
-quote-
$ sqlite3 /path/to/habari/user/habari.db
sqlite> .backup main habari.db.bak
sqlite> .exit
$ mv /path/to/habari/user/habari.db /path/to/habari/user/
habari.db.old
$ mv /path/to/habari/user/habari.db.bak /path/to/habari/user/habari.db
-unquote-
On Oct 7, 7:02 am, Colin <
lild...@gmail.com> wrote:
> The fact you can't even view a simple php file tells me there could be
> something wrong with your hosting configuration.
>
> You could try make it even simpler and try creating a test file with the
> contents:
>
> <?php echo "Hello"; ?>
>
> If you don't see the word Hello when you view the page, it means your
> hosting is not configured correctly for PHP and your provider needs to look
> into it. Alternatively, you could have made a mistake and there was an
> error which should have been written to the error log.
>
> As for the habari.db-journal file: this file is normal, however it should be
> deleted at the end of every transaction by default. If it isn't, it means
> some other application (not Habari) has probably enabled exclusive locking
> mode on this DB.
>
> This could also explain the lock errors you get in the error log.
>
> You can check if this is the case as follows:
>
> $ sqlite3 /path/to/habari/user/habari.db
> sqlite> PRAGMA locking_mode;
>
> If this returns "exclusive" then you can change this to normal using:
>
> sqlite> PRAGMA locking_mode=NORMAL;
>
> This should hopefully remove the exclusive locking on the DB file.
>
> More details on the -journal file and exclusive locking can be found athttp://
www.sqlite.org/tempfiles.html