Thread: [Personalbackup-users] Web login cycling
Status: Beta
Brought to you by:
linuxtuxie
|
From: Raf <mil...@ho...> - 2006-02-01 18:53:31
|
Kind list's members
in order to restest the whole install process
before starting with production phase,
this morning I've made a fresh Fedora 2 install
on a test machine and fresh downloaded Personalbackup
from CVS.
Installation has gone fine, like in previous tests, but
when I try to log in personalbackup's web interface
as admin, the browser reloads the login.cgi page with
no-erros or warns.
If I submit wrong user/password the
"Wrong password or username, please try again"
message is correctly displayed, but with correct
one the log-in is reloaded forever.
I've tryed to figure-out the problem with no success.
Hope you can help me.
Logs in attachment:
httpd.conf
httpd's access_log
personalbackup.conf
postgresql's log
httpd's error_log
Thank you for your kind support.
Best regards
Raf
####### httpd.conf
# PERSONALBACKUP
Alias personalbackup /var/www/html/personalbackup
<DirectoryMatch /var/www/html/personalbackup>
DirectoryIndex index.cgi
AllowOverride None
Order allow,deny
Allow from all
Options ExecCGI
AddHandler cgi-script .cgi
</DirectoryMatch>
####### access_log:
192.168.0.1 - - [01/Feb/2006:10:49:22 +0100] "POST /personalbackup/login.cgi
HTTP/1.1" 200 105 "http://192.168.0.3/personalbackup/login.cgi" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
192.168.0.1 - - [01/Feb/2006:10:49:28 +0100] "GET
/personalbackup/index.cgi?CGISESSID=650060641ceef884b2391b70c7b4bbdf
HTTP/1.1" 302 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1;
NET CLR 1.1.4322)"
192.168.0.1 - - [01/Feb/2006:10:49:36 +0100] "GET /personalbackup/style.css
HTTP/1.1" 304 - "http://192.168.0.3/personalbackup/login.cgi" "Mozilla/4.0
(compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
192.168.0.1 - - [01/Feb/2006:10:49:31 +0100] "GET /personalbackup/login.cgi
HTTP/1.1" 200 1576 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;
SV1; .NET CLR 1.1.4322)"
192.168.0.1 - - [01/Feb/2006:10:49:36 +0100] "GET
/personalbackup/images/background.gif HTTP/1.1" 304 -
"http://192.168.0.3/personalbackup/login.cgi" "Mozilla/4.0 (compatible; MSIE
6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
###### PERSONALBACKUP.CONF
#
# PersonalBackup configuration file
#
# $Header: /cvsroot/personalbackup/personalbackup/personalbackup.conf,v 1.29
2006/01/09 01:32:21 linuxtuxie Exp $
#############################################################################
# PersonalBackup - A company-wide solution for backing up all your
#
# Windows machines and Samba shares
#
#
#
# Copyright (C) 2004 Kim Kuylen / Melexis
#
#
#
# This program is free software; you can redistribute it and/or
#
# modify it under the terms of the GNU General Public License
#
# as published by the Free Software Foundation.
#
#############################################################################
# The site name displayed on all HTML pages
$sitename = "PersonalBackup";
# The servername where the postgres database for PersonalBackup is located
$dbserver = "127.0.0.1";
# The database name which holds the PersonalBackup database schema
$dbname = "personalbackup";
# The postgres user which has access to the PersonalBackup database schema
$dbuser = "pbuser";
# The password of the postgres user mentioned above
$dbpasswd = "secret";
# The port on which the postgres database is listening
# The default port 5432 should be ok
$dbport = "5432";
# The server on which the PersonalBackup web-interface is installed.
# This can be the same machine as the database server
$webserver = "127.0.0.1";
# Enter the ip address of your wins server here so that PersonalBackup
# can find the ip-addresses of the netbios names
$winsserver = "127.0.0.1";
# The ip range which defines vpn access
$vpnrange = "10.32.0.0:10.32.0.100";
# Who will receive all the administration mails?
# The $suffix will automatically be added to this name, so do NOT place
# a @ here!
$administrator = "root";
# Where may PersonalBackup store its logfiles created pro machine?
$clientlogdir = "/var/log/personalbackup";
# Where are the PersonalBackup executables installed?
$installdir = "/usr/sbin";
# Where is is the PersonalBackup web interface installed?
$webinstalldir = "/var/www/html/personalbackup";
# The location of the PersonalBackup library
$libinstalldir = "/usr/lib/personalbackup";
# Where are the html templates stored?
$templatedir = "/var/www/html/personalbackup/templates";
# Where can PersonalBackup store its temporary files?
# Make sure it is big enough, this folder will also be used as temporary
# placeholder during restore operations.
$tempdir = "/backup/tmp";
# This folder holds the backups, make sure it is big enough.
$pooldir = "/backup/personalbackup/pool";
# Where is the configuration file located?
$confdir = "/etc/personalbackup";
# Which languages are available to the users?
$languages = {
# "nl" => "Nederlands",
# "fr" => "Francais",
# "de" => "Deutch",
"en" => "English"
};
# What's the default language we present new users?
# By default we are using Shakespeare's language ;)
$defaultlang = "en";
# What's the domain name
$suffix = "raf.local";
# What's the windows domain/workgroup name?
$workgroup = "RAF";
# Which Authentication method will you be using?
# Valid values are: ldap, passwd and database
$authentication = "database";
# Do you allow the creation of new accounts?
# If you select database as authentication method you need to set this
# value to 1. Otherwise you are not able to register new users.
$allowcreation = 0;
# Do you allow updates of the accounts in personalbackup?
# If set to 1 the users can change their password.
$allowupdate = 0;
# If you are using an ldap server to authenticate...define it's name here
$ldapserver = "ldap.acme.com";
# What's the ldap base?
$ldapbase = "dc=base";
# Where can I find the executables?
$mailprog = "/usr/sbin/sendmail";
$smbclient = "/usr/bin/smbclient";
$nmblookup = "/usr/bin/nmblookup";
$echo = "/bin/echo";
$mkdir = "/bin/mkdir";
$cp = "/bin/cp";
# At what time of the day do we start backing up again?
# By default the database will be reset at 23 hours
# If defined, we will also run the cleanup script at this moment.
$resettime = "23:00";
# Parameter which defines the maximum number of clients that PersonalBackup
# may start simultaniously
$maxclients = 5;
# How may seconds are we going to sleep if personalbackupd has processed all
# the machines ones?
$idletime = 900;
# Timeout in seconds when waiting for a successful backup. If no output
# is received during this
# time, then it is assumed that something has gone wrong during the backup,
# and the backup is terminated.
$clienttimeout = 7200;
# When PersonalBackup is actually busy with backing up the share it will
# perform regular pings to make sure the machine is still alive and
# kicking. You can set the interval between these checks here
# The default is set to 30 minutes
$pinginterval = 1800;
# Delay in seconds to wait for starting to backup after the user has
# received his warning message via mail
$messagedelay = 60;
# Set here the maximum retry value for unreachable shares pro day
$maxretry = 5;
# This parameters informs PersonalBackup when we think a backup may
# receive the label successful.
# If for example we set this parameter to 90, it means that if
PersonalBackup
# backed up 90% or more datafiles from the remote machine, we label the
# backup as successful.
# You can set this parameter to 100%, however keep in mind that if
# PersonalBackup isn't able to backup one file of a complete backup
# of for example 1.000.000 files....the complete backup is marked as
Failed!!
$backupthreshold = 90;
# If the next parameter is set to 1 PersonalBackup will read the CVS Entries
# file on the remote machine and skips all files that are
# referenced in this file.
# We are assuming that the files under cvs are already backed up by the
# CVS server :)
# If you still want to backup all the files that are located under CVS set
# the parameter to 0
$excludecvs = 1;
# Determine the default maximum backup size in Mb for each share.
# Set this parameter to 0 to disable this feature.
# The maximum backup size can also be set pro share in the administrator
# interface.
$defaultbackupsize = 0;
# Determine the default maximum vpn backup size in Mb for each share.
# Set this parameter to 0 to disable this feature.
# The maximum vpn backup size can also be set pro share in the administrator
# interface and the user also has the ability to set this parameter.
$defaultvpnsize = 0;
# Determine here the maximum allowed restore size in Mb which can be used
# by the end users with the restore web interface.
# You can set this to 0 to disable this feature.
# However keep in mind that you will probably bounce against the 2Gb file
# limit (Unless you are using Apache >= 2.2.0). Also keep in mind that
# this size is the uncompressed one...Each restore via the web interface
# will go through a zipping program...which will take a long time and
consume
# a lot of cpu/memory for a big restore.
# A possible workaround is to provide a Samba share for the pool, so that
# users can directly copy there data from this share.
# So in conclusion...the idea behind the restore interface is to get some
# files back quickly by the end user. It is not intended to restore a
# complete disk...that's currently beyond its purpose.
$maxrestoresize = 500;
# Do not backup the following folder/files!
# Also note that the matching performed is done case
# insensitive (so .Mp3 = .mp3 = .MP3 = .mP3)
# You can use all the regex expressions you know here :)
$excludefiles = [
# do not backup bmp, gif, jpg, jpeg, mpg, mpeg, avi, asf, exe, pif,
# src, bat, ppt, pps, com, vbs, mpe, pcx, png, vcf, wav, mp3,
# mov and midi files from the attach folder
"\/attach\/.*\.bmp",
"\/attach\/.*\.gif",
"\/attach\/.*\.jpg",
"\/attach\/.*\.jpeg",
"\/attach\/.*\.mpg",
"\/attach\/.*\.mpeg",
"\/attach\/.*\.avi",
"\/attach\/.*\.wmv",
"\/attach\/.*\.asf",
"\/attach\/.*\.exe",
"\/attach\/.*\.pif",
"\/attach\/.*\.scr",
"\/attach\/.*\.bat",
"\/attach\/.*\.ppt",
"\/attach\/.*\.pps",
"\/attach\/.*\.com",
"\/attach\/.*\.vbs",
"\/attach\/.*\.mpe",
"\/attach\/.*\.pcx",
"\/attach\/.*\.png",
"\/attach\/.*\.vcf",
"\/attach\/.*\.wav",
"\/attach\/.*\.mp3",
"\/attach\/.*\.mov",
"\/attach\/.*\.midi",
# Do not backup the netscape caching folders
"\/netscape.*cache\/.*",
# Do not backup the Eudora adds caching folders
"\/eudpriv.*cache\/.*",
# Do not backup the sockscap folders
"\/users.*cache\/.*",
# Do not backup windows installation files
"\/win..\/.*\.cab",
# Do not backup the windows recycle bin
"\/recycled\/.*"
];
# This parameter defines the number of weeks we are going to wait before
# sending the users a mail to notify them that there backup was unsuccessful
# during these weeks. The user will only receive a mail if the backup is
# enabled AND if the user enabled mail notification.
# Set to 0 to disable this feature completely.
# The default value is set to 2 weeks
$notifyuser = 2;
# This parameter defines the number of backup sets you want to keep on disk.
# By default this is set to 3 backup sets, which means that 3 weeks of
# backups will be kept on disk. All backup sets
# greater than 3 will be processed by the cleanupscript.
# Set the parameter to 0 if you want to keep the backups forever on disk ;)
$maxbackup = 3;
# Define here what you want to do with backup sets that need to be archived
# A few suggestions come to mind :-)
# You could for example just delete them by using:
# "rm -rf \$backup_set";
#
# Or you could just copy them to a different location with the command:
# "cp -r \$backup_set /some_drive/some_folder";
#
# Or you could copy them to a different machine with the command
# (make sure you have an ssh-trust relation between the personalbackup
# machine and the remote machine)
# "scp -r \$backup_set remote_user@remote_machine:/remote_path";
#
# Or you could even write the names of the backup set to a file and process
# them later on yourself :)
# "echo \$backup_set >> /tmp/archive_files";
#
# Or....
#
# By default we are just going to write the backup set to a temp file :)
# Take note of the \$backup_set it MUST be there or the backup will not
# be processed!!
$cleanupscript = "echo \$backup_set >> /tmp/archive_files";
# Change value to 1 to enable debugging
$DEBUG = 1;
1;
########### POSTGRESQL LOG
Feb 1 10:36:21 backup postgresql: Starting postgresql service: succeeded
Feb 1 10:36:42 backup postgres[2726]: [4-1] LOG: 00000: connection
received: host=backup.raf.local port=32787
Feb 1 10:36:42 backup postgres[2726]: [4-2] LOCATION: BackendFork,
postmaster.c:2395
Feb 1 10:36:42 backup postgres[2726]: [5-1] LOG: 00000: connection
authorized: user=pbuser database=personalbackup
Feb 1 10:36:42 backup postgres[2726]: [5-2] LOCATION: BackendFork,
postmaster.c:2457
Feb 1 10:36:42 backup postgres[2726]: [6-1] LOG: 00000: statement: SELECT
version()
Feb 1 10:36:42 backup postgres[2726]: [6-2] LOCATION: pg_parse_query,
postgres.c:464
Feb 1 10:36:43 backup postgres[2727]: [5-1] LOG: 00000: connection
received: host=backup.raf.local port=32788
Feb 1 10:36:43 backup postgres[2727]: [5-2] LOCATION: BackendFork,
postmaster.c:2395
Feb 1 10:36:43 backup postgres[2727]: [6-1] LOG: 00000: connection
authorized: user=pbuser database=personalbackup
Feb 1 10:36:43 backup postgres[2727]: [6-2] LOCATION: BackendFork,
postmaster.c:2457
Feb 1 10:36:43 backup postgres[2727]: [7-1] LOG: 00000: statement: SELECT
version()
Feb 1 10:36:43 backup postgres[2727]: [7-2] LOCATION: pg_parse_query,
postgres.c:464
Feb 1 10:36:43 backup postgres[2727]: [10-1] LOG: 00000: statement:
SELECT password, realname, emailadres FROM users WHERE
Feb 1 10:36:43 backup postgres[2727]: [10-2] username='admin'
Feb 1 10:36:43 backup postgres[2727]: [10-3] LOCATION: pg_parse_query,
postgres.c:464
Feb 1 10:36:43 backup postgres[2726]: [9-1] LOG: 00000: statement:
SELECT id FROM users WHERE username = 'admin'
Feb 1 10:36:43 backup postgres[2726]: [9-2] LOCATION: pg_parse_query,
postgres.c:464
Feb 1 10:36:46 backup postgres[2729]: [8-1] LOG: 00000: connection
received: host=backup.raf.local port=32789
Feb 1 10:36:46 backup postgres[2729]: [8-2] LOCATION: BackendFork,
postmaster.c:2395
Feb 1 10:36:46 backup postgres[2729]: [9-1] LOG: 00000: connection
authorized: user=pbuser database=personalbackup
Feb 1 10:36:46 backup postgres[2729]: [9-2] LOCATION: BackendFork,
postmaster.c:2457
Feb 1 10:36:46 backup postgres[2729]: [10-1] LOG: 00000: statement: SELECT
version()
Feb 1 10:36:46 backup postgres[2729]: [10-2] LOCATION: pg_parse_query,
postgres.c:464
Feb 1 10:36:52 backup postgres[2731]: [10-1] LOG: 00000: connection
received: host=backup.raf.local port=32790
Feb 1 10:36:52 backup postgres[2731]: [10-2] LOCATION: BackendFork,
postmaster.c:2395
Feb 1 10:36:52 backup postgres[2731]: [11-1] LOG: 00000: connection
authorized: user=pbuser database=personalbackup
Feb 1 10:36:52 backup postgres[2731]: [11-2] LOCATION: BackendFork,
postmaster.c:2457
Feb 1 10:36:52 backup postgres[2731]: [12-1] LOG: 00000: statement: SELECT
version()
Feb 1 10:36:52 backup postgres[2731]: [12-2] LOCATION: pg_parse_query,
postgres.c:464
######APACHE ERROR_LOG
[Wed Feb 01 10:42:32 2006] [notice] LDAP: Built with OpenLDAP LDAP SDK
[Wed Feb 01 10:42:32 2006] [notice] LDAP: SSL support unavailable
[Wed Feb 01 10:42:32 2006] [notice] suEXEC mechanism enabled (wrapper:
/usr/sbin/suexec)
[Wed Feb 01 10:42:32 2006] [info] Init: Initializing OpenSSL library
[Wed Feb 01 10:42:32 2006] [info] Init: Seeding PRNG with 256 bytes of
entropy
[Wed Feb 01 10:42:32 2006] [info] Init: Generating temporary RSA private
keys (512/1024 bits)
[Wed Feb 01 10:42:34 2006] [info] Init: Generating temporary DH parameters
(512/1024 bits)
[Wed Feb 01 10:42:34 2006] [info] Init: Initializing (virtual) servers for
SSL
[Wed Feb 01 10:42:34 2006] [info] Server: Apache/2.0.49, Interface:
mod_ssl/2.0.49, Library: OpenSSL/0.9.7a
[Wed Feb 01 10:42:34 2006] [notice] Digest: generating secret for digest
authentication ...
[Wed Feb 01 10:42:34 2006] [notice] Digest: done
[Wed Feb 01 10:42:34 2006] [notice] LDAP: Built with OpenLDAP LDAP SDK
[Wed Feb 01 10:42:34 2006] [notice] LDAP: SSL support unavailable
[Wed Feb 01 10:42:34 2006] [info] Init: Initializing OpenSSL library
[Wed Feb 01 10:42:34 2006] [info] Init: Seeding PRNG with 256 bytes of
entropy
[Wed Feb 01 10:42:34 2006] [info] Init: Generating temporary RSA private
keys (512/1024 bits)
[Wed Feb 01 10:42:35 2006] [info] Init: Generating temporary DH parameters
(512/1024 bits)
[Wed Feb 01 10:42:35 2006] [info] Shared memory session cache initialised
[Wed Feb 01 10:42:35 2006] [info] Init: Initializing (virtual) servers for
SSL
[Wed Feb 01 10:42:35 2006] [info] Server: Apache/2.0.49, Interface:
mod_ssl/2.0.49, Library: OpenSSL/0.9.7a
[Wed Feb 01 10:42:35 2006] [notice] Apache/2.0.49 (Fedora) configured --
resuming normal operations
[Wed Feb 01 10:42:35 2006] [info] Server built: May 6 2004 07:15:13
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] LOG: statement:
SELECT version(), referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: parse tree:,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL: {QUERY
:commandType 1 :querySource 0 :canSetTag true :utilityStmt <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resultRelation 0
:into <> :hasAggs false :hasSubLinks false :rtable <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :jointree {FROMEXPR
:fromlist <> :quals <>} :rowMarks () :targetList, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] ({TARGETENTRY
:resdom {RESDOM :resno 1 :restype 25 :restypmod -1 :resname, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] version
:ressortgroupref 0 :resorigtbl 0 :resorigcol 0 :resjunk false} :expr,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] {FUNCEXPR :funcid 89
:funcresulttype 25 :funcretset false :funcformat 0 :args, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] <>}}) :groupClause
<> :havingQual <> :distinctClause <> :sortClause <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :limitOffset <>
:limitCount <> :setOperations <> :resultRelations ()}, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: plan:,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL: {RESULT
:startup_cost 0.00 :total_cost 0.01 :plan_rows 1 :plan_width 0, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :targetlist
({TARGETENTRY :resdom {RESDOM :resno 1 :restype 25 :restypmod -1, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resname version
:ressortgroupref 0 :resorigtbl 0 :resorigcol 0 :resjunk, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] false} :expr
{FUNCEXPR :funcid 89 :funcresulttype 25 :funcretset false, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :funcformat 0 :args
<>}}) :qual <> :lefttree <> :righttree <> :initPlan <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :extParam ()
:allParam () :nParamExec 0 :resconstantqual <>}, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] LOG: statement:
SELECT version(), referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: parse tree:,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL: {QUERY
:commandType 1 :querySource 0 :canSetTag true :utilityStmt <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resultRelation 0
:into <> :hasAggs false :hasSubLinks false :rtable <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :jointree {FROMEXPR
:fromlist <> :quals <>} :rowMarks () :targetList, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] ({TARGETENTRY
:resdom {RESDOM :resno 1 :restype 25 :restypmod -1 :resname, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] version
:ressortgroupref 0 :resorigtbl 0 :resorigcol 0 :resjunk false} :expr,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] {FUNCEXPR :funcid 89
:funcresulttype 25 :funcretset false :funcformat 0 :args, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] <>}}) :groupClause
<> :havingQual <> :distinctClause <> :sortClause <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :limitOffset <>
:limitCount <> :setOperations <> :resultRelations ()}, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: plan:,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL: {RESULT
:startup_cost 0.00 :total_cost 0.01 :plan_rows 1 :plan_width 0, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :targetlist
({TARGETENTRY :resdom {RESDOM :resno 1 :restype 25 :restypmod -1, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resname version
:ressortgroupref 0 :resorigtbl 0 :resorigcol 0 :resjunk, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] false} :expr
{FUNCEXPR :funcid 89 :funcresulttype 25 :funcretset false, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :funcformat 0 :args
<>}}) :qual <> :lefttree <> :righttree <> :initPlan <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :extParam ()
:allParam () :nParamExec 0 :resconstantqual <>}, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] LOG: statement:
SELECT password, realname, emailadres FROM users WHERE username='admin',
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: parse tree:,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL: {QUERY
:commandType 1 :querySource 0 :canSetTag true :utilityStmt <>, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resultRelation 0
:into <> :hasAggs false :hasSubLinks false :rtable ({RTE, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :alias <> :eref
{ALIAS :aliasname users :colnames ("id" "username" "password", referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] "realname"
"emailadres" "language" "admin")} :rtekind 0 :relid 17523 :inh true,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :inFromCl true
:checkForRead true :checkForWrite false :checkAsUser 0}), referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :jointree {FROMEXPR
:fromlist ({RANGETBLREF :rtindex 1}) :quals {OPEXPR :opno, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 98 :opfuncid 0
:opresulttype 16 :opretset false :args ({RELABELTYPE :arg {VAR, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varno 1 :varattno 2
:vartype 1043 :vartypmod 260 :varlevelsup 0 :varnoold 1, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varoattno 2}
:resulttype 25 :resulttypmod -1 :relabelformat 2} {CONST, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :consttype 25
:constlen -1 :constbyval false :constisnull false :constvalue 9, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] [ 9 0 0 0 97 100 109
105 110 ]})}} :rowMarks () :targetList ({TARGETENTRY, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resdom {RESDOM
:resno 1 :restype 1043 :restypmod 260 :resname password, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :ressortgroupref 0
:resorigtbl 17523 :resorigcol 3 :resjunk false} :expr {VAR, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varno 1 :varattno 3
:vartype 1043 :vartypmod 260 :varlevelsup 0 :varnoold 1, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varoattno 3}}
{TARGETENTRY :resdom {RESDOM :resno 2 :restype 1043 :restypmod, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 260 :resname
realname :ressortgroupref 0 :resorigtbl 17523 :resorigcol 4, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resjunk false}
:expr {VAR :varno 1 :varattno 4 :vartype 1043 :vartypmod 260, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varlevelsup 0
:varnoold 1 :varoattno 4}} {TARGETENTRY :resdom {RESDOM :resno, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 3 :restype 1043
:restypmod 260 :resname emailadres :ressortgroupref 0, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resorigtbl 17523
:resorigcol 5 :resjunk false} :expr {VAR :varno 1 :varattno, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 5 :vartype 1043
:vartypmod 260 :varlevelsup 0 :varnoold 1 :varoattno 5}}), referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :groupClause <>
:havingQual <> :distinctClause <> :sortClause <> :limitOffset, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] <> :limitCount <>
:setOperations <> :resultRelations ()}, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: plan:,
referer: http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL: {INDEXSCAN
:startup_cost 0.00 :total_cost 4.82 :plan_rows 2 :plan_width 438, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :targetlist
({TARGETENTRY :resdom {RESDOM :resno 1 :restype 1043 :restypmod, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 260 :resname
password :ressortgroupref 0 :resorigtbl 17523 :resorigcol 3, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resjunk false}
:expr {VAR :varno 1 :varattno 3 :vartype 1043 :vartypmod 260, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varlevelsup 0
:varnoold 1 :varoattno 3}} {TARGETENTRY :resdom {RESDOM :resno, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 2 :restype 1043
:restypmod 260 :resname realname :ressortgroupref 0, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resorigtbl 17523
:resorigcol 4 :resjunk false} :expr {VAR :varno 1 :varattno, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 4 :vartype 1043
:vartypmod 260 :varlevelsup 0 :varnoold 1 :varoattno 4}}, referer:
http://192.168.0.3/personalbackup/login.cgi
[Wed Feb 01 10:42:48 2006] [error] [...
[truncated message content] |
|
From: Kim K. <kk...@sk...> - 2006-02-02 22:30:42
|
Hello Raf,
Are you sure you accept cookies in your browser ?
This is required for PersonalBackup to operate, because at first glance
I do not immediately see the the problem.
Will try to investigate some more tomorrow...
Regards,
LinuxTuxie
Raf wrote:
> Kind list's members
>
> in order to restest the whole install process
> before starting with production phase,
> this morning I've made a fresh Fedora 2 install
> on a test machine and fresh downloaded Personalbackup
> from CVS.
>
> Installation has gone fine, like in previous tests, but
> when I try to log in personalbackup's web interface
> as admin, the browser reloads the login.cgi page with
> no-erros or warns.
> If I submit wrong user/password the
> "Wrong password or username, please try again"
> message is correctly displayed, but with correct
> one the log-in is reloaded forever.
>
> I've tryed to figure-out the problem with no success.
>
> Hope you can help me.
>
> Logs in attachment:
> httpd.conf
> httpd's access_log
> personalbackup.conf
> postgresql's log
> httpd's error_log
>
> Thank you for your kind support.
>
> Best regards
>
> Raf
>
> ####### httpd.conf
>
> # PERSONALBACKUP
> Alias personalbackup /var/www/html/personalbackup
> <DirectoryMatch /var/www/html/personalbackup>
> DirectoryIndex index.cgi
> AllowOverride None
> Order allow,deny
> Allow from all
> Options ExecCGI
> AddHandler cgi-script .cgi
> </DirectoryMatch>
>
> ####### access_log:
>
> 192.168.0.1 - - [01/Feb/2006:10:49:22 +0100] "POST
> /personalbackup/login.cgi
> HTTP/1.1" 200 105 "http://192.168.0.3/personalbackup/login.cgi"
> "Mozilla/4.0
> (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
> 192.168.0.1 - - [01/Feb/2006:10:49:28 +0100] "GET
> /personalbackup/index.cgi?CGISESSID=650060641ceef884b2391b70c7b4bbdf
> HTTP/1.1" 302 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT
> 5.1; SV1;
> NET CLR 1.1.4322)"
> 192.168.0.1 - - [01/Feb/2006:10:49:36 +0100] "GET
> /personalbackup/style.css
> HTTP/1.1" 304 - "http://192.168.0.3/personalbackup/login.cgi"
> "Mozilla/4.0
> (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
> 192.168.0.1 - - [01/Feb/2006:10:49:31 +0100] "GET
> /personalbackup/login.cgi
> HTTP/1.1" 200 1576 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT
> 5.1;
> SV1; .NET CLR 1.1.4322)"
> 192.168.0.1 - - [01/Feb/2006:10:49:36 +0100] "GET
> /personalbackup/images/background.gif HTTP/1.1" 304 -
> "http://192.168.0.3/personalbackup/login.cgi" "Mozilla/4.0
> (compatible; MSIE
> 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)"
>
>
>
>
> ###### PERSONALBACKUP.CONF
>
>
>
> #
> # PersonalBackup configuration file
> #
>
> # $Header:
> /cvsroot/personalbackup/personalbackup/personalbackup.conf,v 1.29
> 2006/01/09 01:32:21 linuxtuxie Exp $
>
> #############################################################################
>
> # PersonalBackup - A company-wide solution for backing up all your #
> # Windows machines and Samba shares #
> # #
> # Copyright (C) 2004 Kim Kuylen / Melexis #
> # #
> # This program is free software; you can redistribute it and/or #
> # modify it under the terms of the GNU General Public License #
> # as published by the Free Software Foundation. #
> #############################################################################
>
>
> # The site name displayed on all HTML pages
> $sitename = "PersonalBackup";
>
> # The servername where the postgres database for PersonalBackup is
> located
> $dbserver = "127.0.0.1";
>
> # The database name which holds the PersonalBackup database schema
> $dbname = "personalbackup";
>
> # The postgres user which has access to the PersonalBackup database
> schema
> $dbuser = "pbuser";
>
> # The password of the postgres user mentioned above
> $dbpasswd = "secret";
>
> # The port on which the postgres database is listening
> # The default port 5432 should be ok
> $dbport = "5432";
>
> # The server on which the PersonalBackup web-interface is installed.
> # This can be the same machine as the database server
> $webserver = "127.0.0.1";
>
> # Enter the ip address of your wins server here so that PersonalBackup
> # can find the ip-addresses of the netbios names
> $winsserver = "127.0.0.1";
>
> # The ip range which defines vpn access
> $vpnrange = "10.32.0.0:10.32.0.100";
>
> # Who will receive all the administration mails?
> # The $suffix will automatically be added to this name, so do NOT place
> # a @ here!
> $administrator = "root";
>
> # Where may PersonalBackup store its logfiles created pro machine?
> $clientlogdir = "/var/log/personalbackup";
>
> # Where are the PersonalBackup executables installed?
> $installdir = "/usr/sbin";
>
> # Where is is the PersonalBackup web interface installed?
> $webinstalldir = "/var/www/html/personalbackup";
>
> # The location of the PersonalBackup library
> $libinstalldir = "/usr/lib/personalbackup";
>
> # Where are the html templates stored?
> $templatedir = "/var/www/html/personalbackup/templates";
>
> # Where can PersonalBackup store its temporary files?
> # Make sure it is big enough, this folder will also be used as temporary
> # placeholder during restore operations.
> $tempdir = "/backup/tmp";
>
> # This folder holds the backups, make sure it is big enough.
> $pooldir = "/backup/personalbackup/pool";
>
> # Where is the configuration file located?
> $confdir = "/etc/personalbackup";
>
> # Which languages are available to the users?
> $languages = {
> # "nl" => "Nederlands",
> # "fr" => "Francais",
> # "de" => "Deutch",
> "en" => "English"
> };
>
> # What's the default language we present new users?
> # By default we are using Shakespeare's language ;)
> $defaultlang = "en";
>
> # What's the domain name
> $suffix = "raf.local";
>
> # What's the windows domain/workgroup name?
> $workgroup = "RAF";
>
> # Which Authentication method will you be using?
> # Valid values are: ldap, passwd and database
> $authentication = "database";
>
> # Do you allow the creation of new accounts?
> # If you select database as authentication method you need to set this
> # value to 1. Otherwise you are not able to register new users.
> $allowcreation = 0;
>
> # Do you allow updates of the accounts in personalbackup?
> # If set to 1 the users can change their password.
> $allowupdate = 0;
>
> # If you are using an ldap server to authenticate...define it's name here
> $ldapserver = "ldap.acme.com";
>
> # What's the ldap base?
> $ldapbase = "dc=base";
>
> # Where can I find the executables?
> $mailprog = "/usr/sbin/sendmail";
>
> $smbclient = "/usr/bin/smbclient";
>
> $nmblookup = "/usr/bin/nmblookup";
>
> $echo = "/bin/echo";
>
> $mkdir = "/bin/mkdir";
>
> $cp = "/bin/cp";
>
> # At what time of the day do we start backing up again?
> # By default the database will be reset at 23 hours
> # If defined, we will also run the cleanup script at this moment.
> $resettime = "23:00";
>
> # Parameter which defines the maximum number of clients that
> PersonalBackup
> # may start simultaniously
> $maxclients = 5;
>
> # How may seconds are we going to sleep if personalbackupd has
> processed all
> # the machines ones?
> $idletime = 900;
>
> # Timeout in seconds when waiting for a successful backup. If no output
> # is received during this
> # time, then it is assumed that something has gone wrong during the
> backup,
> # and the backup is terminated.
> $clienttimeout = 7200;
>
> # When PersonalBackup is actually busy with backing up the share it will
> # perform regular pings to make sure the machine is still alive and
> # kicking. You can set the interval between these checks here
> # The default is set to 30 minutes
> $pinginterval = 1800;
>
> # Delay in seconds to wait for starting to backup after the user has
> # received his warning message via mail
> $messagedelay = 60;
>
> # Set here the maximum retry value for unreachable shares pro day
> $maxretry = 5;
>
> # This parameters informs PersonalBackup when we think a backup may
> # receive the label successful.
> # If for example we set this parameter to 90, it means that if
> PersonalBackup
> # backed up 90% or more datafiles from the remote machine, we label the
> # backup as successful.
> # You can set this parameter to 100%, however keep in mind that if
> # PersonalBackup isn't able to backup one file of a complete backup
> # of for example 1.000.000 files....the complete backup is marked as
> Failed!!
> $backupthreshold = 90;
>
> # If the next parameter is set to 1 PersonalBackup will read the CVS
> Entries
> # file on the remote machine and skips all files that are
> # referenced in this file.
> # We are assuming that the files under cvs are already backed up by the
> # CVS server :)
> # If you still want to backup all the files that are located under CVS
> set
> # the parameter to 0
> $excludecvs = 1;
>
> # Determine the default maximum backup size in Mb for each share.
> # Set this parameter to 0 to disable this feature.
> # The maximum backup size can also be set pro share in the administrator
> # interface.
> $defaultbackupsize = 0;
>
> # Determine the default maximum vpn backup size in Mb for each share.
> # Set this parameter to 0 to disable this feature.
> # The maximum vpn backup size can also be set pro share in the
> administrator
> # interface and the user also has the ability to set this parameter.
> $defaultvpnsize = 0;
>
> # Determine here the maximum allowed restore size in Mb which can be used
> # by the end users with the restore web interface.
> # You can set this to 0 to disable this feature.
> # However keep in mind that you will probably bounce against the 2Gb file
> # limit (Unless you are using Apache >= 2.2.0). Also keep in mind that
> # this size is the uncompressed one...Each restore via the web interface
> # will go through a zipping program...which will take a long time and
> consume
> # a lot of cpu/memory for a big restore.
> # A possible workaround is to provide a Samba share for the pool, so that
> # users can directly copy there data from this share.
> # So in conclusion...the idea behind the restore interface is to get some
> # files back quickly by the end user. It is not intended to restore a
> # complete disk...that's currently beyond its purpose.
> $maxrestoresize = 500;
>
> # Do not backup the following folder/files!
> # Also note that the matching performed is done case
> # insensitive (so .Mp3 = .mp3 = .MP3 = .mP3)
> # You can use all the regex expressions you know here :)
> $excludefiles = [
> # do not backup bmp, gif, jpg, jpeg, mpg, mpeg, avi, asf, exe,
> pif,
> # src, bat, ppt, pps, com, vbs, mpe, pcx, png, vcf, wav, mp3,
> # mov and midi files from the attach folder
> "\/attach\/.*\.bmp",
> "\/attach\/.*\.gif",
> "\/attach\/.*\.jpg",
> "\/attach\/.*\.jpeg",
> "\/attach\/.*\.mpg",
> "\/attach\/.*\.mpeg",
> "\/attach\/.*\.avi",
> "\/attach\/.*\.wmv",
> "\/attach\/.*\.asf",
> "\/attach\/.*\.exe",
> "\/attach\/.*\.pif",
> "\/attach\/.*\.scr",
> "\/attach\/.*\.bat",
> "\/attach\/.*\.ppt",
> "\/attach\/.*\.pps",
> "\/attach\/.*\.com",
> "\/attach\/.*\.vbs",
> "\/attach\/.*\.mpe",
> "\/attach\/.*\.pcx",
> "\/attach\/.*\.png",
> "\/attach\/.*\.vcf",
> "\/attach\/.*\.wav",
> "\/attach\/.*\.mp3",
> "\/attach\/.*\.mov",
> "\/attach\/.*\.midi",
>
> # Do not backup the netscape caching folders
> "\/netscape.*cache\/.*",
>
> # Do not backup the Eudora adds caching folders
> "\/eudpriv.*cache\/.*",
>
> # Do not backup the sockscap folders
> "\/users.*cache\/.*",
>
> # Do not backup windows installation files
> "\/win..\/.*\.cab",
>
> # Do not backup the windows recycle bin
> "\/recycled\/.*"
> ];
>
> # This parameter defines the number of weeks we are going to wait before
> # sending the users a mail to notify them that there backup was
> unsuccessful
> # during these weeks. The user will only receive a mail if the backup is
> # enabled AND if the user enabled mail notification.
> # Set to 0 to disable this feature completely.
> # The default value is set to 2 weeks
> $notifyuser = 2;
>
> # This parameter defines the number of backup sets you want to keep on
> disk.
> # By default this is set to 3 backup sets, which means that 3 weeks of
> # backups will be kept on disk. All backup sets
> # greater than 3 will be processed by the cleanupscript.
> # Set the parameter to 0 if you want to keep the backups forever on
> disk ;)
> $maxbackup = 3;
>
> # Define here what you want to do with backup sets that need to be
> archived
> # A few suggestions come to mind :-)
> # You could for example just delete them by using:
> # "rm -rf \$backup_set";
> #
> # Or you could just copy them to a different location with the command:
> # "cp -r \$backup_set /some_drive/some_folder";
> #
> # Or you could copy them to a different machine with the command
> # (make sure you have an ssh-trust relation between the personalbackup
> # machine and the remote machine)
> # "scp -r \$backup_set remote_user@remote_machine:/remote_path";
> #
> # Or you could even write the names of the backup set to a file and
> process
> # them later on yourself :)
> # "echo \$backup_set >> /tmp/archive_files";
> #
> # Or....
> #
> # By default we are just going to write the backup set to a temp file :)
> # Take note of the \$backup_set it MUST be there or the backup will not
> # be processed!!
> $cleanupscript = "echo \$backup_set >> /tmp/archive_files";
>
> # Change value to 1 to enable debugging
> $DEBUG = 1;
>
> 1;
>
>
> ########### POSTGRESQL LOG
>
>
> Feb 1 10:36:21 backup postgresql: Starting postgresql service:
> succeeded
> Feb 1 10:36:42 backup postgres[2726]: [4-1] LOG: 00000: connection
> received: host=backup.raf.local port=32787
> Feb 1 10:36:42 backup postgres[2726]: [4-2] LOCATION: BackendFork,
> postmaster.c:2395
> Feb 1 10:36:42 backup postgres[2726]: [5-1] LOG: 00000: connection
> authorized: user=pbuser database=personalbackup
> Feb 1 10:36:42 backup postgres[2726]: [5-2] LOCATION: BackendFork,
> postmaster.c:2457
> Feb 1 10:36:42 backup postgres[2726]: [6-1] LOG: 00000: statement:
> SELECT version()
> Feb 1 10:36:42 backup postgres[2726]: [6-2] LOCATION:
> pg_parse_query, postgres.c:464
> Feb 1 10:36:43 backup postgres[2727]: [5-1] LOG: 00000: connection
> received: host=backup.raf.local port=32788
> Feb 1 10:36:43 backup postgres[2727]: [5-2] LOCATION: BackendFork,
> postmaster.c:2395
> Feb 1 10:36:43 backup postgres[2727]: [6-1] LOG: 00000: connection
> authorized: user=pbuser database=personalbackup
> Feb 1 10:36:43 backup postgres[2727]: [6-2] LOCATION: BackendFork,
> postmaster.c:2457
> Feb 1 10:36:43 backup postgres[2727]: [7-1] LOG: 00000: statement:
> SELECT version()
> Feb 1 10:36:43 backup postgres[2727]: [7-2] LOCATION:
> pg_parse_query, postgres.c:464
> Feb 1 10:36:43 backup postgres[2727]: [10-1] LOG: 00000: statement:
> SELECT password, realname, emailadres FROM users WHERE
> Feb 1 10:36:43 backup postgres[2727]: [10-2] username='admin'
> Feb 1 10:36:43 backup postgres[2727]: [10-3] LOCATION:
> pg_parse_query, postgres.c:464
> Feb 1 10:36:43 backup postgres[2726]: [9-1] LOG: 00000: statement:
> SELECT id FROM users WHERE username = 'admin'
> Feb 1 10:36:43 backup postgres[2726]: [9-2] LOCATION:
> pg_parse_query, postgres.c:464
> Feb 1 10:36:46 backup postgres[2729]: [8-1] LOG: 00000: connection
> received: host=backup.raf.local port=32789
> Feb 1 10:36:46 backup postgres[2729]: [8-2] LOCATION: BackendFork,
> postmaster.c:2395
> Feb 1 10:36:46 backup postgres[2729]: [9-1] LOG: 00000: connection
> authorized: user=pbuser database=personalbackup
> Feb 1 10:36:46 backup postgres[2729]: [9-2] LOCATION: BackendFork,
> postmaster.c:2457
> Feb 1 10:36:46 backup postgres[2729]: [10-1] LOG: 00000: statement:
> SELECT version()
> Feb 1 10:36:46 backup postgres[2729]: [10-2] LOCATION:
> pg_parse_query, postgres.c:464
> Feb 1 10:36:52 backup postgres[2731]: [10-1] LOG: 00000: connection
> received: host=backup.raf.local port=32790
> Feb 1 10:36:52 backup postgres[2731]: [10-2] LOCATION: BackendFork,
> postmaster.c:2395
> Feb 1 10:36:52 backup postgres[2731]: [11-1] LOG: 00000: connection
> authorized: user=pbuser database=personalbackup
> Feb 1 10:36:52 backup postgres[2731]: [11-2] LOCATION: BackendFork,
> postmaster.c:2457
> Feb 1 10:36:52 backup postgres[2731]: [12-1] LOG: 00000: statement:
> SELECT version()
> Feb 1 10:36:52 backup postgres[2731]: [12-2] LOCATION:
> pg_parse_query, postgres.c:464
>
>
>
> ######APACHE ERROR_LOG
>
>
> [Wed Feb 01 10:42:32 2006] [notice] LDAP: Built with OpenLDAP LDAP SDK
> [Wed Feb 01 10:42:32 2006] [notice] LDAP: SSL support unavailable
> [Wed Feb 01 10:42:32 2006] [notice] suEXEC mechanism enabled (wrapper:
> /usr/sbin/suexec)
> [Wed Feb 01 10:42:32 2006] [info] Init: Initializing OpenSSL library
> [Wed Feb 01 10:42:32 2006] [info] Init: Seeding PRNG with 256 bytes of
> entropy
> [Wed Feb 01 10:42:32 2006] [info] Init: Generating temporary RSA
> private keys (512/1024 bits)
> [Wed Feb 01 10:42:34 2006] [info] Init: Generating temporary DH
> parameters (512/1024 bits)
> [Wed Feb 01 10:42:34 2006] [info] Init: Initializing (virtual) servers
> for SSL
> [Wed Feb 01 10:42:34 2006] [info] Server: Apache/2.0.49, Interface:
> mod_ssl/2.0.49, Library: OpenSSL/0.9.7a
> [Wed Feb 01 10:42:34 2006] [notice] Digest: generating secret for
> digest authentication ...
> [Wed Feb 01 10:42:34 2006] [notice] Digest: done
> [Wed Feb 01 10:42:34 2006] [notice] LDAP: Built with OpenLDAP LDAP SDK
> [Wed Feb 01 10:42:34 2006] [notice] LDAP: SSL support unavailable
> [Wed Feb 01 10:42:34 2006] [info] Init: Initializing OpenSSL library
> [Wed Feb 01 10:42:34 2006] [info] Init: Seeding PRNG with 256 bytes of
> entropy
> [Wed Feb 01 10:42:34 2006] [info] Init: Generating temporary RSA
> private keys (512/1024 bits)
> [Wed Feb 01 10:42:35 2006] [info] Init: Generating temporary DH
> parameters (512/1024 bits)
> [Wed Feb 01 10:42:35 2006] [info] Shared memory session cache initialised
> [Wed Feb 01 10:42:35 2006] [info] Init: Initializing (virtual) servers
> for SSL
> [Wed Feb 01 10:42:35 2006] [info] Server: Apache/2.0.49, Interface:
> mod_ssl/2.0.49, Library: OpenSSL/0.9.7a
> [Wed Feb 01 10:42:35 2006] [notice] Apache/2.0.49 (Fedora) configured
> -- resuming normal operations
> [Wed Feb 01 10:42:35 2006] [info] Server built: May 6 2004 07:15:13
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] LOG:
> statement: SELECT version(), referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: parse
> tree:, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL:
> {QUERY :commandType 1 :querySource 0 :canSetTag true :utilityStmt <>,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1]
> :resultRelation 0 :into <> :hasAggs false :hasSubLinks false :rtable
> <>, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :jointree
> {FROMEXPR :fromlist <> :quals <>} :rowMarks () :targetList, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] ({TARGETENTRY
> :resdom {RESDOM :resno 1 :restype 25 :restypmod -1 :resname, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] version
> :ressortgroupref 0 :resorigtbl 0 :resorigcol 0 :resjunk false} :expr,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] {FUNCEXPR
> :funcid 89 :funcresulttype 25 :funcretset false :funcformat 0 :args,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] <>}})
> :groupClause <> :havingQual <> :distinctClause <> :sortClause <>,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :limitOffset
> <> :limitCount <> :setOperations <> :resultRelations ()}, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: plan:,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL:
> {RESULT :startup_cost 0.00 :total_cost 0.01 :plan_rows 1 :plan_width
> 0, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :targetlist
> ({TARGETENTRY :resdom {RESDOM :resno 1 :restype 25 :restypmod -1,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resname
> version :ressortgroupref 0 :resorigtbl 0 :resorigcol 0 :resjunk,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] false} :expr
> {FUNCEXPR :funcid 89 :funcresulttype 25 :funcretset false, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :funcformat 0
> :args <>}}) :qual <> :lefttree <> :righttree <> :initPlan <>, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :extParam ()
> :allParam () :nParamExec 0 :resconstantqual <>}, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] LOG:
> statement: SELECT version(), referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: parse
> tree:, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL:
> {QUERY :commandType 1 :querySource 0 :canSetTag true :utilityStmt <>,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1]
> :resultRelation 0 :into <> :hasAggs false :hasSubLinks false :rtable
> <>, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :jointree
> {FROMEXPR :fromlist <> :quals <>} :rowMarks () :targetList, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] ({TARGETENTRY
> :resdom {RESDOM :resno 1 :restype 25 :restypmod -1 :resname, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] version
> :ressortgroupref 0 :resorigtbl 0 :resorigcol 0 :resjunk false} :expr,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] {FUNCEXPR
> :funcid 89 :funcresulttype 25 :funcretset false :funcformat 0 :args,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] <>}})
> :groupClause <> :havingQual <> :distinctClause <> :sortClause <>,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :limitOffset
> <> :limitCount <> :setOperations <> :resultRelations ()}, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: plan:,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL:
> {RESULT :startup_cost 0.00 :total_cost 0.01 :plan_rows 1 :plan_width
> 0, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :targetlist
> ({TARGETENTRY :resdom {RESDOM :resno 1 :restype 25 :restypmod -1,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resname
> version :ressortgroupref 0 :resorigtbl 0 :resorigcol 0 :resjunk,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] false} :expr
> {FUNCEXPR :funcid 89 :funcresulttype 25 :funcretset false, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :funcformat 0
> :args <>}}) :qual <> :lefttree <> :righttree <> :initPlan <>, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :extParam ()
> :allParam () :nParamExec 0 :resconstantqual <>}, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] LOG:
> statement: SELECT password, realname, emailadres FROM users WHERE
> username='admin', referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: parse
> tree:, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DETAIL:
> {QUERY :commandType 1 :querySource 0 :canSetTag true :utilityStmt <>,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1]
> :resultRelation 0 :into <> :hasAggs false :hasSubLinks false :rtable
> ({RTE, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :alias <>
> :eref {ALIAS :aliasname users :colnames ("id" "username" "password",
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] "realname"
> "emailadres" "language" "admin")} :rtekind 0 :relid 17523 :inh true,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :inFromCl true
> :checkForRead true :checkForWrite false :checkAsUser 0}), referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :jointree
> {FROMEXPR :fromlist ({RANGETBLREF :rtindex 1}) :quals {OPEXPR :opno,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 98 :opfuncid 0
> :opresulttype 16 :opretset false :args ({RELABELTYPE :arg {VAR,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varno 1
> :varattno 2 :vartype 1043 :vartypmod 260 :varlevelsup 0 :varnoold 1,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varoattno 2}
> :resulttype 25 :resulttypmod -1 :relabelformat 2} {CONST, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :consttype 25
> :constlen -1 :constbyval false :constisnull false :constvalue 9,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] [ 9 0 0 0 97
> 100 109 105 110 ]})}} :rowMarks () :targetList ({TARGETENTRY, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resdom
> {RESDOM :resno 1 :restype 1043 :restypmod 260 :resname password,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1]
> :ressortgroupref 0 :resorigtbl 17523 :resorigcol 3 :resjunk false}
> :expr {VAR, referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varno 1
> :varattno 3 :vartype 1043 :vartypmod 260 :varlevelsup 0 :varnoold 1,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varoattno 3}}
> {TARGETENTRY :resdom {RESDOM :resno 2 :restype 1043 :restypmod,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 260 :resname
> realname :ressortgroupref 0 :resorigtbl 17523 :resorigcol 4, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resjunk
> false} :expr {VAR :varno 1 :varattno 4 :vartype 1043 :vartypmod 260,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :varlevelsup 0
> :varnoold 1 :varoattno 4}} {TARGETENTRY :resdom {RESDOM :resno,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 3 :restype
> 1043 :restypmod 260 :resname emailadres :ressortgroupref 0, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :resorigtbl
> 17523 :resorigcol 5 :resjunk false} :expr {VAR :varno 1 :varattno,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] 5 :vartype
> 1043 :vartypmod 260 :varlevelsup 0 :varnoold 1 :varoattno 5}}),
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] :groupClause
> <> :havingQual <> :distinctClause <> :sortClause <> :limitOffset,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] <> :limitCount
> <> :setOperations <> :resultRelations ()}, referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] , referer:
> http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 01 10:42:48 2006] [error] [client 192.168.0.1] DEBUG: plan:,
> referer: http://192.168.0.3/personalbackup/login.cgi
> [Wed Feb 0...
[truncated message content] |
|
From: Raf <mil...@ho...> - 2006-02-03 00:47:15
|
Hi Kim
I've checked twice every conf file and
compared with the ones on the working
server (the first one on which I installed
Personalbackup): no differences.
The browser which I connect from is
always the same and on a third PC.
At this point I'm going to think that there
could be something wrong in my fresh
system's perl package.
I've already reinstalled from scratch CGI
and CGI::Session but nothing changes.
If it could be of any help, I attach the complete
versions' list of my perl packages.
Regards
Raf
VERSIONS LIST
=============
5.8.3/DB.pm: $DB::VERSION = $DB::VERSION = '1.0';
5.8.3/Text/Soundex.pm:$VERSION = '1.01';
5.8.3/Text/Abbrev.pm:our $VERSION = '1.01';
5.8.3/Text/Balanced.pm:$VERSION = '1.95';
5.8.3/DirHandle.pm:our $VERSION = '1.00';
5.8.3/constant.pm:$VERSION = '1.04';
5.8.3/AutoLoader.pm: $VERSION = '5.60';
5.8.3/bignum.pm:$VERSION = '0.14';
5.8.3/warnings/register.pm:our $VERSION = '1.00';
5.8.3/Bundle/CPAN.pm:$VERSION = '1.82';
5.8.3/Memoize.pm:$VERSION = '1.01';
5.8.3/Env.pm:our $VERSION = '1.00';
5.8.3/Class/Struct.pm:$VERSION = '0.63';
5.8.3/User/grent.pm:our $VERSION = '1.00';
5.8.3/User/pwent.pm:our $VERSION = '1.00';
5.8.3/Pod/Plainer.pm:our $VERSION = '0.01';
5.8.3/Pod/PlainText.pm:$VERSION = '2.02';
5.8.3/Pod/LaTeX.pm:$VERSION = '0.55';
5.8.3/Pod/Perldoc.pm:$VERSION = '3.12';
5.8.3/Pod/Functions.pm:our $VERSION = '1.02';
5.8.3/locale.pm:our $VERSION = '1.00';
5.8.3/i386-linux-thread-multi/MIME/Base64.pm:$VERSION = '2.21';
5.8.3/i386-linux-thread-multi/ByteLoader.pm:our $VERSION = '0.05';
5.8.3/i386-linux-thread-multi/Digest/MD5.pm:$VERSION = '2.33'; # $Date:
2003/12/07 08:40:18 $
5.8.3/i386-linux-thread-multi/ops.pm:our $VERSION = '1.00';
5.8.3/i386-linux-thread-multi/threads.pm:our $VERSION = '1.01';
5.8.3/i386-linux-thread-multi/Sys/Syslog.pm:$VERSION = '0.04';
5.8.3/i386-linux-thread-multi/Sys/Hostname.pm: $VERSION = '1.11';
5.8.3/i386-linux-thread-multi/Devel/Peek.pm:$VERSION = '1.01';
5.8.3/i386-linux-thread-multi/Devel/DProf.pm:$Devel::DProf::VERSION =
'20030813.00'; # this version not authorized by
5.8.3/i386-linux-thread-multi/Storable.pm:$VERSION = '2.09';
5.8.3/i386-linux-thread-multi/lib.pm:our $VERSION = '0.5565';
5.8.3/i386-linux-thread-multi/B/Disassembler.pm:our $VERSION = '1.03';
5.8.3/i386-linux-thread-multi/B/CC.pm:our $VERSION = '1.00';
5.8.3/i386-linux-thread-multi/B/Asmdata.pm:our $VERSION = '1.01';
5.8.3/i386-linux-thread-multi/B/Debug.pm:our $VERSION = '1.01';
5.8.3/i386-linux-thread-multi/B/Showlex.pm:our $VERSION = '1.00';
5.8.3/i386-linux-thread-multi/B/Stash.pm:our $VERSION = '1.00';
5.8.3/i386-linux-thread-multi/B/Xref.pm:our $VERSION = '1.01';
5.8.3/i386-linux-thread-multi/B/C.pm:our $VERSION = '1.02';
5.8.3/i386-linux-thread-multi/B/Stackobj.pm:our $VERSION = '1.00';
5.8.3/i386-linux-thread-multi/B/Lint.pm:our $VERSION = '1.02';
5.8.3/i386-linux-thread-multi/B/Terse.pm:our $VERSION = '1.02';
5.8.3/i386-linux-thread-multi/B/Bblock.pm:our $VERSION = '1.02';
5.8.3/i386-linux-thread-multi/B/Bytecode.pm:our $VERSION = '1.01';
5.8.3/i386-linux-thread-multi/B.pm:our $VERSION = '1.02';
5.8.3/i386-linux-thread-multi/PerlIO/via.pm:our $VERSION = '0.02';
5.8.3/i386-linux-thread-multi/PerlIO/scalar.pm:our $VERSION = '0.02';
5.8.3/i386-linux-thread-multi/PerlIO/encoding.pm:our $VERSION = '0.07';
5.8.3/i386-linux-thread-multi/File/Spec.pm:$VERSION = '3.16';
5.8.3/i386-linux-thread-multi/File/Glob.pm:$VERSION = '1.02';
5.8.3/i386-linux-thread-multi/File/Spec/Epoc.pm:$VERSION = '1.1';
5.8.3/i386-linux-thread-multi/File/Spec/VMS.pm:$VERSION = '1.4';
5.8.3/i386-linux-thread-multi/File/Spec/OS2.pm:$VERSION = '1.2';
5.8.3/i386-linux-thread-multi/File/Spec/Unix.pm:$VERSION = '1.5';
5.8.3/i386-linux-thread-multi/File/Spec/Win32.pm:$VERSION = '1.6';
5.8.3/i386-linux-thread-multi/File/Spec/Mac.pm:$VERSION = '1.4';
5.8.3/i386-linux-thread-multi/File/Spec/Cygwin.pm:$VERSION = '1.1';
5.8.3/i386-linux-thread-multi/File/Spec/Functions.pm:$VERSION = '1.3';
5.8.3/i386-linux-thread-multi/I18N/Langinfo.pm:our $VERSION = '0.02';
5.8.3/i386-linux-thread-multi/threads/shared.pm: our $VERSION = '0.92';
5.8.3/i386-linux-thread-multi/Unicode/Normalize.pm:our $VERSION = '0.28';
5.8.3/i386-linux-thread-multi/XS/Typemap.pm:$VERSION = '0.01';
5.8.3/i386-linux-thread-multi/XS/APItest.pm:our $VERSION = '0.03';
5.8.3/i386-linux-thread-multi/Data/Dumper.pm:$VERSION = '2.121';
5.8.3/i386-linux-thread-multi/XSLoader.pm: our $VERSION = '0.01';
5.8.3/i386-linux-thread-multi/XSLoader.pm: our $VERSION = '0.01';
5.8.3/i386-linux-thread-multi/XSLoader.pm: $VERSION = '0.01';
5.8.3/i386-linux-thread-multi/XSLoader.pm: $VERSION = '0.01';
5.8.3/i386-linux-thread-multi/XSLoader.pm: $VERSION = '0.01';
5.8.3/i386-linux-thread-multi/Cwd.pm:$VERSION = '3.16';
5.8.3/i386-linux-thread-multi/O.pm:our $VERSION = '1.00';
5.8.3/i386-linux-thread-multi/DynaLoader.pm:$VERSION = '1.04'; # avoid typo
warning
5.8.3/Dumpvalue.pm:our $VERSION = '1.11';
5.8.3/CPAN.pm:$VERSION = '1.83';
5.8.3/CPAN.pm: "\$VERSION = '0.01';\n\n",
5.8.3/Test.pm:$VERSION = '1.24';
5.8.3/Net/netent.pm:our $VERSION = '1.00';
5.8.3/Net/protoent.pm:our $VERSION = '1.00';
5.8.3/Net/FTP/dataconn.pm:$VERSION = '0.11';
5.8.3/Net/servent.pm:our $VERSION = '1.01';
5.8.3/Net/hostent.pm:our $VERSION = '1.01';
5.8.3/Switch.pm:$VERSION = '2.10';
5.8.3/vars.pm:our $VERSION = '1.01';
5.8.3/NEXT.pm:$VERSION = '0.60';
5.8.3/Carp.pm:our $VERSION = '1.01';
5.8.3/filetest.pm:our $VERSION = '1.01';
5.8.3/PerlIO.pm:our $VERSION = '1.03';
5.8.3/utf8.pm:our $VERSION = '1.02';
5.8.3/UNIVERSAL.pm:our $VERSION = '1.01';
5.8.3/Symbol.pm:$VERSION = '1.05';
5.8.3/if.pm:our $VERSION = '0.03';
5.8.3/Test/Harness/Straps.pm:$VERSION = '0.19';
5.8.3/Test/Harness/Assert.pm:$VERSION = '0.02';
5.8.3/Test/More.pm:$VERSION = '0.62';
5.8.3/Test/Builder/Module.pm:$VERSION = '0.03';
5.8.3/Test/Harness.pm:$VERSION = '2.40';
5.8.3/Test/Simple.pm:$VERSION = '0.62';
5.8.3/Test/Builder.pm:$VERSION = '0.32';
5.8.3/Attribute/Handlers.pm:$VERSION = '0.78';
5.8.3/Attribute/Handlers/demo/MyClass.pm:$VERSION = '1.00';
5.8.3/Attribute/Handlers/demo/Descriptions.pm:$VERSION = '1.00';
5.8.3/Attribute/Handlers/demo/Demo.pm:$VERSION = '1.00';
5.8.3/bigrat.pm:$VERSION = '0.06';
5.8.3/Search/Dict.pm:our $VERSION = '1.02';
5.8.3/Thread.pm: $VERSION = '2.00';
5.8.3/PerlIO/via/QuotedPrint.pm:$VERSION = '0.06';
5.8.3/File/stat.pm:our $VERSION = '1.00';
5.8.3/File/Spec.pm:$VERSION = '0.87';
5.8.3/File/CheckTree.pm:our $VERSION = '4.3';
5.8.3/File/Compare.pm:$VERSION = '1.1003';
5.8.3/File/DosGlob.pm:our $VERSION = '1.00';
5.8.3/File/Spec/Epoc.pm:$VERSION = '1.1';
5.8.3/File/Spec/VMS.pm:$VERSION = '1.4';
5.8.3/File/Spec/OS2.pm:$VERSION = '1.2';
5.8.3/File/Spec/Unix.pm:$VERSION = '1.5';
5.8.3/File/Spec/Win32.pm:$VERSION = '1.4';
5.8.3/File/Spec/Mac.pm:$VERSION = '1.4';
5.8.3/File/Spec/Cygwin.pm:$VERSION = '1.1';
5.8.3/File/Spec/Functions.pm:$VERSION = '1.3';
5.8.3/File/Temp.pm:$VERSION = '0.16';
5.8.3/File/Find.pm:our $VERSION = '1.06';
5.8.3/File/Copy.pm:$VERSION = '2.07';
5.8.3/Thread/Queue.pm:our $VERSION = '2.00';
5.8.3/Thread/Semaphore.pm:our $VERSION = '2.01';
5.8.3/vmsish.pm:our $VERSION = '1.01';
5.8.3/Getopt/Std.pm:$VERSION = '1.05';
5.8.3/Memoize/Expire.pm:$VERSION = '1.00';
5.8.3/AnyDBM_File.pm:our $VERSION = '1.00';
5.8.3/subs.pm:our $VERSION = '1.00';
5.8.3/I18N/Collate.pm:our $VERSION = '1.00';
5.8.3/I18N/LangTags/List.pm:$VERSION = '0.29';
5.8.3/bytes.pm:our $VERSION = '1.01';
5.8.3/Math/BigFloat.pm:$VERSION = '1.42';
5.8.3/Math/BigInt.pm:$VERSION = '1.68';
5.8.3/Math/BigInt/CalcEmu.pm:$VERSION = '0.02';
5.8.3/Math/BigInt/Calc.pm:$VERSION = '0.38';
5.8.3/Math/BigRat.pm:$VERSION = '0.10';
5.8.3/bigint.pm:$VERSION = '0.04';
5.8.3/SelectSaver.pm:our $VERSION = '1.00';
5.8.3/English.pm:our $VERSION = '1.01';
5.8.3/Term/Complete.pm:our $VERSION = '1.401';
5.8.3/Term/Cap.pm:$VERSION = '1.08';
5.8.3/Term/ReadLine.pm:our $VERSION = '1.01';
5.8.3/Unicode/Collate.pm:our $VERSION = '0.33';
5.8.3/Unicode/UCD.pm:our $VERSION = '0.21';
5.8.3/integer.pm:our $VERSION = '1.00';
5.8.3/less.pm:our $VERSION = '0.01';
5.8.3/base.pm:$VERSION = '2.04';
5.8.3/blib.pm:$VERSION = '1.02';
5.8.3/sort.pm:our $VERSION = '1.02';
5.8.3/charnames.pm:our $VERSION = '1.02';
5.8.3/Exporter.pm:our $VERSION = '5.57';
5.8.3/fields.pm:$VERSION = '2.03';
5.8.3/open.pm:our $VERSION = '1.02';
5.8.3/Time/tm.pm:our $VERSION = '1.00';
5.8.3/pod/perltoot.pod: our $VERSION = '1.1';
5.8.3/pod/perlxstut.pod: our $VERSION = '0.01';
5.8.3/Shell.pm:$VERSION = '0.5';
5.8.3/CGI/Apache.pm:$VERSION = '1.00';
5.8.3/CGI/Pretty.pm:$CGI::Pretty::VERSION = '1.08';
5.8.3/CGI/Switch.pm:$VERSION = '1.00';
5.8.3/CGI/Util.pm:$VERSION = '1.5';
5.8.3/ExtUtils/MM_OS2.pm:$VERSION = '1.04';
5.8.3/ExtUtils/Liblist.pm:$VERSION = '1.01';
5.8.3/ExtUtils/Constant.pm:$VERSION = '0.14';
5.8.3/ExtUtils/Packlist.pm:$VERSION = '0.04';
5.8.3/ExtUtils/MM_MacOS.pm:$VERSION = '1.07';
5.8.3/ExtUtils/MakeMaker.pm:$VERSION = '6.17';
5.8.3/ExtUtils/MakeMaker.pm: $VERSION = '1.00';
5.8.3/ExtUtils/MakeMaker.pm: $FOO::VERSION = '1.10';
5.8.3/ExtUtils/MakeMaker.pm: my $VERSION = '1.01';
5.8.3/ExtUtils/MakeMaker.pm: local $VERSION = '1.02';
5.8.3/ExtUtils/MakeMaker.pm: local $FOO::VERSION = '1.30';
5.8.3/ExtUtils/Command/MM.pm:$VERSION = '0.03';
5.8.3/ExtUtils/MM_Unix.pm:$VERSION = '1.42';
5.8.3/ExtUtils/MM_Win32.pm:$VERSION = '1.09';
5.8.3/ExtUtils/MM_NW5.pm:$VERSION = '2.06';
5.8.3/ExtUtils/Installed.pm:$VERSION = '0.08';
5.8.3/ExtUtils/Command.pm:$VERSION = '1.05';
5.8.3/ExtUtils/MakeMaker/FAQ.pod: our $VERSION = '0.01';
5.8.3/warnings.pm:our $VERSION = '1.03';
5.8.3/Tie/Scalar.pm:our $VERSION = '1.00';
5.8.3/Tie/Memoize.pm:our $VERSION = '1.0';
5.8.3/Tie/Handle.pm:our $VERSION = '4.1';
5.8.3/Tie/Hash.pm:our $VERSION = '1.01';
5.8.3/Tie/Array.pm:our $VERSION = '1.03';
5.8.3/Tie/SubstrHash.pm:our $VERSION = '1.00';
5.8.3/overload.pm:our $VERSION = '1.01';
5.8.3/autouse.pm:$autouse::VERSION = '1.03';
site_perl/5.8.3/Text/Glob.pm:$VERSION = '0.06';
site_perl/5.8.3/HTML/Template.pm:$HTML::Template::VERSION = '2.8';
site_perl/5.8.3/Bundle/Net/LDAP.pm:$VERSION = '0.02';
site_perl/5.8.3/YAML.pm:our $VERSION = '0.56';
site_perl/5.8.3/i386-linux-thread-multi/DBD/File.pm:$VERSION = '0.33';
site_perl/5.8.3/i386-linux-thread-multi/Digest/SHA.pm:our $VERSION = '5.32';
site_perl/5.8.3/i386-linux-thread-multi/DBI/FAQ.pm:$VERSION = '0.38';
site_perl/5.8.3/i386-linux-thread-multi/DBI/DBD.pm: $VERSION = '0.01';
site_perl/5.8.3/i386-linux-thread-multi/DBI/SQL/Nano.pm: $VERSION = '0.03';
site_perl/5.8.3/i386-linux-thread-multi/File/RsyncP.pm:$VERSION = '0.52';
site_perl/5.8.3/i386-linux-thread-multi/File/RsyncP/FileIO.pm:$VERSION =
'0.52';
site_perl/5.8.3/i386-linux-thread-multi/File/RsyncP/Digest.pm:$VERSION =
'0.52';
site_perl/5.8.3/i386-linux-thread-multi/File/RsyncP/FileList.pm:$VERSION =
'0.52';
site_perl/5.8.3/i386-linux-thread-multi/Term/ReadKey.pm:$VERSION = '2.30';
site_perl/5.8.3/XML/SAX/Exception.pm:$VERSION = '1.01';
site_perl/5.8.3/XML/SAX/Base.pm:$VERSION = '1.02';
site_perl/5.8.3/Spiffy.pm:our $VERSION = '0.30';
site_perl/5.8.3/Test/YAML.pm:our $VERSION = '0.54';
site_perl/5.8.3/Test/Base.pm:our $VERSION = '0.50';
site_perl/5.8.3/Module/Build.pm:$VERSION = '0.2611';
site_perl/5.8.3/Module/Build/Compat.pm:$VERSION = '0.03';
site_perl/5.8.3/Module/Signature.pm:$Module::Signature::VERSION = '0.53';
site_perl/5.8.3/Module/Install/TestBase.pm: $VERSION = '0.10';
site_perl/5.8.3/MLDBM.pm:$MLDBM::VERSION = $MLDBM::VERSION = '2.01';
site_perl/5.8.3/Term/ReadLine/readline.pm:$VERSION = $VERSION = '1.0203';
site_perl/5.8.3/IO/Socket/SSL.pm: $VERSION = '0.97';
site_perl/5.8.3/CGI/Session/ID/md5.pm:$CGI::Session::ID::md5::VERSION =
'1.4';
site_perl/5.8.3/CGI/Session/ID/static.pm:$CGI::Session::ID::static::VERSION
= '1.6';
site_perl/5.8.3/CGI/Session/ID/incr.pm:$CGI::Session::ID::incr::VERSION =
'1.5';
site_perl/5.8.3/CGI/Session/Tutorial.pm:$CGI::Session::Tutorial::VERSION =
'3.41';
site_perl/5.8.3/CGI/Session/Driver/postgresql.pm:$CGI::Session::Driver::postgresql::VERSION
= '2.1';
site_perl/5.8.3/CGI/Session/Test/Default.pm:$CGI::Session::Test::Default::VERSION
= '1.52';
site_perl/5.8.3/CGI/Session/Serialize/default.pm:$CGI::Session::Serialize::default::VERSION
= '1.5';
site_perl/5.8.3/CGI/Session/Serialize/freezethaw.pm:$CGI::Session::Serialize::freezethaw::VERSION
= '1.6';
vendor_perl/5.8.3/Inline.pm:$Inline::VERSION = '0.44';
vendor_perl/5.8.3/Inline.pm: local \$$ {module}::VERSION = '$version';
vendor_perl/5.8.3/HTML/Tagset.pm:$VERSION = '3.03';
vendor_perl/5.8.3/Inline-API.pod: $Inline::Foo::VERSION = '0.01';
vendor_perl/5.8.3/Inline/MakeMaker.pm:$VERSION = '0.44';
vendor_perl/5.8.3/Inline/C.pm:$VERSION = '0.44';
vendor_perl/5.8.3/Inline/Foo.pm:$VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/HTML/Parser.pm:$VERSION = '3.35';
# $Date: 2003/12/12 14:23:16 $
vendor_perl/5.8.3/i386-linux-thread-multi/Bundle/Apache2.pm:$VERSION =
'1.00';
vendor_perl/5.8.3/i386-linux-thread-multi/Bundle/ApacheTest.pm:$VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Carp/Clan.pm:$VERSION = '5.0';
vendor_perl/5.8.3/i386-linux-thread-multi/Bit/Vector/Overload.pm:$VERSION =
'6.3';
vendor_perl/5.8.3/i386-linux-thread-multi/Bit/Vector.pm:$VERSION = '6.3';
vendor_perl/5.8.3/i386-linux-thread-multi/DBD/Pg.pm:$DBD::Pg::VERSION =
'1.31';
vendor_perl/5.8.3/i386-linux-thread-multi/Date/Calendar.pm:$VERSION = '5.3';
vendor_perl/5.8.3/i386-linux-thread-multi/Date/Calendar/Profiles.pm:$VERSION
= '5.3';
vendor_perl/5.8.3/i386-linux-thread-multi/Date/Calendar/Year.pm:$VERSION =
'5.3';
vendor_perl/5.8.3/i386-linux-thread-multi/Date/Calc.pm:$VERSION = '5.3';
vendor_perl/5.8.3/i386-linux-thread-multi/Filter/cpp.pm.bak:$VERSION =
'1.03' ;
vendor_perl/5.8.3/i386-linux-thread-multi/Filter/cpp.pm:$VERSION = '1.03' ;
vendor_perl/5.8.3/i386-linux-thread-multi/APR/String.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Pool.pm:our $VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/UUID.pm:our $VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/URI.pm:our $VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Util.pm:our $VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Brigade.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/PerlIO.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/ThreadMutex.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Socket.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/SockAddr.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Table.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Bucket.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Const.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Date.pm:our $VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/OS.pm:our $VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/NetLib.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Base64.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR/Finfo.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/DBI/FAQ.pm:$VERSION = '0.38';
vendor_perl/5.8.3/i386-linux-thread-multi/DBI/DBD.pm: $VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/XML/Parser.pm: $VERSION = '2.34';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/RequestIO.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/PerlSections.pm:our
$VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/HookRun.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Response.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Build.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/RequestRec.pm:our $VERSION
= '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Test.pm:$VERSION = '1.08';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Process.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/RequestUtil.pm:our $VERSION
= '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/TestTrace.pm:$VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/URI.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Util.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Server.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Directive.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/TestUtil.pm:$VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/MPM.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Status.pm:$Apache::Status::VERSION
= '3.00'; # mod_perl 2.0
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/SubRequest.pm:our $VERSION
= '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Connection.pm:our $VERSION
= '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/ServerUtil.pm:our $VERSION
= '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Test5005compat.pm:$Apache::Test5005compat::VERSION
= '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Log.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/ParseSource.pm:our $VERSION
= '0.02';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Command.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/CmdParms.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/SubProcess.pm:our $VERSION
= '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Const.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Module.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/FilterRec.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Reload.pm:our $VERSION =
'0.09';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Access.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/Apache/Filter.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/Global.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/RegistryCooker.pm:our
$VERSION = '1.99';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/Util.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/Registry.pm:our $VERSION =
'1.99';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/PerlRun.pm:our $VERSION =
'1.99';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/Code.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/ParseSource.pm:our
$VERSION = '0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/Const.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/RegistryBB.pm:our $VERSION
= '1.99';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/WrapXS.pm:our $VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/ModPerl/WrapXS.pm:our \$VERSION =
'0.01';
vendor_perl/5.8.3/i386-linux-thread-multi/APR.pm:our $VERSION = '0.01';
vendor_perl/5.8.3/LWP/Authen/Ntlm.pm:$VERSION = '0.05';
vendor_perl/5.8.3/XML/XQL.pm: $VERSION = '0.63';
vendor_perl/5.8.3/XML/SAX/Exception.pm:$VERSION = '1.01';
vendor_perl/5.8.3/XML/SAX/ParserFactory.pm:$VERSION = '1.01';
vendor_perl/5.8.3/XML/SAX/PurePerl.pm:$VERSION = '0.90';
vendor_perl/5.8.3/XML/SAX/Base.pm:$VERSION = '1.04';
vendor_perl/5.8.3/XML/Checker.pm: $VERSION = '0.09';
vendor_perl/5.8.3/XML/DOM.pm: $VERSION = '1.27';
vendor_perl/5.8.3/XML/Encoding.pm:$VERSION = '1.01';
vendor_perl/5.8.3/XML/SAX.pm:$VERSION = '0.12';
vendor_perl/5.8.3/Inline-FAQ.pod: $Math::Simple::VERSION = '1.23';
vendor_perl/5.8.3/Inline.pod: $VERSION = '1.23';
vendor_perl/5.8.3/Parse/Yapp/Driver.pm:$VERSION = '1.05';
5.8.3/i386-linux-thread-multi/Config.pm:PERL_API_SUBVERSION='0'
5.8.3/i386-linux-thread-multi/Config.pm:PERL_API_VERSION='8'
5.8.3/i386-linux-thread-multi/Config.pm:PERL_SUBVERSION='3'
5.8.3/i386-linux-thread-multi/Config.pm:PERL_VERSION='8'
5.8.3/i386-linux-thread-multi/Config.pm:SUBVERSION='3'
Binary file 5.8.3/i386-linux-thread-multi/auto/Devel/DProf/DProf.so matches
5.8.3/i386-linux-thread-multi/Devel/DProf.pm: $XS_VERSION='DProf 19970606';
5.8.3/i386-linux-thread-multi/Devel/DProf.pm: $XS_VERSION='DProf 19971213';
5.8.3/CGI.pm:$CGI::VERSION='3.15';
5.8.3/CGI/Fast.pm:$CGI::Fast::VERSION='1.05';
5.8.3/CGI/Cookie.pm:$CGI::Cookie::VERSION='1.26';
5.8.3/CGI/Push.pm:$CGI::Push::VERSION='1.04';
vendor_perl/5.8.3/Inline.pm:Inline config option 'VERSION=' from the $pkg
module.
vendor_perl/5.8.3/auto/Inline/M30_error_no_obj.al:Inline config option
'VERSION=' from the $pkg module.
5.8.3/pod/perlguts.pod: SUB UNIVERSAL::VERSION = (xsub 0x811f7ac 0)
site_perl/5.8.3/Date/Leapyear.pm:$VERSION = ( qw'$Revision: 1.71 $' )[1];
site_perl/5.8.3/i386-linux-thread-multi/Filesys/SmbClient.pm:$VERSION =
('$Revision: 3.0 $ ' =~ /(\d+\.\d+)/)[0];
----- Original Message -----
From: "Kim Kuylen" <kk...@sk...>
To: "Raf" <mil...@ho...>
Cc: <per...@li...>
Sent: Thursday, February 02, 2006 11:30 PM
Subject: Re: [Personalbackup-users] Web login cycling
> Hello Raf,
>
> Are you sure you accept cookies in your browser ?
> This is required for PersonalBackup to operate, because at first glance I
> do not immediately see the the problem.
>
> Will try to investigate some more tomorrow...
>
> Regards,
> LinuxTuxie
>
> Raf wrote:
>> Kind list's members
>>
>> in order to restest the whole install process
>> before starting with production phase,
>> this morning I've made a fresh Fedora 2 install
>> on a test machine and fresh downloaded Personalbackup
>> from CVS.
>>
>> Installation has gone fine, like in previous tests, but
>> when I try to log in personalbackup's web interface
>> as admin, the browser reloads the login.cgi page with
>> no-erros or warns.
>> If I submit wrong user/password the
>> "Wrong password or username, please try again"
>> message is correctly displayed, but with correct
>> one the log-in is reloaded forever.
>>
>> I've tryed to figure-out the problem with no success.
>>
>> Hope you can help me.
>>
>> Logs in attachment:
>> httpd.conf
>> httpd's access_log
>> personalbackup.conf
>> postgresql's log
>> httpd's error_log
>>
>> Thank you for your kind support.
>>
>> Best regards
>>
>> Raf
>>
--- snippet ---
|
|
From: Raf <mil...@ho...> - 2006-02-04 00:01:54
|
> 1. Do you have 'database' as Authentication method ?
> you can see this by running the follwong command
>
> grep '$authentication' /etc/personalbackup/personalbackup.conf
>
Checked: it comes as default and I've never touched :-)
> 2. Can you verify if the user admin is loaded into the database ?
> You can verify by running:
>
> echo "select * from users;" | psql -W -U pbuser personalbackup
>
Checked: correct output
> 3. Can you make sure that you enter the code block starting on line 101
> in the file login.cgi ?
> You can do this by inserting a line like described below on line 103
> in the login.cgi file:
>
> PBUtils->loginfo("info", "Found user $username with pwd $password in
> database. CGI values: ".$session->param("user_name")." |
> ".$session->param("~logged-in"));
>
> After you have added this line and reloaded the page, you should see
> a line appearing in your /var/log/messages file.
>
> The /var/log/messages file should return something like:
>
> Feb 3 23:56:53 machine personalbackup[20425]: Found user admin with pwd
> admin in database. CGI values: admin | 1
>
Here is my output:
Found user admin with pwd admin in database. CGI values: admin |
the trailing "1" is missing!
Regards
Raf
|
|
From: Raf <mil...@ho...> - 2006-02-06 22:28:10
|
Hi LinuxTuxie
after correcting the script, now the output
is as expected:
Found user admin with pwd admin in database. CGI values: admin | 1
Tomorrow I'll be online almost all day, I'll stay in #personalbackup.
Note that my time is UTC+1.
Regards
Raf
----- Original Message -----
From: "linuxtuxie" <lin...@sf...>
To: "Raf" <mil...@ho...>
Cc: "LinuxTuxie" <lin...@us...>;
<per...@li...>
Sent: Saturday, February 04, 2006 2:50 PM
Subject: Re: [Personalbackup-users] Web login cycling
> Raf wrote:
>>
>>> 1. Do you have 'database' as Authentication method ?
>>> you can see this by running the follwong command
>>>
>>> grep '$authentication' /etc/personalbackup/personalbackup.conf
>>>
>> Checked: it comes as default and I've never touched :-)
>>
>>> 2. Can you verify if the user admin is loaded into the database ?
>>> You can verify by running:
>>>
>>> echo "select * from users;" | psql -W -U pbuser personalbackup
>>>
>> Checked: correct output
>>
>>> 3. Can you make sure that you enter the code block starting on line 101
>>> in the file login.cgi ?
>>> You can do this by inserting a line like described below on line 103
>>> in the login.cgi file:
>>>
>>> PBUtils->loginfo("info", "Found user $username with pwd $password in
>>> database. CGI values: ".$session->param("user_name")." |
>>> ".$session->param("~logged-in"));
>>>
>>> After you have added this line and reloaded the page, you should see
>>> a line appearing in your /var/log/messages file.
>>>
>>> The /var/log/messages file should return something like:
>>>
>>> Feb 3 23:56:53 machine personalbackup[20425]: Found user admin with pwd
>>> admin in database. CGI values: admin | 1
>>>
>> Here is my output:
>> Found user admin with pwd admin in database. CGI values: admin |
>>
>> the trailing "1" is missing!
> Can you make sure that you have placed the PBUtils line mentioned above
> below the following line:
> "$session->param("~logged-in", 1);"
>
> I think you have placed it just above that line. But it is my mistake...I
> was not describing it clear enough :)
>
> I will also be available today on irc.freenode.net in the #personalbackup
> channel if you want to reach me. This can speed up the debugging :)
>
> Regards,
> LinuxTuxie
>
> --
> - PersonalBackup -
> Personalbackup a company-wide solution for backing up all your Windows
> machines and Samba shares.
> Personalbackup uses a web frontend for the users and administrators.
> No client software is needed at all to pull backups of your critical data
>
> - http://personalbackup.sf.net -
>
>
|
|
From: Kim K. <lin...@us...> - 2006-02-07 20:37:36
|
Raf wrote: > Hi LinuxTuxie > > after correcting the script, now the output > is as expected: > Found user admin with pwd admin in database. CGI values: admin | 1 > > Tomorrow I'll be online almost all day, I'll stay in #personalbackup. > Note that my time is UTC+1. I am currently on a business trip for a week, and I will be unable to join you on irc. I am available again starting this Saturday. Regards, LinuxTuxie |