Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. NullTerminator

    {n,m} quantifiers ot work in awk

    I can't seem to get [0-9]{6,6} to match anything \d\d\d\d\d\d won't match either. Is the regex in gawk somewhat weak?
  2. NullTerminator

    CustomLog Not working in apache2.2.9 on ubuntu 8.10

    apache creates empty log file on startup but wo't write anything to it, defalt log is working LogFormat "%h %l %u %t \"%r\" %>s %b" common LogFormat "%{Referer}i -> %U" referer LogFormat "%{User-agent}i" agent CustomLog /var/log/apache2/jb_common common CustomLog /var/log/apache2/jb_referer...
  3. NullTerminator

    java web start how to load resources

    I am doing first JWS project. Application can run from a jar file, but for the "Help" function I use registered default browser to open the help.htm. How to bundle "loose" files with project, or do a loadAsResource from the jar and get it into the browser? new to jws, but generally strong in...
  4. NullTerminator

    starting vncserver as non-root loses menu bar

    When starting vncserver :1 as root on FC4 i get the full set of menus from kde When starting same as non-root the menu bar is blank. I get an error "No volume control elements and or devices found." I've even tried adding things to the menu bar, but they dont show up. here's my xstartup #...
  5. NullTerminator

    Long File Names in FC4 or RHES 3

    How long a file name is allowed in FC 4 or RHES 3.x NTFS supports 32 k in Unicode mode We are havng problems with long file names on deep path hierarchies in subversion. especially when subversion creates .svn folders and adds files within Thanks Jeb \0
  6. NullTerminator

    Looking for module Config::IniFiles 2.27

    Can't locate this module to support a Subversion commit-access-control.pl hook script. Any ideas? I did search cpan. There are some ini file wrappers, but not this one tnx Jeb
  7. NullTerminator

    Log Filters, SetEnvIf HTTP_STATUS 401

    I am setting up log filters. My logs get clogged with PROPFIND requests. I can filter them out, but if a PROPFIND returns a status of 401 I want to log it. # discard propfinds SetEnvIf Request_Method PROPFIND no_logging # discard pings from load balancer SetEnvIf Request_URI apache_pb\.gif$...
  8. NullTerminator

    How to glob an array of filenames

    I want to glob an array of filenames retrieved from a source control list command. The array contains a list of filenames with newlines. I could walk the list and pre chomp them, but how to feed them to glob and get the filtered list out to an array Tnx Jeb \0
  9. NullTerminator

    glob an array of filenames

    I want to glob an array of filenames retrieved from a source control list command. The array contains a list of filenames with newlines. I could walk the list and pre chomp them, but how to feed them to glob and get the filtered list out Tnx Jeb \0
  10. NullTerminator

    Function pointer to built in operators

    In other words, can I take the address of < , <=, etc Or would I have to do something with stl &std::operator<double> <(double, double) Eveentually I want to set up a map like typedef (*opPtr)(double, double); std::map< const char*, opPtr > operatorMap; operatorMap["LE"] =...
  11. NullTerminator

    Mod Perl Loaded but not processing scripts

    I've got modperl built into apache, and apsche says it is loaded, but the GATEWAY_INTERFACE still indicates plain CGI Please reference http://tek-tips.com/viewthread.cfm?qid=1224946&page=1 for details Thanks Jeb \0
  12. NullTerminator

    Mod_perl or /usr/bin/perl, how can I tell

    How can I tell if Apache is actually using mod_perl vs just executing using the perl binary. I don't have root access, but do have access to httpd.conf. There doesn't seem to be any script-handler directives in httpd.conf tnx Jeb
  13. NullTerminator

    PL/SQL to call external program

    Is it possible to have a stored procedure call out to execute an external (command line) program? Are there any canned libraries to help me do this? Running oracle 9i on Linux. Thanks Jeb \0
  14. NullTerminator

    mod_auth_ldap for users, flat file for groups

    We hope to user mod_auth_ldap to authenticate users, is it possible to use Require Group a_group where the groups are defined in a mod_auth style groups file? tnx Jeb Beasley \0
  15. NullTerminator

    mod_auth Can groups file include a group in a group

    Apache 2.0.54 mod_auth For a groups file like this readers: joe betty alan writers: mike alan admin: suresh samson power_user: vinay group.admin Can I include the admin group in the super_user group? Can group file "Include" another group file? Thanks Jeb Beasley \0
  16. NullTerminator

    Can end users update their own mod_auth passwords?

    I am setting up mod_auth to restrict access to various directories. How can I let the end users change their own password after the initial setup of their name in the users file. Is switching to mod_auth_mysql a better way and give them a web page to change it? tnx Jeb Beasley
  17. NullTerminator

    How to get client session info

    I would like to get the ip of the client session acessing the server. HOST_NAME() and USER HELP, but can we get more out of the session? Thanks NullT
  18. NullTerminator

    SSI using proxy, (INCLUDE Filter)

    I would like to process server side includes as content is being proxied. Is that posisble? Request from client comes to proxy. SSI embeds authetication token, passes to remote (3rd party) server. I don't want to embed authentication info at the client. I prefer to do it at the proxy, since...
  19. NullTerminator

    Directory Alias - how to pass credentials to a share

    apache running on server A, I want to alias a shared folder on server b using a unc in the directory tag. Is there any way I can pass credentias to access the share, or am I stuck with the credentials under which apache is running. Both boxes win2k. Alias /webdocs/ "//b/share$/docs/webdocs"...
  20. NullTerminator

    create cursor from non static statement

    I have the following set @crsTablesToProcess = cursor for select Table_Name from t_TableList_SalesNet2 where partition <>'no' I would like to have the following set @crsTablesToProcess = cursor for select Table_Name from @TableNamePassedAsArgument where partition...

Part and Inventory Search

Back
Top