× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.



I have net.data running on our original webserver. I have created a new web
instance powered by apache. I can't seem to get net.data macros to run.
What am I doing wrong??

Right now, I am getting that I am not authorized to the page.

My macros are in the directory WWW/JKLTEST/HTDOCS/MACRO and my includes are
WWW/JKLTEST/HTDOCS/INCLUDE
I have *PUBLIC *RWX on WWW, JKLTEST, HTDOCS, MACRO and INCLUDE folders

Here is my INI file that is located in NDSYSRQ lib:

DTRW_CLOSE_REGISTRIES YES

MACRO_PATH      /WWW/JKLTEST/HTDOCS/MACRO
INCLUDE_PATH    /WWW/JKLTEST/HTDOCS/INCLUDE;/QSYS.LIB/
EXEC_PATH       /QSYS.LIB
DTW_SMTP_SERVER MAILBAG.COM
SHOWSQL YES
DTW_ERROR_LOG_DIR /WWW/JKLTEST/LOGS
DTW_ERROR_LOG_LEVEL ALL
DTW_TRACE_LOG_DIR /WWW/JKLTEST/LOGS
DTW_TRACE_LOG_LEVEL SERVICE
DTW_TRACE_MERGE_RECORDS NO



Here is my Apache server config:




                                                                           
 HTTP server:                JKLTEST                                       
                                                                           
 Selected file:              /www/jkltest/conf/httpd.conf                  
                                                                           





                                                                           
       # Configuration originally created by Create HTTP Server wizard on  
  1 Thu Feb 03 17:12:50 UTC 2005                                           
                                                                           
       LoadModule jk_module /QSYS.LIB/QHTTPSVR.LIB/QZTCJK.SRVPGM           
  2                                                                        
                                                                           
       ScriptAlias /macro/ /QSYS.LIB/NDSYSRQTST.LIB/DB2WWW.PGM/            
  3                                                                        
                                                                           
       ScriptAlias /cgi-bin/db2www/ /QSYS.LIB/NDSYSRQTST.LIB/DB2WWW.PGM/   
  4                                                                        
                                                                           
       ScriptAlias /CGI-BIN/DB2WWW/ /QSYS.LIB/NDSYSRQTST.LIB/DB2WWW.PGM/   
  5                                                                        
                                                                           
       ScriptAlias /MACRO/ /QSYS.LIB/NDSYSRQTST.LIB/DB2WWW.PGM/            
  6                                                                        
                                                                           
       ScriptAlias /cgibin/ /QSYS.LIB/NDSYSRQTST.LIB/                      
  7                                                                        
                                                                           
       Alias /images/* /www/jkltest/htdocs/images/*                        
  8                                                                        
                                                                           
       Alias /IMAGES/* /www/jkltest/htdocs/images/*                        
  9                                                                        
                                                                           
       Listen 192.168.0.3:8305                                             
 10                                                                        
                                                                           
                                                                           
       DocumentRoot /www/jkltest/htdocs                                    
 11                                                                        
                                                                           
                                                                           
       Options -ExecCGI -FollowSymLinks -SymLinksIfOwnerMatch -Includes    
 12 -IncludesNoExec -Indexes -MultiViews                                   
                                                                           
                                                                           
       LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"                
 13 \"%{User-Agent}i\"" combined                                           
                                                                           
                                                                           
       LogFormat "%{Cookie}n \"%r\" %t" cookie                             
 14                                                                        
                                                                           
                                                                           
       LogFormat "%{User-agent}i" agent                                    
 15                                                                        
                                                                           
                                                                           
       LogFormat "%{Referer}i -> %U" referer                               
 16                                                                        
                                                                           
                                                                           
       LogFormat "%h %l %u %t \"%r\" %>s %b" common                        
 17                                                                        
                                                                           
                                                                           
       CustomLog logs/access_log combined                                  
 18                                                                        
                                                                           
                                                                           
       LogMaint logs/access_log 7 0                                        
 19                                                                        
                                                                           
                                                                           
       LogMaint logs/error_log 7 0                                         
 20                                                                        
                                                                           
                                                                           
       HotBackup Off                                                       
 21                                                                        
                                                                           
                                                                           
       SetEnvIf "User-Agent" "Mozilla/2" nokeepalive                       
 22                                                                        
                                                                           
                                                                           
       SetEnvIf "User-Agent" "JDK/1\.0" force-response-1.0                 
 23                                                                        
                                                                           
                                                                           
       SetEnvIf "User-Agent" "Java/1\.0" force-response-1.0                
 24                                                                        
                                                                           
                                                                           
       SetEnvIf "User-Agent" "RealPlayer 4\.0" force-response-1.0          
 25                                                                        
                                                                           
                                                                           
       SetEnvIf "User-Agent" "MSIE 4\.0b2;" nokeepalive                    
 26                                                                        
                                                                           
                                                                           
       SetEnvIf "User-Agent" "MSIE 4\.0b2;" force-response-1.0             
 27                                                                        
                                                                           
                                                                           
       JkWorkersFile /www/jkltest/conf/workers.properties                  
 28                                                                        
                                                                           
                                                                           
       JkLogFile /www/jkltest/logs/jk.log                                  
 29                                                                        
                                                                           
                                                                           
       JkLogLevel Error                                                    
 30                                                                        
                                                                           
                                                                           
       JkMount /app1/* inprocess                                           
 31                                                                        
                                                                           
                                                                           
       JkMount /servlet/* inprocess                                        
 32                                                                        
                                                                           
                                                                           
       DirectoryIndex index.html index.htm                                 
 33                                                                        
                                                                           
                                                                           
       <Directory />                                                       
 34                                                                        
                                                                           
                                                                           
            Order Deny,Allow                                               
 35                                                                        
                                                                           
                                                                           
            Allow From all                                                 
 36                                                                        
                                                                           
                                                                           
       </Directory>                                                        
 37                                                                        
                                                                           
                                                                           
       <Directory /www/jkltest/htdocs>                                     
 38                                                                        
                                                                           
                                                                           
            Order Allow,Deny                                               
 39                                                                        
                                                                           
                                                                           
            Allow From all                                                 
 40                                                                        
                                                                           
                                                                           
            Options +ExecCGI                                               
 41                                                                        
                                                                           
                                                                           
       </Directory>                                                        
 42                                                                        
                                                                           
                                                                           
       <Directory /QSYS.LIB/NDSYSRQTST.LIB/>                               
 43                                                                        
                                                                           
                                                                           
            Order Allow,Deny                                               
 44                                                                        
                                                                           
                                                                           
            Allow From all                                                 
 45                                                                        
                                                                           
                                                                           
            Options +ExecCGI                                               
 46                                                                        
                                                                           
                                                                           
       </Directory>                                                        
 47                                                                        
                                                                           
                                                                           





I am about ready to pull my hair out, I have been working on this for a
week now.  Any help would be greatly appreciated!!

Thanks
Kara



As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.