Re: Quick Question

2007-05-30 Thread Vegard Vesterheim
On Wed, 30 May 2007 22:02:11 -0700 (PDT) Alexander Burrows <[EMAIL PROTECTED]> wrote: > Ok I'm building a site that will have multiple domains pointing at it and > will pull a different template based on the domain. The problem I'm having > is I can't seem to remember for the life of me how to ge

Re: Quick Question

2007-05-30 Thread Alexander Burrows
That seems to just give me the ServerName from the conf file for Apache. I need the doamin the user requested. grigora wrote: > > Try > > $r->get_server_name(); > > Good luck. > > > > On 5/30/07, Alexander Burrows <[EMAIL PROTECTED]> wrote: >> >> >> Ok I'm building a site that will have mu

Re: Quick Question

2007-05-30 Thread Arshavir Grigorian
Try $r->get_server_name(); Good luck. On 5/30/07, Alexander Burrows <[EMAIL PROTECTED]> wrote: Ok I'm building a site that will have multiple domains pointing at it and will pull a different template based on the domain. The problem I'm having is I can't seem to remember for the life of me

Quick Question

2007-05-30 Thread Alexander Burrows
Ok I'm building a site that will have multiple domains pointing at it and will pull a different template based on the domain. The problem I'm having is I can't seem to remember for the life of me how to get $r->uri() to return the domain. I'm pushing my request objects to be Apache::Request object

Re: OffTopic - Apache::Session causes "signal Bus error (10)" on delete

2007-05-30 Thread Perrin Harkins
On 5/30/07, Jonathan Vanasco <[EMAIL PROTECTED]> wrote: has anyone encountered this before , and possibly have a clue as t what could be causing it ? Never seen it, but since Apache::Session is pure perl, that's probably not the problem. It may be having problems with your DBI/DBD, or with som

OffTopic - Apache::Session causes "signal Bus error (10)" on delete

2007-05-30 Thread Jonathan Vanasco
this is happening on one of my dev boxes. has anyone encountered this before , and possibly have a clue as t what could be causing it ? it happened out of nowhere, and I can't seem to track down which module is causing it.

[RELEASE CANDIDATE] libapreq 1.34-RC3

2007-05-30 Thread Issac Goldstand
The apreq developers are planning a maintenance release of libapreq1. This version primarily addresses an issue noted with FireFox 2.0 truncating file uploads in SSL mode. Additionally, the memory allocation algorithm for multipart requests has been improved. Please give the tarball at http://p

Re: problem calling a file under mod_perl2

2007-05-30 Thread Michael Peters
Jonathan Vanasco wrote: > in our setup, we do this: > > port 80:nginx > ports: 7000-9000modperl ( handlers assigned to individual ports ) Out of curiosity, why use a different port for each hander instead of just a different url? -- Michael Peters Developer Plus Three,

Re: problem calling a file under mod_perl2

2007-05-30 Thread Jonathan Vanasco
On May 29, 2007, at 11:46 AM, Clinton Gormley wrote: The only way I can think of would be to make a web request in PHP, so the PHP program does an HTTP request to your web server, to call the perl script, then does something with the data that is returned. Not optimal, but it may suit your nee