Index of /

2008-09-07 Thread Marcus Müller
Hallo zusammen,

eine Frage.

Und zwar habe ich mein DocumentRoot auf /home/gzimmerm/bilddaten
gesetzt. Steuer ich per Browser das Verzeichnis an, schreibt der Apache
einfach nur  Index of / 

Wie kann ich ihn dazu bringen, dass er  Index of bilddaten  anzeigt ?

Apache 2.2
SLES10

Beste Grüße,

Marcus


--
Apache HTTP Server Mailing List users-de
  unsubscribe-Anfragen an [EMAIL PROTECTED]
   sonstige Anfragen an [EMAIL PROTECTED]
--



AW: Index of /

2008-09-07 Thread Dieter Soost

Und zwar habe ich mein DocumentRoot auf /home/gzimmerm/bilddaten
gesetzt. Steuer ich per Browser das Verzeichnis an, schreibt der Apache
einfach nur  Index of / 
Wie kann ich ihn dazu bringen, dass er  Index of bilddaten  anzeigt ?

Root bezeichnet das Wurzel-Verzeichnis, welches ja / ist (lt. Config
gesetzt).

Wenn Du Bilddaten angezeigt bekommen möchtest, müsstest Du das Root auf
/home/gzimmerm setzen.

Regards
Dieter




--
Apache HTTP Server Mailing List users-de
  unsubscribe-Anfragen an [EMAIL PROTECTED]
   sonstige Anfragen an [EMAIL PROTECTED]
--



Re: Index of /

2008-09-07 Thread Rainer Sokoll
On Sun, Sep 07, 2008 at 04:13:11PM +0200, Marcus Müller wrote:

 Und zwar habe ich mein DocumentRoot auf /home/gzimmerm/bilddaten
 gesetzt. Steuer ich per Browser das Verzeichnis an, schreibt der Apache
 einfach nur  Index of / 

Nichts weiter? Hat der Apache-user überhaupt Leserechte auf das
DocumentRoot?

Rainer

--
Apache HTTP Server Mailing List users-de 
  unsubscribe-Anfragen an [EMAIL PROTECTED]
   sonstige Anfragen an [EMAIL PROTECTED]
--



AW: Index of /

2008-09-07 Thread Michael Motzkus
 Wenn Du Bilddaten angezeigt bekommen möchtest, müsstest Du das Root
 auf
 /home/gzimmerm setzen.
 
... womit Du aber nicht unbedingt da landest, wo Du hinmöchtest, denn dieser
index of zeigt natürlich auch alles andere unter gzimmerm an, wenn da
nicht nur der Bildordner ist. Es ist nun mal so, dass / der document_root
ist. Egal, ob es der Bilderordner ist, die Kaffeemühle oder sonst was ;-)

LG
Michael


--
Apache HTTP Server Mailing List users-de
  unsubscribe-Anfragen an [EMAIL PROTECTED]
   sonstige Anfragen an [EMAIL PROTECTED]
--



[EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files from IE

2008-09-07 Thread Jay
Hello Edward,
 
Thank you for your reply. Was able to see your reply in the archives but it 
didn't land in my inbox yet. Subscribed to this list just a moment before 
posting this question. So, it may take a while for the list to reflect my user 
id as well.
 
So, this may appear as a new thread.
 
Coming back to the original problem, as it didn't work with the default conf 
file, I made minor modification as below:
 
Original entry:
 
Directory /
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
/Directory


 
 
Updated as:
 
Directory /
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
/Directory


 
Thank You.


  

Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files from IE

2008-09-07 Thread edwardspl
Dear Jay,

Are you running your web server by using default config file for testing ?

Edward.

Jay wrote:

 Hello
 Linux Version : Red Hat Enterprise Version 5.0
 Downloaded HTTP server 2.2.9 source, built  installed
 Started the server using the command apachectl start  the server
 started fine. No errors in logs/error_log
 Have attached httpd.conf
 From the IE in my windows box, if I access the URL, http://a.b.c.d get
 the error message that, Page Not Found
 From my windows system, am able to ping linux server a.b.c.d
 Could someone please explain, what to look for and how to solve this
 problem ?
 Thanks




#
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See URL:http://httpd.apache.org/docs/2.2 for detailed information.
# In particular, see 
# URL:http://httpd.apache.org/docs/2.2/mod/directives.html
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with / (or drive:/ for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with /, the value of ServerRoot is prepended -- so logs/foo_log
# with ServerRoot set to /usr/local/fnmt/apache2 will be interpreted by the
# server as /usr/local/fnmt/apache2/logs/foo_log.

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path.  If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk.  If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
#
ServerRoot /usr/local/fnmt/apache2

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the VirtualHost
# directive.
#
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#

IfModule !mpm_netware_module
IfModule !mpm_winnt_module
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.  
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User daemon
Group daemon

/IfModule
/IfModule

# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# VirtualHost definition.  These values also provide defaults for
# any VirtualHost containers you may define later in the file.
#
# All of these directives may appear inside VirtualHost containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [EMAIL PROTECTED]
#
ServerAdmin [EMAIL PROTECTED]

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName www.example.com:80

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot /usr/local/fnmt/apache2/htdocs

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories). 
#
# First, we configure the default to be a very restrictive set of 
# features.  
#
Directory /
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
/Directory

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if 

[EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files from IE

2008-09-07 Thread Jay
Hello
 
Linux Version : Red Hat Enterprise Version 5.0
 
Downloaded HTTP server 2.2.9 source, built  installed 
 
Started the server using the command apachectl start  the server started fine. 
No errors in logs/error_log
 
Have attached httpd.conf
 
From the IE in my windows box, if I access the URL, http://a.b.c.d get  the 
error message that,  Page Not Found
 
From my windows system, am able to ping linux server a.b.c.d
 
Could someone please explain, what to look for and how to solve this problem ?
 
Thanks


  #
# This is the main Apache HTTP server configuration file.  It contains the
# configuration directives that give the server its instructions.
# See URL:http://httpd.apache.org/docs/2.2 for detailed information.
# In particular, see 
# URL:http://httpd.apache.org/docs/2.2/mod/directives.html
# for a discussion of each configuration directive.
#
# Do NOT simply read the instructions in here without understanding
# what they do.  They're here only as hints or reminders.  If you are unsure
# consult the online docs. You have been warned.  
#
# Configuration and logfile names: If the filenames you specify for many
# of the server's control files begin with / (or drive:/ for Win32), the
# server will use that explicit path.  If the filenames do *not* begin
# with /, the value of ServerRoot is prepended -- so logs/foo_log
# with ServerRoot set to /usr/local/fnmt/apache2 will be interpreted by the
# server as /usr/local/fnmt/apache2/logs/foo_log.

#
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path.  If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk.  If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
#
ServerRoot /usr/local/fnmt/apache2

#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the VirtualHost
# directive.
#
# Change this to Listen on specific IP addresses as shown below to 
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
Listen 80

#
# Dynamic Shared Object (DSO) Support
#
# To be able to use the functionality of a module which was built as a DSO you
# have to place corresponding `LoadModule' lines at this location so the
# directives contained in it are actually available _before_ they are used.
# Statically compiled modules (those listed by `httpd -l') do not need
# to be loaded here.
#
# Example:
# LoadModule foo_module modules/mod_foo.so
#

IfModule !mpm_netware_module
IfModule !mpm_winnt_module
#
# If you wish httpd to run as a different user or group, you must run
# httpd as root initially and it will switch.  
#
# User/Group: The name (or #number) of the user/group to run httpd as.
# It is usually good practice to create a dedicated user and group for
# running httpd, as with most system services.
#
User daemon
Group daemon

/IfModule
/IfModule

# 'Main' server configuration
#
# The directives in this section set up the values used by the 'main'
# server, which responds to any requests that aren't handled by a
# VirtualHost definition.  These values also provide defaults for
# any VirtualHost containers you may define later in the file.
#
# All of these directives may appear inside VirtualHost containers,
# in which case these default settings will be overridden for the
# virtual host being defined.
#

#
# ServerAdmin: Your address, where problems with the server should be
# e-mailed.  This address appears on some server-generated pages, such
# as error documents.  e.g. [EMAIL PROTECTED]
#
ServerAdmin [EMAIL PROTECTED]

#
# ServerName gives the name and port that the server uses to identify itself.
# This can often be determined automatically, but we recommend you specify
# it explicitly to prevent problems during startup.
#
# If your host doesn't have a registered DNS name, enter its IP address here.
#
#ServerName www.example.com:80

#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot /usr/local/fnmt/apache2/htdocs

#
# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories). 
#
# First, we configure the default to be a very restrictive set of 
# features.  
#
Directory /
Options FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
/Directory

#
# Note that from this point forward you must specifically allow
# particular features to be enabled - so if something's not working as
# you might expect, make sure that you have specifically enabled it
# below.
#

#
# This should be changed to whatever you set DocumentRoot 

Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files from IE

2008-09-07 Thread edwardspl
Jay wrote:

 Hello Edward,
 Thank you for your reply. Was able to see your reply in the archives
 but it didn't land in my inbox yet. Subscribed to this list just a
 moment before posting this question. So, it may take a while for the
 list to reflect my user id as well.
 So, this may appear as a new thread.
 Coming back to the original problem,as it didn't work with the default
 conf file, I made minor modification as below:
 Original entry:
 Directory /
 Options FollowSymLinks
 AllowOverride None
 Order deny,allow
 Deny from all
 /Directory

 Updated as:
 Directory /
 Options FollowSymLinks
 AllowOverride None
 Order allow,deny
 Allow from all
 /Directory

 Thank You.


Hello Jay,

Would you capture your problem as gif/jpg, then post here for discrib
your problem ?
OR
You may try these ( default of FC6 System ) :

Options Indexes Includes FollowSymLinks MultiViews ExecCGI

Thanks !

Edward.


[EMAIL PROTECTED] About lingering_close

2008-09-07 Thread Arnab Ganguly
Hi All,
How do I enable lingering_close in Apache.Is it enabled by default in Apache
2.2.8 ? Is there anyway to check it.
Thanks and regards
Arnab


Re: [EMAIL PROTECTED] About lingering_close

2008-09-07 Thread Eric Covener
On Sun, Sep 7, 2008 at 8:56 AM, Arnab Ganguly [EMAIL PROTECTED] wrote:
 Hi All,
 How do I enable lingering_close in Apache.Is it enabled by default in Apache
 2.2.8 ? Is there anyway to check it.

It's enabled by default, and you have to recompile Apache to
change/disable the behavior.

Please don't cross-post to the development mailing list.

-- 
Eric Covener
[EMAIL PROTECTED]

-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files from IE

2008-09-07 Thread Jay


--- On Sun, 9/7/08, Jay [EMAIL PROTECTED] wrote:

From: Jay [EMAIL PROTECTED]
Subject: Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files 
from IE
To: users@httpd.apache.org
Date: Sunday, September 7, 2008, 8:56 AM






--- On Sun, 9/7/08, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:

From: [EMAIL PROTECTED] [EMAIL PROTECTED]
Subject: Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files 
from IE
To: users@httpd.apache.org
Date: Sunday, September 7, 2008, 8:52 AM


Jay wrote:






Hello Edward,
 
Thank you for your reply. Was able to see your reply in the archives but it 
didn't land in my inbox yet. Subscribed to this list just a moment before 
posting this question. So, it may take a while for the list to reflect my user 
id as well.
 
So, this may appear as a new thread.
 
Coming back to the original problem, as it didn't work with the default conf 
file, I made minor modification as below:
 
Original entry:
 
Directory /
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
/Directory


 
 
Updated as:
 
Directory /
    Options FollowSymLinks
    AllowOverride None
    Order allow,deny
    Allow from all
/Directory


 
Thank You.
Hello Jay,

Would you capture your problem as gif/jpg, then post here for discrib your 
problem ?
OR
You may try these ( default of FC6 System ) :

Options Indexes Includes FollowSymLinks MultiViews ExecCGI

Thanks !

Edward.

 
Hello Edward,
 
Have attached the snapshot of the error in the IE. Please let me know, if you 
need more details.
 
Thanks
Hello Edward,
 
The problem was solved, when I disabled the iptables 
 
Thank You for your help.


  

Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files from IE

2008-09-07 Thread Francois Gingras
Jay,

Directory / points to the actual '/' path. It is locked down for
security reasons, and you should not alter it.

To allow access to your server, you should create or alter the
Directory block in your virtual host instead. Look out for the
DocumentRoot directive to know what path to use.

Frank.

On Sun, Sep 7, 2008 at 8:38 AM, Jay [EMAIL PROTECTED] wrote:
 Hello Edward,

 Thank you for your reply. Was able to see your reply in the archives but it
 didn't land in my inbox yet. Subscribed to this list just a moment before
 posting this question. So, it may take a while for the list to reflect my
 user id as well.

 So, this may appear as a new thread.

 Coming back to the original problem, as it didn't work with the default conf
 file, I made minor modification as below:

 Original entry:

 Directory /
 Options FollowSymLinks
 AllowOverride None
 Order deny,allow
 Deny from all
 /Directory



 Updated as:

 Directory /
 Options FollowSymLinks
 AllowOverride None
 Order allow,deny
 Allow from all
 /Directory


 Thank You.


-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files from IE

2008-09-07 Thread Jay
Frank

Many thanks for the reply. Have reverted the changes.

Thanks again.


--- On Sun, 9/7/08, Francois Gingras [EMAIL PROTECTED] wrote:
From: Francois Gingras [EMAIL PROTECTED]
Subject: Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files 
from IE
To: users@httpd.apache.org, [EMAIL PROTECTED]
Date: Sunday, September 7, 2008, 2:34 PM

Jay,

Directory / points to the actual '/' path. It is locked down
for
security reasons, and you should not alter it.

To allow access to your server, you should create or alter the
Directory block in your virtual host instead. Look out for the
DocumentRoot directive to know what path to use.

Frank.

On Sun, Sep 7, 2008 at 8:38 AM, Jay [EMAIL PROTECTED] wrote:
 Hello Edward,

 Thank you for your reply. Was able to see your reply in the archives but
it
 didn't land in my inbox yet. Subscribed to this list just a moment
before
 posting this question. So, it may take a while for the list to reflect my
 user id as well.

 So, this may appear as a new thread.

 Coming back to the original problem, as it didn't work with the
default conf
 file, I made minor modification as below:

 Original entry:

 Directory /
 Options FollowSymLinks
 AllowOverride None
 Order deny,allow
 Deny from all
 /Directory



 Updated as:

 Directory /
 Options FollowSymLinks
 AllowOverride None
 Order allow,deny
 Allow from all
 /Directory


 Thank You.


-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




  

Re: [EMAIL PROTECTED] About lingering_close

2008-09-07 Thread Arnab Ganguly
Is there any way to check the behavior?
Thanks
Arnab

On Sun, Sep 7, 2008 at 6:59 PM, Eric Covener [EMAIL PROTECTED] wrote:

 On Sun, Sep 7, 2008 at 8:56 AM, Arnab Ganguly [EMAIL PROTECTED]
 wrote:
  Hi All,
  How do I enable lingering_close in Apache.Is it enabled by default in
 Apache
  2.2.8 ? Is there anyway to check it.

 It's enabled by default, and you have to recompile Apache to
 change/disable the behavior.

 Please don't cross-post to the development mailing list.

 --
 Eric Covener
 [EMAIL PROTECTED]

 -
 The official User-To-User support forum of the Apache HTTP Server Project.
 See URL:http://httpd.apache.org/userslist.html for more info.
 To unsubscribe, e-mail: [EMAIL PROTECTED]
  from the digest: [EMAIL PROTECTED]
 For additional commands, e-mail: [EMAIL PROTECTED]




Re: [EMAIL PROTECTED] HTTP Server 2.2.9 - Unable to view the files from IE

2008-09-07 Thread Joseph S D Yao
On Sun, Sep 07, 2008 at 06:46:54AM -0700, Jay wrote:
 Hello Edward,
  
 The problem was solved, when I disabled the iptables 
  
 Thank You for your help.


Good catch.  Glad I read to the current end of thread, to see that you
located the issue I was going to suggest.

Of course, you don't want to stand naked and vulnerable for too long.
Allow queries to destination port 80 on INPUT, and replies, and then
turn iptables back on.


-- 
/*\
**
** Joe Yao  [EMAIL PROTECTED] - Joseph S. D. Yao
**
\*/

-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Repeating lines GDB behaviour in custom apache module

2008-09-07 Thread Juhani Connolly

Greetings,

I've recently started working at developing apache modules, and while 
finding it interesting, have recently run into a rather annoying issue. I 
appear to get unusual GDB output, where the code repeats sections multiple 
times(despite there being no loop) and sometimes just making big skips, and 
most commands (print in particular) outright not working. Adding sample 
output to the end of this message.


I've only taken the jump from development in a windows environment using 
VC++ recently, and am far from an expert in configuring build environments, 
though I've read through the docs. During debug I run with -X, and 
everything, including apache is compiled with -g. I used apxs to compile and 
install the module itself with the following command.


sudo /usr/local/apache2/bin/apxs -c -i mod_ninja_access.c

I've read the chapter on module debugging in The apache modules book, as 
well as a couple of articles, however have not found any mention of such an 
issue in them. I've also tried googling and checking the archives for 
similar issues but had no luck. I suspect this is some kind of configuration 
issue, and wondering if anyone else has encountered a similar issue or would 
be able to help?


I post here and not on a gdb mailing list as I've had no problems with other 
environments, so I'm assuming it may be specific to how I'm setting up my 
module?


Thanks for reading,
 Juhani Connolly



Sample output from gdb here:

This GDB was configured as i386-redhat-linux-gnu...Using host libthread_db 
library /lib/i686/nosegneg/libthread_db.so.1.


(gdb) r -X
Starting program: /usr/local/apache2/bin/httpd -X
[Thread debugging using libthread_db enabled]
[New Thread -1208711424 (LWP 8068)]

Program received signal SIGINT, Interrupt.
[Switching to Thread -1208711424 (LWP 8068)]
0x00e3a402 in __kernel_vsyscall ()
(gdb) break mna_
mna_create_svr_conf  mna_hook_child_init  mna_hook_handler mna_srv_conf
(gdb) break mna_
mna_create_svr_conf  mna_hook_child_init  mna_hook_handler mna_srv_conf
(gdb) break mna_hook_handler
Breakpoint 1 at 0x15b44e: file mod_ninja_access.c, line 506.
(gdb) c
Continuing.

Breakpoint 1, mna_hook_handler (r=0x86513e8) at mod_ninja_access.c:506
warning: Source file is more recent than executable.
506 if (!strcmp(r-handler, ninja_access))
(gdb) n
505 {
(gdb) n
506 if (!strcmp(r-handler, ninja_access))
(gdb) n
510 else if(!strcmp(r-handler, ninja_js))
(gdb) s
188 mna_srv_conf* svr = 
ap_get_module_config(r-server-module_config, ninja_access_module);

(gdb) n
190 pathinfo = (char*)apr_pstrdup(r-pool, 
r-uri+strlen(svr-thisScript));

(gdb) n
188 mna_srv_conf* svr = 
ap_get_module_config(r-server-module_config, ninja_access_module);

(gdb) p pathinfo
No symbol pathinfo in current context.
(gdb) n
190 pathinfo = (char*)apr_pstrdup(r-pool, 
r-uri+strlen(svr-thisScript));

(gdb) n
191 if(pathinfo == NULL)
(gdb) p pathinfo
No symbol pathinfo in current context.
(gdb) n
190 pathinfo = (char*)apr_pstrdup(r-pool, 
r-uri+strlen(svr-thisScript));

(gdb) n
191 if(pathinfo == NULL)
(gdb) n
342 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, 
r-server, [ninja_access] Couldn't open js file %s, svr-jsFile);

(gdb) n
516 }



-
The official User-To-User support forum of the Apache HTTP Server Project.
See URL:http://httpd.apache.org/userslist.html for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
 from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]