active questions tagged apache - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T19:59:47Z http://stackoverflow.com/feeds/tag/apache http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1856246/using-url-contents-to-send-datapost-or-get-to-a-php-page 1 Using URL contents to send data(post or get) to a PHP page. deftonix 2009-12-06T19:05:24Z 2009-12-06T19:32:23Z <p>OK, I am creating a questionnaire application that is managed by a single user on /manage. There, he can create multiple questionnaires, each with a different name and set of settings(registered users, questions, data, etc.). Currently, the different tests are accessed by non-administrative users(the takers of the test) by going to /index.php?t=Questionnaire%20Name. Obviously, this is not the best interface to give to users. I would like for the users to be able to access that test by going to /QuestonnaireName. I feel like this could be done with mod-rewrite, but I don't know how to use it or where to start. I've coded the entire thing in JS, PHP, and MySQL. Any help is appreciated. Thanks.</p> http://stackoverflow.com/questions/1159867/replace-the-bundled-apache-and-php-installs-on-os-x-server-10-5 0 Replace the bundled Apache and PHP installs on OS X Server 10.5 Jeff Johnson 2009-07-21T15:16:35Z 2009-12-06T19:32:04Z <p>Is there any way to replace the bundled Apache and PHP install on OS X Server 10.5? I've got them installed separately at the moment, but it'd be nice if I could use the Server Admin tools with them. I know this is a long shot, but figured it's worth it.</p> http://stackoverflow.com/questions/1642778/how-can-i-configure-virtualhost-without-restarting-apache-web-server 1 How can I configure VirtualHost without restarting Apache web server? Sadat 2009-10-29T10:30:35Z 2009-12-06T16:10:58Z <p>I have mentioned here apache web server because i am using that one.</p> http://stackoverflow.com/questions/1855338/setting-a-default-apache-rewriterule-entry 0 Setting a default Apache RewriteRule entry Spoonface 2009-12-06T13:01:06Z 2009-12-06T13:10:18Z <p>I want to set a 'default' rewrite rule to catch anything that didn't match the previous rewrite entries. I've tried this:</p> <pre><code>RewriteRule ^(.*)/?$ index.php?url=$1 [L] </code></pre> <p>But the output returned is:</p> <pre><code>url = index.php </code></pre> <p>Ideally what I want is to attach all the GET values to 'url' so they will be saved to my web log. Anyone have any suggestions how to solve this?</p> http://stackoverflow.com/questions/970151/how-to-check-moddeflate-is-enabled-in-apache 0 how to check mod_deflate is enabled in apache? Shore 2009-06-09T13:38:20Z 2009-12-06T11:59:59Z <p>Is there such a command that can tell this?</p> http://stackoverflow.com/questions/538079/mod-rewrite-question-forwarding-parameters-to-new-parameter-names 0 Mod Rewrite Question - forwarding parameters to new parameter names Gooseman 2009-02-11T18:16:41Z 2009-12-06T09:59:59Z <p>Hi,</p> <p>I've tested the following Mod Rewrite on MAMP, but for some reason, it fails on LAMP. Any idea of what I am doing wrong?</p> <pre><code>RewriteEngine on RewriteCond %{QUERY_STRING} ^newParamA=(.*)&amp;newParamB=([0-9]*)$ RewriteRule ^newfolder/newsubfolder/$ oldfolder/oldsubfolder\.php?oldParamC=%1\&amp;oldParamD=%2 [QSA,L] </code></pre> <p>The idea is that a query such as</p> <pre><code>http://domain.com/newfolder/newsubfolder/?newParamA=query&amp;newParamB=111 </code></pre> <p>will successfully map to:</p> <pre><code>http://domain.com/oldfolder/oldsubfolder/?oldParamC=query&amp;oldParamD=111 </code></pre> http://stackoverflow.com/questions/185483/prevent-direct-access-to-a-php-page 5 Prevent direct access to a PHP page. SyaZ 2008-10-09T00:29:47Z 2009-12-06T06:59:15Z <p>How do I prevent my users from accessing directly pages meant for ajax calls only?</p> <p>Passing a key during ajax call seems like a solution, whereas access without the key will not be processed. But it is also easy to fabricate the key, no? Curse of View Source...</p> <p>p/s: Using Apache as webserver.</p> <p>EDIT: To answer why, I have jQuery ui-tabs in my index.php, and inside those tabs are forms with scripts, which won't work if they're accessed directly. Why a user would want to do that, I don't know, I just figure I'd be more user friendly by preventing direct access to forms without validation scripts.</p> http://stackoverflow.com/questions/43459/kerberos-user-authentication-in-apache 4 Kerberos user authentication in Apache Vagnerr 2008-09-04T10:32:16Z 2009-12-05T21:25:41Z <p>Hi,</p> <p>can anybody recommend some really good resources for how to get Apache authenticating users with Kerberos.</p> <p>Background reading on Kerberos would also be useful </p> <p>Thanks</p> <p>Peter</p> http://stackoverflow.com/questions/1033988/why-would-the-browser-cache-assets-images-js-etc-while-getting-but-re-reques 0 Why would the browser cache assets (images, js, etc.) while GETting but re-request everything after a POST + 302 redirect? Paul C 2009-06-23T17:28:26Z 2009-12-05T18:00:04Z <p>We've got our ETags and expiry headers setup properly and when browsing around the site without posting it is really very snappy. However, after any POST (which is almost invariably followed with a 302) you can see the browser re-request all the images. Is there something that could be causing this? Is there a setting that handles this?</p> http://stackoverflow.com/questions/1033909/redirect-301-www-www-example-com 3 Redirect 301 www.www.example.com Pedro 2009-06-23T17:10:24Z 2009-12-05T17:36:39Z <p>I'm using LAMP server, and I need to redirect requests like:</p> <p><strong>www.www.example.com to www.example.com and other variations like (wwww.example.com, etc)</strong></p> <p>I know I can do it in .htaccess, but I don't know the regular expression that I should use to represent all these possibilities.</p> <p>Or there is any diferent approach, comming from the vhosts?</p> http://stackoverflow.com/questions/945047/htaccess-not-working-modrewrite 1 .htaccess not working (mod_rewrite) Mike Curry 2009-06-03T14:22:00Z 2009-12-05T17:27:28Z <p>I have not having any luck getting my .htaccess with mod_rewrite working. Basically all I am trying to do is remove 'www' from "http://www.example.com" and "https://www.example.com".</p> <p>If there is anything I am missing (conf files, etc let me know I willl update this)</p> <p>Here is my .htaccess file (located @ /var/www/site/trunk/html/)</p> <pre><code>Options +FollowSymLinks RewriteEngine on RewriteCond %{HTTP_HOST} ^www\.(.*) [NC] RewriteRule (.*) //%1/$1 [L,R=301] </code></pre> <p>My mod_rewrite is enabled:</p> <pre><code>root@s15348441:/etc/apache2/mods-available# more rewrite.load LoadModule rewrite_module /usr/lib/apache2/modules/mod_rewrite.so </code></pre> <p>My apache config files:</p> <p>apache2.conf</p> <pre><code># # Based upon the NCSA server configuration files originally by Rob McCool. # # This is the main Apache server configuration file. It contains the # configuration directives that give the server its instructions. # See http://httpd.apache.org/docs/2.2/ for detailed information about # the directives. # # 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. # # The configuration directives are grouped into three basic sections: # 1. Directives that control the operation of the Apache server process as a # whole (the 'global environment'). # 2. Directives that define the parameters of the 'main' or 'default' server, # which responds to requests that aren't handled by a virtual host. # These directives also provide default values for the settings # of all virtual hosts. # 3. Settings for virtual hosts, which allow Web requests to be sent to # different IP addresses or hostnames and have them handled by the # same Apache server process. # # 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 "/var/log/apache2/foo.log" # with ServerRoot set to "" will be interpreted by the # server as "//var/log/apache2/foo.log". # ### Section 1: Global Environment # # The directives in this section affect the overall operation of Apache, # such as the number of concurrent requests it can handle or where it # can find its configuration files. # # # ServerRoot: The top of the directory tree under which the server's # configuration, error, and log files are kept. # # NOTE! If you intend to place this on an NFS (or otherwise network) # mounted filesystem then please read the LockFile documentation (available # at &lt;URL:http://httpd.apache.org/docs-2.1/mod/mpm_common.html#lockfile&gt;); # you will save yourself a lot of trouble. # # Do NOT add a slash at the end of the directory path. # ServerRoot "/etc/apache2" # # The accept serialization lock file MUST BE STORED ON A LOCAL DISK. # #&lt;IfModule !mpm_winnt.c&gt; #&lt;IfModule !mpm_netware.c&gt; LockFile /var/lock/apache2/accept.lock #&lt;/IfModule&gt; #&lt;/IfModule&gt; # # PidFile: The file in which the server should record its process # identification number when it starts. # This needs to be set in /etc/apache2/envvars # PidFile ${APACHE_PID_FILE} # # Timeout: The number of seconds before receives and sends time out. # Timeout 300 # # KeepAlive: Whether or not to allow persistent connections (more than # one request per connection). Set to "Off" to deactivate. # KeepAlive On # # MaxKeepAliveRequests: The maximum number of requests to allow # during a persistent connection. Set to 0 to allow an unlimited amount. # We recommend you leave this number high, for maximum performance. # MaxKeepAliveRequests 100 # # KeepAliveTimeout: Number of seconds to wait for the next request from the # same client on the same connection. # KeepAliveTimeout 15 ## ## Server-Pool Size Regulation (MPM specific) ## # prefork MPM # StartServers: number of server processes to start # MinSpareServers: minimum number of server processes which are kept spare # MaxSpareServers: maximum number of server processes which are kept spare # MaxClients: maximum number of server processes allowed to start # MaxRequestsPerChild: maximum number of requests a server process serves &lt;IfModule mpm_prefork_module&gt; StartServers 5 MinSpareServers 5 MaxSpareServers 10 MaxClients 150 MaxRequestsPerChild 0 &lt;/IfModule&gt; # worker MPM # StartServers: initial number of server processes to start # MaxClients: maximum number of simultaneous client connections # MinSpareThreads: minimum number of worker threads which are kept spare # MaxSpareThreads: maximum number of worker threads which are kept spare # ThreadsPerChild: constant number of worker threads in each server process # MaxRequestsPerChild: maximum number of requests a server process serves &lt;IfModule mpm_worker_module&gt; StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0 &lt;/IfModule&gt; # These need to be set in /etc/apache2/envvars User ${APACHE_RUN_USER} Group ${APACHE_RUN_GROUP} # # AccessFileName: The name of the file to look for in each directory # for additional configuration directives. See also the AllowOverride # directive. # AccessFileName .htaccess # # The following lines prevent .htaccess and .htpasswd files from being # viewed by Web clients. # &lt;Files ~ "^\.ht"&gt; Order allow,deny Deny from all &lt;/Files&gt; # # DefaultType is the default MIME type the server will use for a document # if it cannot otherwise determine one, such as from filename extensions. # If your server contains mostly text or HTML documents, "text/plain" is # a good value. If most of your content is binary, such as applications # or images, you may want to use "application/octet-stream" instead to # keep browsers from trying to display binary files as though they are # text. # DefaultType text/plain # # HostnameLookups: Log the names of clients or just their IP addresses # e.g., www.apache.org (on) or 204.62.129.132 (off). # The default is off because it'd be overall better for the net if people # had to knowingly turn this feature on, since enabling it means that # each client request will result in AT LEAST one lookup request to the # nameserver. # HostnameLookups Off # ErrorLog: The location of the error log file. # If you do not specify an ErrorLog directive within a &lt;VirtualHost&gt; # container, error messages relating to that virtual host will be # logged here. If you *do* define an error logfile for a &lt;VirtualHost&gt; # container, that host's errors will be logged there and not here. # ErrorLog /var/log/apache2/error.log # # LogLevel: Control the number of messages logged to the error_log. # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. # LogLevel warn # Include module configuration: Include /etc/apache2/mods-enabled/*.load Include /etc/apache2/mods-enabled/*.conf # Include all the user configurations: Include /etc/apache2/httpd.conf # Include ports listing Include /etc/apache2/ports.conf # # The following directives define some format nicknames for use with # a CustomLog directive (see below). # If you are behind a reverse proxy, you might want to change %h into %{X-Forwarded-For}i # LogFormat "%h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined LogFormat "%h %l %u %t \"%r\" %&gt;s %b" common LogFormat "%{Referer}i -&gt; %U" referer LogFormat "%{User-agent}i" agent # # ServerTokens # This directive configures what you return as the Server HTTP response # Header. The default is 'Full' which sends information about the OS-Type # and compiled in modules. # Set to one of: Full | OS | Minor | Minimal | Major | Prod # where Full conveys the most information, and Prod the least. # ServerTokens Full # # Optionally add a line containing the server version and virtual host # name to server-generated pages (internal error documents, FTP directory # listings, mod_status and mod_info output etc., but not CGI generated # documents or custom error documents). # Set to "EMail" to also include a mailto: link to the ServerAdmin. # Set to one of: On | Off | EMail # ServerSignature On # # Customizable error responses come in three flavors: # 1) plain text 2) local redirects 3) external redirects # # Some examples: #ErrorDocument 500 "The server made a boo boo." #ErrorDocument 404 /missing.html #ErrorDocument 404 "/cgi-bin/missing_handler.pl" #ErrorDocument 402 http://www.example.com/subscription_info.html # # # Putting this all together, we can internationalize error responses. # # We use Alias to redirect any /error/HTTP_&lt;error&gt;.html.var response to # our collection of by-error message multi-language collections. We use # includes to substitute the appropriate text. # # You can modify the messages' appearance without changing any of the # default HTTP_&lt;error&gt;.html.var files by adding the line: # # Alias /error/include/ "/your/include/path/" # # which allows you to create your own set of files by starting with the # /usr/share/apache2/error/include/ files and copying them to /your/include/path/, # even on a per-VirtualHost basis. The default include files will display # your Apache version number and your ServerAdmin email address regardless # of the setting of ServerSignature. # # The internationalized error documents require mod_alias, mod_include # and mod_negotiation. To activate them, uncomment the following 30 lines. # Alias /error/ "/usr/share/apache2/error/" # # &lt;Directory "/usr/share/apache2/error"&gt; # AllowOverride None # Options IncludesNoExec # AddOutputFilter Includes html # AddHandler type-map var # Order allow,deny # Allow from all # LanguagePriority en cs de es fr it nl sv pt-br ro # ForceLanguagePriority Prefer Fallback # &lt;/Directory&gt; # # ErrorDocument 400 /error/HTTP_BAD_REQUEST.html.var # ErrorDocument 401 /error/HTTP_UNAUTHORIZED.html.var # ErrorDocument 403 /error/HTTP_FORBIDDEN.html.var # ErrorDocument 404 /error/HTTP_NOT_FOUND.html.var # ErrorDocument 405 /error/HTTP_METHOD_NOT_ALLOWED.html.var # ErrorDocument 408 /error/HTTP_REQUEST_TIME_OUT.html.var # ErrorDocument 410 /error/HTTP_GONE.html.var # ErrorDocument 411 /error/HTTP_LENGTH_REQUIRED.html.var # ErrorDocument 412 /error/HTTP_PRECONDITION_FAILED.html.var # ErrorDocument 413 /error/HTTP_REQUEST_ENTITY_TOO_LARGE.html.var # ErrorDocument 414 /error/HTTP_REQUEST_URI_TOO_LARGE.html.var # ErrorDocument 415 /error/HTTP_UNSUPPORTED_MEDIA_TYPE.html.var # ErrorDocument 500 /error/HTTP_INTERNAL_SERVER_ERROR.html.var # ErrorDocument 501 /error/HTTP_NOT_IMPLEMENTED.html.var # ErrorDocument 502 /error/HTTP_BAD_GATEWAY.html.var # ErrorDocument 503 /error/HTTP_SERVICE_UNAVAILABLE.html.var # ErrorDocument 506 /error/HTTP_VARIANT_ALSO_VARIES.html.var # Include of directories ignores editors' and dpkg's backup files, # see README.Debian for details. # Include generic snippets of statements Include /etc/apache2/conf.d/ # Include the virtual host configurations: Include /etc/apache2/sites-enabled/ </code></pre> <p>My default config file for www on apache</p> <pre><code>NameVirtualHost *:80 &lt;VirtualHost *:80&gt; ServerAdmin info@example.com #SSLEnable #SSLVerifyClient none #SSLCertificateFile /usr/local/ssl/crt/public.crt #SSLCertificateKeyFile /usr/local/ssl/private/private.key DocumentRoot /var/www/site/trunk/html &lt;Directory /&gt; Options FollowSymLinks AllowOverride all &lt;/Directory&gt; &lt;Directory /var/www/site/trunk/html&gt; Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny allow from all &lt;/Directory&gt; ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ &lt;Directory "/usr/lib/cgi-bin"&gt; AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all &lt;/Directory&gt; ErrorLog /var/log/apache2/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn CustomLog /var/log/apache2/access.log combined ServerSignature On Alias /doc/ "/usr/share/doc/" &lt;Directory "/usr/share/doc/"&gt; Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 &lt;/Directory&gt; &lt;/VirtualHost&gt; </code></pre> <p>My ssl config file</p> <pre><code>NameVirtualHost *:443 &lt;VirtualHost *:443&gt; ServerAdmin info@example.com #SSLEnable #SSLVerifyClient none #SSLCertificateFile /usr/local/ssl/crt/public.crt #SSLCertificateKeyFile /usr/local/ssl/private/private.key DocumentRoot /var/www/site/trunk/html &lt;Directory /&gt; Options FollowSymLinks AllowOverride all &lt;/Directory&gt; &lt;Directory /var/www/site/trunk/html&gt; Options Indexes FollowSymLinks MultiViews AllowOverride all Order allow,deny allow from all &lt;/Directory&gt; ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ &lt;Directory "/usr/lib/cgi-bin"&gt; AllowOverride None Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch Order allow,deny Allow from all &lt;/Directory&gt; ErrorLog /var/log/apache2/error.log # Possible values include: debug, info, notice, warn, error, crit, # alert, emerg. LogLevel warn SSLEngine On SSLCertificateFile /usr/local/ssl/crt/public.crt SSLCertificateKeyFile /usr/local/ssl/private/private.key CustomLog /var/log/apache2/access.log combined ServerSignature On Alias /doc/ "/usr/share/doc/" &lt;Directory "/usr/share/doc/"&gt; Options Indexes MultiViews FollowSymLinks AllowOverride None Order deny,allow Deny from all Allow from 127.0.0.0/255.0.0.0 ::1/128 &lt;/Directory&gt; &lt;/VirtualHost&gt; </code></pre> <p>My /etc/apache2/httpd.conf is blank</p> <p>The directory /etc/apache2/conf.d has nothing in it but one file (charset)</p> <p>contents of /etc/apache2/conf.dcharset</p> <pre><code># Read the documentation before enabling AddDefaultCharset. # In general, it is only a good idea if you know that all your files # have this encoding. It will override any encoding given in the files # in meta http-equiv or xml encoding tags. #AddDefaultCharset UTF-8 </code></pre> <p>My apache error.log</p> <pre><code>[Wed Jun 03 00:12:31 2009] [error] [client 216.168.43.234] client sent HTTP/1.1 request without hostname (see RFC2616 section 14.23): /w00tw00t.at.ISC.SANS.DFind:) [Wed Jun 03 05:03:51 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 05:03:54 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 05:13:48 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 05:13:51 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 05:13:54 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 05:13:57 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 05:17:28 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 05:26:23 2009] [notice] caught SIGWINCH, shutting down gracefully [Wed Jun 03 05:26:34 2009] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g configured -- resuming normal operations [Wed Jun 03 06:03:41 2009] [notice] caught SIGWINCH, shutting down gracefully [Wed Jun 03 06:03:51 2009] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g configured -- resuming normal operations [Wed Jun 03 06:25:07 2009] [notice] caught SIGWINCH, shutting down gracefully [Wed Jun 03 06:25:17 2009] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g configured -- resuming normal operations [Wed Jun 03 12:09:25 2009] [error] [client 61.139.105.163] File does not exist: /var/www/site/trunk/html/fastenv [Wed Jun 03 15:04:42 2009] [notice] Graceful restart requested, doing restart [Wed Jun 03 15:04:43 2009] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g configured -- resuming normal operations [Wed Jun 03 15:29:51 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 15:29:54 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 15:30:32 2009] [error] [client 99.247.237.46] File does not exist: /var/www/site/trunk/html/favicon.ico [Wed Jun 03 15:45:54 2009] [notice] caught SIGWINCH, shutting down gracefully [Wed Jun 03 15:46:05 2009] [notice] Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.6 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g configured -- resuming normal operations </code></pre> http://stackoverflow.com/questions/937043/newly-installed-apache-serving-html-content-as-text 0 newly installed apache serving html content as text udit 2009-06-01T22:06:08Z 2009-12-05T17:23:10Z <p>I am running an Apache instance on Ubuntu and am having this problem: .HTML files with bonafide HTML inside is being served as a text file:</p> <pre><code>&gt; **For eg. &lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"&gt; &lt;html&gt; &gt; &lt;body&gt; &lt;h1&gt;Index to Butterthlies &gt; Catalogs&lt;/h1&gt; </code></pre> <p>etc. etc.**</p> <p>I checked the header in firebug and sure enough the page is <code>plain\text</code>. I figured I'm probably missing the <code>mod_mime</code> module, so I tried to include it as a module like this:</p> <pre><code>LoadModule mod_mime /usr/lib/apache2/modules/mod_mime.so TypesConfig conf/mime.types </code></pre> <p>where the <code>/usr/lib</code>... path contains the <code>mod_mime.so</code>. But this doesn't work and gives the following error:</p> <blockquote> <p>Syntax error on line 1 of /usr/www/APACHE3/site.first/conf/httpd.conf: Can't locate API module structure `mod_mime' in file /usr/lib/apache2/modules/mod_mime.so: /usr/lib/apache2/modules/mod_mime.so: undefined symbol: mod_mime</p> </blockquote> http://stackoverflow.com/questions/1852214/apache-fop-for-net-locks-external-graphic-image-can-i-force-it-to-close-the-re 0 Apache Fop for .NET locks external-graphic image - can I force it to close the references? Christopher Morley 2009-12-05T13:36:56Z 2009-12-05T13:36:56Z <p>Something in Apache FOP is locking modify/delete file access rights.</p> <p>Here is the situation..</p> <p>First, there is a gif file on disk, in a certain location in my web application structure, but more importantly, in a certain physical location on the drive.</p> <p>In the xsl stylesheet, the gif is referenced by absolute physical path through the XSL FO element external-graphic and given a url with preceded by file:///c:/etc. Like this from the input xml: </p> <pre><code>&lt;logoLocationOnDisk&gt;file:///c:/path/to/file.gif&lt;/logoLocationOnDisk&gt; </code></pre> <p>and this in the xsl:</p> <pre><code>&lt;fo:external-graphic src="{//logoLocationOnDisk}" width="20mm" height="20mm" scaling="uniform"/&gt; </code></pre> <p>Btw, I'm generating a PDF. The good news is that the PDF does get the image permanently embedded in it.</p> <p>The bad news is that after the transformation is complete, and all of the objects I called on to do the transformation have been nulled out, something down in either Apache Fop or the J# dll retains a lock on the gif file. What is strange about the file lock is that it is not found by Process Explorer. When I try to delete the gif file, Vista says that the action cannot be completed because another program is using it.</p> <p>But, exiting the test harness (pressing Stop in Visual Studio) releases the lock, and the file deletes fine after that.</p> <p>Now, the transformation that is performed on the stylesheet is a compiled one, which I think might have something to do with why it is claiming "use" of the image. I'm thinking it does not want to let go of the image because it might need it in the future? IDK, I have tried looking at everything that I can call into in the Apache classes, reset, delete temp files, everything.</p> <p>I believe that I am closing all streams and writers correctly.</p> <p>How do I tell it to "really clean up"?</p> <p>Also, is there a way that I could trace with VS2008 or another tool, what really holds a lock on the file, and determine why it is holding on?</p> <p>The original model for what we are doing is here, however we have changed things slightly from this. Perhaps I have introduced a bug. My next step is to go back to the original code and see if the image file gets locked if referenced by xsl via external-graphic. My strong suspicion is that it will stay locked. We'll see.</p> <p>Does anyone know the answer just from experience doing this sort of thing? </p> <p>Is it possible to have there not be any kind of lock on the logo image gif once the transformation is completed.</p> <p>If there is a way, I'll do that, because it will smooth project deployment.</p> <p>If there is no way, then I can live with it by taking the gif image out of the deployment, and saying that it is just going to sit somewhere else on disk.</p> <p>(As an aside, the only reason I noticed the problem was re-release of my project, and that gif was the only thing locking/blocking everything else, and it was a culprit twice in a row.)</p> <p>As I said, reproduced in test environment, there's a death grip on the gif every time until application exits.</p> <p>Another thing of note is that on 64 bit machines, such as my own, one has to build for 32 bit and allow iis to run 32 bit code.</p> <p>Here is some further context: <a href="http://www.codelathe.com/blog/index.php/2009/02/28/generate-pdf-from-cnet/" rel="nofollow">http://www.codelathe.com/blog/index.php/2009/02/28/generate-pdf-from-cnet/</a> <a href="http://www.codelathe.com/blog/wp-content/uploads/2009/02/csharpcode.txt" rel="nofollow">http://www.codelathe.com/blog/wp-content/uploads/2009/02/csharpcode.txt</a></p> http://stackoverflow.com/questions/1635995/django-wsgi-refreshing-issues 0 Django + WSGI: Refreshing Issues? Mark 2009-10-28T09:06:04Z 2009-12-05T02:38:08Z <p>I'm developing a Django site. I'm making all my changes on the live server, just because it's easier that way. The problem is, every now and then it seems to like to cache one of the *.py files I'm working on. Sometimes if I hit refresh a lot, it will switch back and forth between an older version of the page, and a newer version.</p> <p>My set up is more or less like what's described in the Django tutorials: <a href="http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/#howto-deployment-modwsgi" rel="nofollow">http://docs.djangoproject.com/en/dev/howto/deployment/modwsgi/#howto-deployment-modwsgi</a></p> <p>I'm <em>guessing</em> it's doing this because it's firing up multiple instances of of the WSGI handler, and depending on which handler the the http request gets sent to, I may receive different versions of the page. Restarting apache seems to fix the problem, but it's annoying.</p> <p>I really don't know much about WSGI or "MiddleWare" or any of that request handling stuff. I come from a PHP background, where it all just works :)</p> <p>Anyway, what's a nice way of resolving this issue? Will running the WSGI handler is "daemon mode" alleviate the problem? If so, how do I get it to run in daemon mode?</p> http://stackoverflow.com/questions/1850297/when-should-i-use-apacheapache-or-nobodynobody-on-my-web-server-files 0 when should I use "apache:apache" or "nobody:nobody" on my web server files? dreftymac 2009-12-04T23:15:33Z 2009-12-04T23:34:05Z <p><strong>Background:</strong> I remember at my old place of employment how the web server admin would always make me change the httpd-accessible file upload directories so that they were owned by apache:apache or nobody:nobody.</p> <p>He said this was for security reasons.</p> <p><strong>Question:</strong> Can you tell me what specifically were the security implications of this? Also is there a way to get apache to run as nobody:nobody, and are there security implications for that as well?</p> <p>TIA</p> http://stackoverflow.com/questions/1846034/apache-with-jboss-using-ajp-modjk-giving-spikes-in-thread-count 0 Apache with JBOSS using AJP (mod_jk) giving spikes in thread count. Beginner 2009-12-04T10:11:49Z 2009-12-04T22:57:30Z <p>We used Apache with JBOSS for hosting our Application, but we found some issues related to thread handling of mod_jk. </p> <p>Our website comes under low traffic websites and has maximum 200-300 concurrent users during our website's peak activity time. As the traffic grows (not in terms of concurrent users, but in terms of cumulative requests which came to our server), the server stopped serving requests for long, although it didn't crash but could not serve the request till 20 mins. The JBOSS server console showed that 350 thread were busy on both servers although there was enough free memory say, more than 1-1.5 GB (2 servers for JBOSS were used which were 64 bits, 4 GB RAM allocated for JBOSS)</p> <p>In order to check the problem we were using JBOSS and Apache Web Consoles, and we were seeing that the thread were showing in S state for as long as minutes although our pages take around 4-5 seconds to be served. </p> <p>We took the thread dump and found that the threads were mostly in WAITING state which means that they were waiting indefinitely. These threads were not of our Application Classes but of AJP 8009 port. </p> <p>Could somebody help me in this, as somebody else might also got this issue and solved it somehow. In case any more information is required then let me know.</p> <p>Also is mod_proxy better than using mod_jk, or there are some other problems with mod_proxy which can be fatal for me if I switch to mod__proxy?</p> <p>The versions I used are as follows:</p> <pre><code>Apache 2.0.52 JBOSS: 4.2.2 MOD_JK: 1.2.20 JDK: 1.6 Operating System: RHEL 4 </code></pre> <p>Thanks for the help.</p> http://stackoverflow.com/questions/1688261/zend-community-server-very-slow-on-first-request-with-os-x-10-6 0 zend community server very slow on first request with OS X 10.6 BG 2009-11-06T15:18:50Z 2009-12-04T22:02:20Z <p>I have installed Zend CE 4.0.5 for php 5.3 on my Mac Book Pro running Snow Leopard osx 10.6. </p> <p>I use this setup for my local development environment. </p> <p>When I haven't done a request in a while ( > 20 mins) or after a reboot, the first request takes quite some time to respond. Maybe 45 seconds. After that initial lagged request it acts as expected, replying with web-pages very quickly.</p> <p>To try and fix the problem I have so far set the directive "HostnameLookups Off" in /usr/local/zend/apache2/conf/httpd.conf. It hasn't helped.</p> <p>Any thoughts?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1849421/does-php-procnice-leave-apache-threads-at-new-priority-setting 0 Does PHP proc_nice leave Apache threads at new priority setting? ChronoFish 2009-12-04T20:22:21Z 2009-12-04T20:27:51Z <p>When executing proc_nice(), is it actually nice'ing Apache's thread?</p> <p>If so, and if the current user (non-super user) can't renice to its original priority is killing the Apache thread appropriate (apache_child_terminate) on an Apache 2.0x server?</p> <p>The issue is that I am trying to limit the impact of an app that allows the user to run Ad-Hack queries. The Queries can be massive and the resultant transform on the data requires a lot of Memory and CPU.</p> <p>I've already re-written the process to be more stream based - helping with the memory consumption, but I would also like the process to run a lower priority. However I can't leave the Apache thread in low priority as we have a lot of high-priority web services running on this same box.</p> <p>TIA</p> http://stackoverflow.com/questions/1849098/modalias-subdirectory-replacement 0 mod_alias subdirectory replacement Paul 2009-12-04T19:23:39Z 2009-12-04T19:44:13Z <p>I am using RewriteMatch to redirect all traffic from subdir1 to subdir2, while keeping all other parts of the url the same. So for instance, </p> <pre><code>http://www.mydomain.com/subdir1/ </code></pre> <p>would redirect to </p> <pre><code>http://www.mydomain.com/subdir2/ </code></pre> <p>I am using this rule:</p> <pre><code>RedirectMatch 302 /subdir1/.* /subdir2/$1 </code></pre> <p>which works for the url </p> <pre><code>http://www.mydomain.com/subdir1/ </code></pre> <p>but not for any pages with longer urls. So it is not matching</p> <pre><code>http://www.mydomain.com/subdir1/index.htm </code></pre> <p>which should be redirected to</p> <pre><code>http://www.mydomain.com/subdir2/index.htm </code></pre> <p>If anyone has any ideas, I'd appreciate it.</p> http://stackoverflow.com/questions/1846503/protect-specific-url-with-htaccess 0 protect specific url with .htaccess Overbeeke 2009-12-04T11:55:07Z 2009-12-04T12:00:27Z <p>I have a central script 'web' in the root of my site that handles everything. In the .htaccess the following lines tell appache to handle 'web' as a php file:</p> <pre><code>&lt;Files web&gt; ForceType application/x-httpd-php &lt;/Files&gt; </code></pre> <p>The script 'web' splits the REQUEST_URI in parts so it can generate the right page: <a href="http://www.mysite.com/web/var1/var2/var3" rel="nofollow">http://www.mysite.com/web/var1/var2/var3</a> calls 'web' and the script receives var1, var2 and var3. </p> <p>What i want to do is protect a certain part of the site with .htaccess so that <a href="http://www.mysite.com/web/login" rel="nofollow">http://www.mysite.com/web/login</a> results in a login-screen. But there is no directory 'login' in which i can put the .htaccess and .htpasswd.</p> <p>Can this be done?</p> http://stackoverflow.com/questions/1845981/how-to-stop-apache-from-listing-the-contents-of-my-user-directories 1 How to stop Apache from listing the contents of my user directories Jon Winstanley 2009-12-04T09:59:20Z 2009-12-04T10:17:44Z <p>I recently ran some <strong>penetration testing software</strong> on my web site and was surprised for it to report that one of my directory listings was publicly accessible.</p> <p>It is the directory of the root user which is available.</p> <p><a href="http://www.example.com/~root/" rel="nofollow">http://www.example.com/~root/</a></p> <p>Results in this page content:</p> <pre><code>Index of /~root * Parent Directory * cgi-bin/ </code></pre> <p><em>Platform: I am creating PHP websites, with Symfony on Linux with Apache.</em></p> <p><strong>Is this something that I can configure through Apache?</strong></p> http://stackoverflow.com/questions/1845371/convert-rtf-files-to-doc 0 Convert RTF files to DOC stanley 2009-12-04T07:21:14Z 2009-12-04T07:28:23Z <p>I generate a report in doc format using Jasper, Jasper uses JRRTFExporter to generate doc reports, but wen i try and compare doc reports using POI it throws exception stating some header issues. Is there any way to convert rtf to doc in jasper or any API available to convert rtf to doc? Please help!</p> http://stackoverflow.com/questions/1844623/what-is-the-format-of-an-authtkt-cookie 0 What is the format of an auth_tkt cookie? joeforker 2009-12-04T03:17:57Z 2009-12-04T03:17:57Z <p>The Apache module <code>auth_tkt</code> creates authentication cookies that can be verified cryptographically. What is the specification for an <code>auth_tkt</code> cookie?</p> http://stackoverflow.com/questions/1843854/system-data-sqlclient-used-in-system-data 0 System.Data.SqlClient used in System.Data? RooSoft 2009-12-03T23:32:23Z 2009-12-04T00:18:37Z <p>I have had that weird error this afternoon... I cannot figure out why System.Data could rely on System.Data.SqlClient.</p> <p>This happens in Mono under Linux, and I do not rely on SQL Server at all, by the way...</p> <p>Oh! It says that it's only a warning but the compiler stops doing it job anyway.</p> <blockquote> <p>Compilation Error</p> <p>Description: Error compiling a resource required to service this request. Review your source file and modify it to fix this error.</p> <p>Compiler Error Message: : ** (/usr/local/lib/mono/2.0/gmcs.exe:8658): WARNING **: The class System.Data.SqlClient.SortOrder could not be loaded, used in System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ~/Global.asax</p> </blockquote> http://stackoverflow.com/questions/1132773/apache-svn-and-modpython 0 Apache, SVN and mod_python Simon D 2009-07-15T17:26:40Z 2009-12-03T23:00:02Z <p>We are using Apache 2.2 to server SVN (1.6.2) repositories on Windows. We use SSPI for authentication, and that's working. We have a number of different repositories, and use SVNParentPath in the httpd.conf to serve them. Something like:</p> <pre><code>&lt;Location /&gt; DAV svn SVNParentPath c:\repos [SSPI stuff] &lt;/Location&gt; </code></pre> <p>So from a client I can browse to <a href="http://svn/repo1" rel="nofollow">http://svn/repo1</a> or <a href="http://svn/repo2" rel="nofollow">http://svn/repo2</a> (whatever repos are in c:\repos) and then see what's in the repositories.</p> <p>However I now want to use mod_python to run python scripts in another URL, say <a href="http://svn/mpinfo" rel="nofollow">http://svn/mpinfo</a> .</p> <p>I've tried adding a new location at the end of httpd.conf as follows:</p> <pre><code>&lt;Location /mpinfo&gt; SetHandler mod_python PythonHandler mod_python.testhandler &lt;/Location&gt; </code></pre> <p>as suggested at <a href="http://www.modpython.org/live/current/doc-html/inst-trouble.html" rel="nofollow">http://www.modpython.org/live/current/doc-html/inst-trouble.html</a> . However when I browse to <a href="http://svn/mpinfo" rel="nofollow">http://svn/mpinfo</a> I get the following error:</p> <pre><code>&lt;D:error&gt; &lt;C:error/&gt; &lt;m:human-readable errcode="720003"&gt; Could not open the requested SVN filesystem &lt;/m:human-readable&gt; &lt;/D:error&gt; </code></pre> <p>If I change the location / url of the repositories to, for example, /svn, then I can browse to <a href="http://svn/mpinfo" rel="nofollow">http://svn/mpinfo</a> .</p> <p><strong>Question:</strong></p> <p>Is there anyway to have the repositories accessible from <a href="http://svn/reponame" rel="nofollow">http://svn/reponame</a>, but to have a special directory <a href="http://svn/mpinfo/" rel="nofollow">http://svn/mpinfo/</a> not parsed by svn, but instead parsed by mod_python.</p> http://stackoverflow.com/questions/1843218/can-i-use-suns-opensso-apache-webagent-to-integrate-to-a-ca-siteminder-policy-se 0 Can I use Sun's OpenSSO Apache WebAgent to integrate to a CA SiteMinder Policy Server? Mark Fruhling 2009-12-03T21:56:53Z 2009-12-03T21:56:53Z <p>The official Web Agents user documentation does not state what version of SAML is supported. I am trying to integrate this with a Policy Server that is not running Sun's OpenSSO policy server, so my only requirement is to support SAML 2.0. Has anyone had experience with this type of setup?</p> http://stackoverflow.com/questions/1842939/parse-apache-log-in-ansi-c 1 Parse Apache Log in Ansi C Mike Curry 2009-12-03T21:09:58Z 2009-12-03T21:25:45Z <p>Does anyone have a snippit of code to parse apache2 logs with ANSI C?</p> http://stackoverflow.com/questions/1840060/what-is-called-defer-node-expansion-in-xml 1 What is called defer-node-expansion in XML? Sri Kumar 2009-12-03T14:07:54Z 2009-12-03T20:59:19Z <p>Hello All,</p> <p>What this feature "http://apache.org/xml/features/dom/defer-node-expansion" does?</p> <p>i have read about this <a href="http://xerces.apache.org/xerces-j/features.html" rel="nofollow">feature</a>. But was really unable to understand what will happen if this is set to false. </p> <p>Can anyone come up elaborately on this as i don't find any other link that explain to the ability i understand.</p> http://stackoverflow.com/questions/1839989/relative-root-paths-on-apache-cpanel-php-shared-hosting 0 Relative / Root paths on apache / cpanel / php shared hosting donkeykong 2009-12-03T13:54:49Z 2009-12-03T19:33:31Z <p>Hi all.</p> <p>I am trying to deploy a php / codeigniter project to a shared hosting environment. Locally I am running MAMP and all my paths are referenced thus:-</p> <pre><code>background:transparent url(/img/myimj.jpg) left top no-repeat; </code></pre> <p>When I deploy the shared host, these links do not work and to resolve them I need to add "../". Changing all these references alone would be tiresome. but codeigniter paths are also affected and I want to understand how I can have the same mapping as my local instance of MAMP apache.</p> <p>Not being well versed in apache, I do not know how to resolve this issue. I am using the root public_html folder that has been mapped to my user. Is it possible to use a rewrite rule in a .htaccess to do this?</p> <p>Thanks for your time.</p> http://stackoverflow.com/questions/1841711/how-to-add-mime-type-for-video-element-on-firefox 2 How to add mime-type for <video> element on Firefox ? pierre-guillaume-degans 2009-12-03T17:56:26Z 2009-12-03T19:10:47Z <p>Hi everybody,</p> <p>Into <a href="http://media.pianotage.com/video/" rel="nofollow">this dir</a> there are :</p> <ul> <li>OGV video (Theora/Vorbis) for Firefox</li> <li>MP4 video (H264/AAC) for Safari</li> <li>FLV video with a flash player (player.swf) for others browsers</li> <li>a template.html which contains a snippet coming from <a href="http://camendesign.com/code/video%5Ffor%5Feverybody#video-code" rel="nofollow">Video for everybody</a></li> <li>a .htaccess to add the new types of video</li> </ul> <p>Locally the video is correctly displayed on <em>all</em> browsers. But online Firefox doesn't display the video and ask for a download. Though the mime-type is correctly set in my .htaccess.</p> <p>Any idea to fix this problem on Firefox ? (I use 3.5.3 release on Windows).</p> <p>Thank you. :)</p> <p>Note: it sounds that this problem doesn't appear on Ubuntu.</p> <p><strong>Edit</strong> : my Firefox installation was bugged. Now it's working correctly. Thank you Rudism. :)</p>