[EMAIL PROTECTED] Rewriting as per-user-subdomains

2008-05-24 Thread Marcin 'Rambo' Roguski
Hi, I was given a task for configuring the server so that if one calls http://www.user.do.id.uw.edu.pl (yes, I know it's way too long- but on purpose) the server will silently rewrite the request so http://do.id.uw.edu.pl/~user/joomla/ will be given Wasn't a difficulty finding it in httpd docs,

Re: [EMAIL PROTECTED] Rewriting as per-user-subdomains

2008-05-24 Thread Marcin 'Rambo' Roguski
ServerAlias accepts wildcards, or just make sure all this mumbo-jumbo happens in the first virtualhost for a set of NameVirtualHosts's -- it will be the default. Sorry, false alarm- I knew I missed something- it was just that I didn't turn RewriteEngine explicitly on for the whole setup :),

Re: [EMAIL PROTECTED] Weird log message

2008-09-24 Thread Marcin 'Rambo' Roguski
Close, but no cigar. This is a multi-process apache waking up one of its children. http://wiki.apache.org/httpd/InternalDummyConnection OK, a variation to the question: I'm getting that annoying williams - - [24/Sep/2008:14:46:03 +0200] GET //gfx/arrow.gif HTTP/1.0 200 62 - williams - -

Re: [EMAIL PROTECTED] Weird log message

2008-09-24 Thread Marcin 'Rambo' Roguski
How to stop that? And not stop as ignore, but stop as have the server not do that (running 2.2.3 for the moment)? Stop google from indexing your site? http://www.robotstxt.org/faq/prevent.html LOL, funny :D Seriously though, while it's not an enormous load, dummy connections start creeping

Re: [EMAIL PROTECTED] NameVirtualHost versus VirtualHost documentation

2008-09-25 Thread Marcin 'Rambo' Roguski
NameVirtualHost directive allow multiple IP:Ports to be specified even though the documentation suggests otherwise? I guess you have proplem understanding what NameVirtualHost actually is. With this directive you basically ask the Apache to match the vhost from request made by client- if one

Re: [us...@httpd] Domain Masking (I think?)

2009-05-24 Thread Marcin 'Rambo' Roguski
Thus http://drew.mykitchentable.net/fatblog is just the URL to my WordPress installation. There is nothing being done by Apache. I believe that's the root of your problems: wordpress uses it's own URL rewriting scheme bypassing whatever the host system uses. you should check in wordpress

Re: [us...@httpd] Domain Masking (I think?)

2009-05-24 Thread Marcin 'Rambo' Roguski
Also, I just checked: in WP configuration that's blog's URL address. - 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,

Re: [us...@httpd] Canonical ignores port

2009-07-14 Thread Marcin 'Rambo' Roguski
SERVER_PORT gets value from ServerName no matter what value of UseCanonicalName is Workaround is to not set a port in ServerName Is this a bug? You're missing Port directive. - The official User-To-User support forum of

Re: [us...@httpd] pdf report generation - content type text/html

2009-11-03 Thread Marcin 'Rambo' Roguski
On Tue, 3 Nov 2009 14:20:27 -0500 b k bk4...@gmail.com wrote: Hi all, PDF reports are not being generated on any browser. [...]Any help would be greatly appreciated Send Content-Type: application/pdf or application/octet-stream from your PDF generator text/html is just plain wrong. --

Re: [us...@httpd] cannot install a SSL certificate : any idea folks ? Going nuts over SSL..

2009-11-16 Thread Marcin 'Rambo' Roguski
On Mon, 16 Nov 2009 12:48:36 -0800 sieger...@gmail.com sieger...@gmail.com wrote: *.abc.com as the common name from the CA. Can I still use the same key or is it a mismatch? Yes, although the wildcard for CN is not recommended, though not so unusual either.

[EMAIL PROTECTED] translation of address to one with GET varialble

2005-09-05 Thread Marcin 'Rambo' Roguski
Hi, I have an interesting problem to crack, and to be honest- for now it's beyond my abilities. Backstory: I have nice page with my computer collection with pictures, earlier they were downloaded as oridinary pictures, like http://rambo.id.uw.edu.pl/komputery/1_big.jpg , but since they have been

Re: [EMAIL PROTECTED] translation of address to one with GET varialble

2005-09-05 Thread Marcin 'Rambo' Roguski
RewriteEngine On RewriteRule ^/1_big.jpg$ /komputer.htm?nr=1 It did not work... I tried both this and regext for number Never say It did not work. on a technical mailing list. Explain exactly what happened, including excerpts from the log files. In the case of mod_rewrite, it is

Re: [us...@httpd] href=frag.phpfield=value gets error 404.

2009-12-05 Thread Marcin 'Rambo' Roguski
rag.php?field=value ? rather than - 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:

Re: [us...@httpd] HoloCMS

2009-12-26 Thread Marcin 'Rambo' Roguski
How can you get HoloCMS to work with apache. According to their website you just need a working PHP and database access. Then copy the CMS files to a directory served by Apache, create database and set up CMS to use it and you're set. -- Never let your sense of morals prevent you from doing

Re: [us...@httpd] output buffer

2009-12-29 Thread Marcin 'Rambo' Roguski
On Tue, 29 Dec 2009 13:25:29 -0800 Marc Fromm marc.fr...@wwu.edu wrote: I am receiving the Cannot send session cookie - headers already sent message even though I am using ob_start() at the top of my php script. This has nothing to do with Apache, the thing is that something in your php

Re: [us...@httpd] Updated Fedora 11 server on PPC and now site is down completely!

2010-01-10 Thread Marcin 'Rambo' Roguski
/home/optiplex-networks/links.php on line 17 [...] I'm not sure where the error lies. Can anyone help me? The error is exactly where the log tells you, line 17 in /home/optiplex-networks/links.php Most likely you were previously using php4.0 and now moved above 5 which is far more strict

Re: [us...@httpd] Updated Fedora 11 server on PPC and now site is down completely!

2010-01-10 Thread Marcin 'Rambo' Roguski
On Sun, 10 Jan 2010 22:15:31 +0200 Kaya Saman samank...@netscape.net wrote: /tr /table/div'; ? ^ try and tell... -- I sometimes think that God, in creating man, somewhat overestimated his ability. -- Oscar Wilde

Re: [us...@httpd] :Mod rewrite

2010-01-11 Thread Marcin 'Rambo' Roguski
Can it be done with RewriteRule. I'm new to Apache, kindly specify configuration. No, and it would be extremely big security hole to spoof a domain name. However you might just create a DNS CNAME record for the domain name and use it. --

Re: [us...@httpd] :Mod rewrite

2010-01-11 Thread Marcin 'Rambo' Roguski
Instead of display a dummy url : http://s1.ncs.com/inventoryappl spoofing DNS, I'm not at all sure what he was talking about From my understanding the question was if one can hide real url and display a fake one at users client (i.e. browser).

RE: [us...@httpd] :Mod rewrite

2010-01-11 Thread Marcin 'Rambo' Roguski
Marcin, I'm also curious about your statement about security hole when spoofing a domain name via mod-rewrite. Isn't mod-rewrite *all* about spoofing URL's (which can include domain name part)? As you mentioned, remapping is not the same as spoofing. Imagine someone's ability to send you back

RE: [us...@httpd] :Mod rewrite

2010-01-11 Thread Marcin 'Rambo' Roguski
Oops, sorry for unnecessary confusion then -- - 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:

Re: [us...@httpd] Very Very strange problem in opensuse 11.1, file uploading reports not an image file

2010-01-16 Thread Marcin 'Rambo' Roguski
On Sat, 16 Jan 2010 21:48:15 +0530 J. Bakshi joyd...@infoservices.in wrote: Dear list, that it simply reports Not an Image file. And this is happening with all files even with image ( jpg, bmp etc..) and with as small as 1KB and as big as 500KB. I have checked the log with Loglevel debug and

Re: [us...@httpd] Very Very strange problem in opensuse 11.1, file uploading reports not an image file

2010-01-16 Thread Marcin 'Rambo' Roguski
the files are not uploaded in the folder where they suppose to be. Please explain. So they ARE uploaded but in the wrong path? Or there's no folder? In latter case, the script should create the said folder by itself, or you need to create it manually. -- No guest is so welcome in a friend's

Re: [us...@httpd] Very Very strange problem in opensuse 11.1, file uploading reports not an image file

2010-01-16 Thread Marcin 'Rambo' Roguski
But no files are uploaded there at all. What about temporary files? Are they uploaded or not? From what you're writing, neither size or type are identified (should be set after a successful completion of POST request). Can you add print_r($GLOBALS['HTTP_POST_FILES']['profile_image']) in the

Re: [us...@httpd] Very Very strange problem in opensuse 11.1, file uploading reports 'not an image file'

2010-01-18 Thread Marcin 'Rambo' Roguski
Dnia 18 Stycznia 2010, 10:51, Pn, Krist van Besien napisaƂ(a): On Sat, Jan 16, 2010 at 5:18 PM, J. Bakshi joyd...@infoservices.in wrote: I can see the files are transferred but after that it simply reports Not an Image file. What is it here. Is this error message logged in a logfile

Re: [us...@httpd] wordpress server

2010-06-08 Thread Marcin 'Rambo' Roguski
Any ideas on what may be wrong in the configuration? This is really a Wordpress and not Apache question, but what the hay... http://codex.wordpress.org/Changing_The_Site_URL -- A man of genius makes no mistakes. His errors are volitional and are the portals of discovery. --

Re: [us...@httpd] 500 internal server error running php application

2010-09-03 Thread Marcin 'Rambo' Roguski
On Fri, 3 Sep 2010 09:26:52 -0700 (PDT) J Wilson troyinfor...@yahoo.com wrote: Actually the .htaccess files are ok I think, they are provided with Zen cart, what I need to do is follow instructions in their .htaccess files to set up apache for this particular domain. What about AllowOverride

Re: [us...@httpd] PHP Issue...

2010-12-05 Thread Marcin 'Rambo' Roguski
Anyway the real question is: Is there a way to have short tags turned on for one web site and turned off for another? Yes, either by php_flag short_open_tags on in .htaccess or separate php.ini for vhost. - The official

Re: [users@httpd] Have I Been Hacked?

2011-06-21 Thread Marcin 'Rambo' Roguski
direction. I received a MAILER-DAEMON 'Unable to deliver' message today. It seems a few emails were sent to a few addresses in my contact list, including my own, from my Yahoo email account. The content of the message was a link: Hawai'i, http://dockwise3.com/indexwww01X.php?dforum=u6i8

Re: [users@httpd] LogFormat Combined - many logfile lines with no Referer or User-agent

2011-07-28 Thread Marcin 'Rambo' Roguski
There doesn't seem to be any pattern to client IP address, browser, etc. I know for a fact, that certain browsers (most versions of IE for example), don't send referer when request is induced via JavaScript. Several firewalls strip these by default, too.

Re: [users@httpd] Streaming multimedia content

2011-09-10 Thread Marcin 'Rambo' Roguski
That url could be streaming mp3, ogg, or aac content. Instead of the browser in question streaming the content using it's media player, I'm instead prompted to download the file. If the browser asks user for action, the Content-Type header sent by icecast (not apache) is either missing, plain

Re: [users@httpd] Streaming multimedia content

2011-09-10 Thread Marcin 'Rambo' Roguski
On Sat, 10 Sep 2011 10:44:09 -0400 David Mehler dave.meh...@gmail.com wrote: Hi, I'm assuming the header is one that the browser doesn't understand, audio/mpeg is my guess. Is this solvable? Well, then you ask browser to handle audio file - it's up to plug-ins installed how it will do it.

Re: [users@httpd] Streaming multimedia content

2011-09-10 Thread Marcin 'Rambo' Roguski
On Sat, 10 Sep 2011 11:01:54 -0400 David Mehler dave.meh...@gmail.com wrote: Hi, I've never embedded a player on a page, how would I pull this off? This is not a http or apache related question, but what the heck: see here for example: -

Re: [users@httpd] httpd Will Not Start ....

2011-10-01 Thread Marcin 'Rambo' Roguski
OT maybe ... but what is lmgtfy.com - seems to be a cloaked proxy via godaddy to google cookies. No, it's a polite way to send asker to flipping google the question. - The official User-To-User support forum of the Apache

Re: [users@httpd] wbsite takes time to load

2011-10-13 Thread Marcin 'Rambo' Roguski
On Thu, 13 Oct 2011 11:54:47 +0200 Amira Othman a.oth...@cairosource.com wrote: Hi all I am using httpd-2.2.3-53.el5.vm on CentOS 5.6. i am new to apache .today when I tried to access my website I found that it takes too long time to load . First suspect: hostnamelookup is on and DNS

Re: [users@httpd] Modification Of Apache Login Prompt

2011-10-18 Thread Marcin 'Rambo' Roguski
On Tue, 18 Oct 2011 06:38:19 -0700 (PDT) Amol Puglia amolcpug...@yahoo.com wrote: Hello Team, I need help in modifying the apache login prompt. The login prompt isn't part of apache: it's either part of a web app or suppliet by browser in case of http authentication. Mentioning that prompt

Re: [users@httpd] Modification Of Apache Login Prompt

2011-10-18 Thread Marcin 'Rambo' Roguski
I would like to modify in such a way that if i click on cancel button it should not give me ERror 401 page. There is a way to modify the look by specifying errordocument for 401, if you want to beautify the response. - The

Re: [users@httpd] A CGI test program with a misterious error

2011-10-19 Thread Marcin 'Rambo' Roguski
sudo chmod +x file Shouldn't you add interpreter line as well? #!/bin/interpreter - 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

Re: [users@httpd] A CGI test program with a misterious error

2011-10-19 Thread Marcin 'Rambo' Roguski
Well, in Pascal, it's not possible since it was compiled. The log says apache is confused about the file alone The other issue I see is that your script don't output http headers - they should send at least Content-Type header.

Re: [users@httpd] Windows 7 httpd.conf setting saved after un-install

2011-10-19 Thread Marcin 'Rambo' Roguski
Can anyone explain the Windows Miracle? Because, really, I would like a clean httpd.conf file so I can start over. You need to escalate your rights to administrator, like running notepad as administrator. Otherwise window saves user copy of the file.

Re: [users@httpd] apache 2.2.16 deadly slow

2011-11-09 Thread Marcin 'Rambo' Roguski
still very very very slow Is HostnameLookups on? - 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:

Re: [users@httpd] can not send

2012-01-09 Thread Marcin 'Rambo' Roguski
On Mon, 9 Jan 2012 09:13:09 -0300 Luisa Ester Navarro luisaester2...@gmail.com wrote: you reject my messages Apparently not -- Marcin 'Rambo' Roguski ra...@id.uw.edu.pl - The official User-To-User support forum of the Apache

Re: [users@httpd] VLC web player does not work when using apache - please advise

2012-04-20 Thread Marcin 'Rambo' Roguski
I guess the player could not access the file. How to fix it? I am not Apache expert. Please advise. Have you checked paths (local vs. relative, plugin location, etc.) in the html file? -- Marcin 'Rambo' Roguski ra...@id.uw.edu.pl

Re: [users@httpd] Fwd: Black screen on Ubuntu Server 11.10

2012-05-07 Thread Marcin 'Rambo' Roguski
Nothing works fine (about power management). The machine launches fine the Java application but if I don't use the machine, a few minutes later, appears a black screen. I have assumed that screen has been disabled by Linux kernel. And that has to do with Apache... what exactly? Nowdays it's

Re: [users@httpd] RewriteCond backreference in virtualhost context

2012-08-17 Thread Marcin 'Rambo' Roguski
please read the docs, RewriteRule backreferences: These are backreferences of the form $N (0 = N = 9). You should read the docs, too. The keyword for you is: scope. You cannot backreference outside the actual rewrite rule, and the RewriteCond (i.e. the TRIGGER) is bogus at best, because

Re: [users@httpd] New PHP user requests your assistance.

2012-10-23 Thread Marcin 'Rambo' Roguski
I welcome and seek advice from those more experienced. Thank you. Wes Smith This is not a PHP forum but whatever, array keys should be used in parentheses unless there are statically declared variables used on purpose (in your code they're not). -- What ever happened to happily ever after?