Re: Dreamweaver MX and Embperl?

2003-01-22 Thread Luiz Fernando B. Ribeiro
This erros occurs if the MMDocumentType.xml contains duplicated entries in the extensions attribute over different server models. Send me a copy of your file. Regards, Luiz Fernando B. Ribeiro Engenho Soluções para a Internet Em Tue, 21 Jan 2003 14:34:57 -0500 "Noel King" <[EMAIL PROTECTED]> e

Re: Dreamweaver MX and Embperl?

2003-01-22 Thread Luiz Fernando B. Ribeiro
You have to backup your original files outside the original folders since DW scans them for xml files. I think that should solve your issues. Regards, Luiz Fernando B. Ribeiro Engenho Soluções para a Internet Em Tue, 21 Jan 2003 14:34:57 -0500 "Noel King" <[EMAIL PROTECTED]> escreveu: > The f

embedded perl and Interstage IPP

2003-01-22 Thread Jagmohan_Bhatia
Hi, We are trying to port an existing application working on Apache to Interstages' IPP(Infoprovider Pro). The problem is that though we've managed to get mod perl examples running on IPP, we are at our wits end to figure out as to how embedded perl could be enabled on IPP. Interstage comes

mdat + udat = hang

2003-01-22 Thread Joshua Spoerri
Are there any issues with using mdat and udat in the same page? I've been using udat for a while with no problems, and mdat also seems to work fine on its own, but mdat and udat in a single page cause the server to lockup. I'm using Embperl 1.3.4, Session 1.54, SessionX 2.00b3. I'm using mysql for

mdat + udat = hang

2003-01-22 Thread Joshua Spoerri
Are there any issues with using mdat and udat in the same page? I've been using udat for a while with no problems, and mdat also seems to work fine on its own, but mdat and udat in a single page cause the server to lockup. I'm using Embperl 1.3.4, Session 1.54, SessionX 2.00b3. I'm using mysql for

no strict 'defs'

2003-01-22 Thread Joshua Spoerri
how do you set "no strict 'defs'" for the whole page (if you're using [$ var $]) ? thanks in advance - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: no strict 'defs'

2003-01-22 Thread Joshua Spoerri
Oops, that should read "no strict 'refs'". Sorry for the multiple posts. On Wed, 22 Jan 2003, Joshua Spoerri wrote: > how do you set "no strict 'defs'" for the whole page > (if you're using [$ var $]) ? > > thanks in advance > > > --

Re: How to execute an epl as if url parms were passed?

2003-01-22 Thread Scott Chapman
The URL parameters (?key=value) are not passed in to fdat with a form POST method. I don't want them to go into fdat when I do an execute either. They need to be passed to execute as key=value parameters just as if the page were being hit from the web with the same parameters. Does anyo

DBIx:Recordset

2003-01-22 Thread Kaare Rasmussen
Can DBIx::Recordset make this update: UPDATE table SET col = col + ? WHERE id = ? If so, how??? -- Kaare Rasmussen--Linux, spil,--Tlf:3816 2582 Kaki Datatshirts, merchandize Fax:3816 2501 Howitzvej 75 Åben 12.00-18.00

When will 2.0b9 be out?

2003-01-22 Thread Kaare Rasmussen
"[=" changed from 2.0b8 to 2.0b9. In 2.0b8 [=Update Selected=] will give an error; 2.0b8 expects single quotes: [='Update Selected'=] . Not so in 2.0b9 from CVS. Can I tell 2.b8 to do as in 2.0b9? Or how long time before an official 2.0b9 ? -- Kaare Rasmussen--Linux, spil,--

$fdat not working when using POST

2003-01-22 Thread Hoenie Luk
I have been developing an embperl page on my local Windows machine with Apache 1.3.6 installed. It has a button named "enter" and when pressed, the form pass the query strings by POST method to the same page, and I can detect a value in $fdat{enter}. So everything is working fine. Then I ftp th

$fdat not working when using POST

2003-01-22 Thread Hoenie Luk
I have been developing an embperl page on my local Windows machine with Apache 1.3.6 installed. It has a button named "enter" and when pressed, the form pass the query strings by POST method to the same page, and I can detect a value in $fdat{enter}. So everything is working fine. Then I ftp th

HTML tags in hash

2003-01-22 Thread Farouk Khawaja
Hi all, I'd like to do the following $req->{msg} = "some text some more text"; Unfortunately the '' is not breaking.  It's just getting displayed.  The HTML output looks like '
'.  Any ideas on how I can accomplish this... or if this is a dumb way to go about this. I've tried escaping l

Re: How to execute an epl as if url parms were passed?

2003-01-22 Thread Kee Hinckley
At 10:23 AM -0800 1/22/03, Scott Chapman wrote: The URL parameters (?key=value) are not passed in to fdat with a form POST method. I don't want them to go into fdat when I do an execute either. They need to be passed to execute as key=value parameters just as if the page were being hit from

Re: HTML tags in hash

2003-01-22 Thread Farouk Khawaja
This didn`t work but I found the answer thanks to a tip by another member of this list. [- $req->{msg} = "some test some more text"; -] [+ do { local $escmode = 0; $req->{msg} } +] This works.  See... I just needed  a good kick in the *ss to get me going.     fsk On Wed, 2003-01-22 at 17:1

Installation problem

2003-01-22 Thread winfield henry
Below is the output from a attempt to install Embperl 1.3.4 on a system with the following Redhat 8.0 (psyche) httpd-2.0.40-11 httpd-devel-2.0.40-11 mod_perl-1.99_05-3 Seems to be looking for the Apache/src.pm file but can't find it. It is not on the system anywhere. A similar error with previ

Re: How to execute an epl as if url parms were passed?

2003-01-22 Thread Scott Chapman
On Wednesday 22 January 2003 12:43 pm, you wrote: > At 10:23 AM -0800 1/22/03, Scott Chapman wrote: > >The URL parameters (?key=value) are not passed in to fdat with a form > > POST method. I don't want them to go into fdat when I do an execute > > either. They need to be passed to execute as

Re: DBIx:Recordset

2003-01-22 Thread Kee Hinckley
At 7:31 PM +0100 1/22/03, Kaare Rasmussen wrote: Can DBIx::Recordset make this update: UPDATE table SET col = col + ? WHERE id = ? $set->Update({ id => $id, '\col' => "col + $foo", }); but you are responsible for making sure $foo is escaped properly. -- Kee Hinckley - Somewhere.Com, LLC

Re: How to execute an epl as if url parms were passed?

2003-01-22 Thread Kee Hinckley
At 5:29 PM -0800 1/22/03, Scott Chapman wrote: On Wednesday 22 January 2003 12:43 pm, you wrote: At 10:23 AM -0800 1/22/03, Scott Chapman wrote: >The URL parameters (?key=value) are not passed in to fdat with a form > POST method. I don't want them to go into fdat when I do an execute >