Re: [users@httpd] Deny by IP address unsuccessful

2013-04-27 Thread Martin Hasicek
Just put allow from all to the bottom of configuration. You have order deny, allow so your config should look same :-) mh Sent from my iPhone On 27.4.2013, at 16:07, Angela Barone ang...@italian-getaways.com wrote: Hello, I hope I'm in the right place for this question. I'm trying to

Re: [users@httpd] Citrix behind Apache HTTP reverse proxy sever problem

2012-10-07 Thread Martin Hasicek
Hi after first look, configuration of apache looks fine. Please try to view source code of https://proxyserver.domain2.com/citrix/xenapp. Somewhere should be link, which is relative (like href=./citrix/...) or absolute (like href=https://proxyserver.domain2.com/citrix/...;). I expect, it is

Re: [users@httpd] Citrix behind Apache HTTP reverse proxy sever problem

2012-10-07 Thread Martin Hasicek
. then we go 4,5,6 exatcly as if we do not have any Apache reverse proxy! Client goes directly to Citrix gateway using ICA\SSL protocol. This is the main problem: Why Apache does not proxy ICA\SSL? 07.10.2012, 20:43, Martin Hasicek martin.hasi...@gmail.com: Hi after first look, configuration

Re: [users@httpd] Cant modify LD_LIBRARY_PATH

2012-04-06 Thread Martin Hasicek
Hi, try to use envvars to set Env ... Not sure, if this is what you want, but let's start somewhere :-) mh On Fri, Apr 6, 2012 at 8:40 PM, congo thomas apa...@thva.dk wrote: Friends, Please, if this is obvious and thats why no one responded, please hint me. I am thinking that

Re: [users@httpd] Apache configuration to catch any directory access

2012-03-29 Thread Martin Hasicek
Hi, maybe you can pipe out the output of log file to some script CustomLog |bin/doAcctionAfterDirectoryAccess common of course, you can customized logfile output (check CustomLog directive) and you can set action only for specific directory (check Directory and CustomLog directive). Hope this

Re: [users@httpd] Apache as Proxy in a LAN, behind a proxy

2012-03-27 Thread Martin Hasicek
Hi, I think, this part of documentation should be useful http://httpd.apache.org/docs/2.2/mod/mod_proxy.html mh On Tue, Mar 27, 2012 at 1:11 PM, Cristian Senchiu cri_...@yahoo.com wrote: Hi there, I hope that someone knows the answer to this. I'm in a LAN that's behind a squid proxy. Any

Re: [users@httpd] Unable to create or access scoreboard (anonymous shared memory failure)

2012-03-21 Thread Martin Hasicek
Hi, search for ScoreBoardFile directive in your configuration. When you will find it, please remove this file from your disk. After removal, apache will recreate this file again. Also please ensure, that apache runtime user has full access to this file. mh On Wed, Mar 21, 2012 at 4:47 PM,

Re: [users@httpd] Unable to create or access scoreboard (anonymous shared memory failure)

2012-03-21 Thread Martin Hasicek
: Hi, Martin, Thanks a lot for the response. But it does not work :-( T On Wed, Mar 21, 2012 at 1:01 AM, Martin Hasicek martin.hasi...@gmail.comwrote: Hi, search for ScoreBoardFile directive in your configuration. When you will find it, please remove this file from your disk. After

Re: [users@httpd] httpd crashes with segmentation fault: Incompatible libpng version in application and library

2012-03-19 Thread Martin Hasicek
Hi, you can check if you use prelink feature. In such case, LD_LIBRARY_PATH is overwriten by LD_PRELOAD or prelink. mh On Mon, Mar 19, 2012 at 1:55 PM, Lenin lenin@gmail.com wrote: I tried the directive LoadFile, but with no luck. Igor Cicimov icici...@gmail.com 於 2012年3月19日上午9:35 ��道:

Re: [us...@httpd] http-tomcat - AJP ilink receive failed - 500/503 errors

2010-09-17 Thread Martin Hasicek
Hi, you should try to telnet tomcat server from web server. telnet host port If the telnet is successful, you need to check configuration of mod_proxy_ajp. If the telnet will be not successful, you have network problem. mh Sent from my iPhone On 17.9.2010, at 18:18, Shantanu Pavgi

Re: [us...@httpd] Mythweb Access Forbidden

2010-08-25 Thread Martin Hasicek
Hi Mark, first, please send us error.log where is the 403 error. mh On Wed, Aug 25, 2010 at 6:05 PM, Mark Adams mada...@gmail.com wrote: I really hate to bother the group with this issue because my ignorance about apache access is so profound. But here goes. I was attempting to get mythweb

Re: [us...@httpd] Mythweb Access Forbidden

2010-08-25 Thread Martin Hasicek
Hi Mark, by directive DirectoryIndex you are enumerate files, which will be listed in case, when client will point only to dorectory. So in case that client will call http://mythweb/ apache will check existence of files enumerated by DirectoryIndex. If it is not able to find them, apache try to

Re: [us...@httpd] Mythweb Access Forbidden

2010-08-25 Thread Martin Hasicek
to go. I don't think I need DirectoryIndex because I dont' want a directory -- I want it to execute the mythweb.php script. Mark On Wed, Aug 25, 2010 at 10:15 AM, Martin Hasicek martin.hasi...@gmail.com wrote: Hi Mark, by directive DirectoryIndex you are enumerate files, which

Re: [us...@httpd] Mythweb Access Forbidden

2010-08-25 Thread Martin Hasicek
/tmpl/header.php. Am I a module short? Mar On Wed, Aug 25, 2010 at 10:26 AM, Martin Hasicek martin.hasi...@gmail.com wrote: Hi Mark, my sorry. My english is not so good :-) Try to look here: http://httpd.apache.org/docs/current/mod/mod_dir.html#directoryindex and after that find

Re: [us...@httpd] Mythweb Access Forbidden

2010-08-25 Thread Martin Hasicek
$headers[] = 'link rel=stylesheet type=text/css href=skins/errors.css'; // Print the page header require 'modules/_shared/tmpl/'.tmpl.'/header.php'; Mark On Wed, Aug 25, 2010 at 10:45 AM, Martin Hasicek martin.hasi...@gmail.com wrote: Hi Mark, now the apache is serving your page

Re: [us...@httpd] Invalid command includes/log.std', perhaps mis-spelled or defined by a module not included in the server configuration

2010-08-24 Thread Martin Hasicek
Hi, in front of each line, you should add Include directive. It is working like from httpd.conf Include somefile, from somefile Include somefile2, etc ... mh On Tue, Aug 24, 2010 at 9:55 AM, Amol Puglia amolcpug...@yahoo.com wrote: Hello Joost, It is a file which is loading all the

Re: [us...@httpd] 32 or 64 bit install

2010-08-19 Thread Martin Hasicek
httpd -V will show you the architecture type. Architecture: 64-bit for 32bit compilation you need all necessary libraries 32bit. I'm sure, that you will find lot of howto on google about cross compilation. Just hint, maybe you should use another httpd server as a loadbalancer with

[us...@httpd] 32bit module on 64bit Apache

2010-08-10 Thread Martin Hasicek
Hi, is there any way how to load 32bit module to 64bit httpd 2.2? Reason for asking such weird question, vendor is providing 3th party module only as 32bit version. I have all my web servers as 64bit. Because of count of servers (more than several hundreds), I don't like to start support 32bit