Can someone give a temporary solution?

On Fri, Mar 6, 2009 at 5:38 AM, Alfredo Quiroga-Villamil
<[email protected]>wrote:

>
> Can someone please fix this. As Brian previously pointed out I am
> getting one of these failures everytime I post.
>
> Thanks in advance,
>
> Alfredo
>
> On Thu, Mar 5, 2009 at 4:25 PM, Mail Delivery Subsystem
> <[email protected]> wrote:
> > The original message was received at ...
> >
> >  ---- The following addresses had permanent fatal errors ----
> > <[email protected]>
> >  (553 5.7.1 From=grbounce-j2ddrguaaaboxexadd8yj4w11_qw7men=iraj23=
> [email protected]: To=iraj23: Mail is denied, message has been
> blocked by user's personal blacklist)
> >
> > Final-Recipient: RFC822; [email protected]
> > Action: failed
> > Status: 553 5.7.1 From=grbounce-j2ddrguaaaboxexadd8yj4w11_qw7men=iraj23=
> [email protected]: To=iraj23: Mail is denied, message has been
> blocked by user's personal blacklist
> >
> >
> > ---------- Forwarded message ----------
> > From: Alfredo Quiroga-Villamil <[email protected]>
> > To: [email protected]
> > Date: Thu, 5 Mar 2009 16:25:37 -0500
> > Subject: Re: routes regex
> >
> > Btw, I think I might have missed a digit in that regex:
> >
> > /\w+-\w+-\w+-\d+-\+-\d+-\w+-\w+/
> >
> > Regards,
> >
> > Alfredo
> >
> >
> > On Thu, Mar 5, 2009 at 4:18 PM, Alfredo Quiroga-Villamil
> > <[email protected]> wrote:
> >> The code below is using perl; but take a look at the regex to match
> >> the given string. I didn't test this a whole lot; so double check it
> >> and run a few tests to see if it does what you want.
> >>
> >> use strict;
> >> use warnings;
> >>
> >> my $string  = 'asus-eee-pc-900-+-2-gb-ram';
> >>
> >> if ( $string =~ /\w+-\w+-\w+-\d+-\+-\w+-\w+/ ) {
> >>   print "yes it matched \n";
> >> } else {
> >>   print "no match \n";
> >> }
> >>
> >> Regards,
> >>
> >> Alfredo
> >> On Thu, Mar 5, 2009 at 3:12 PM, Alexandru Ciobanu <
> [email protected]> wrote:
> >>>
> >>> Hi guys,
> >>>
> >>> I'm having some trouble with custom routes.
> >>>
> >>> I'm trying to match /asus-eee-pc-900-+-2-gb-ram/1521
> >>>
> >>> My line for this in routes.php is:
> >>> Router::connect('/product-details/:slug/:id', array('controller' =>
> >>> 'store', 'action' => 'view_product', 'id', 'slug'), array('id' =>
> >>> '[0-9]+','slug' => '[A-Za-z0-9_\-\.\,\+]+', 'pass' => array('id',
> 'slug')));
> >>>
> >>> For some reason "\+" (literal plus sign) is ignored.
> >>>
> >>> Can anyone shed some light?
> >>>
> >>> Thanks.
> >>>
> >>> >>
> >>>
> >>
> >
> > >
> >
> >
>
> >
>


-- 
Thanks
Joshua

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to