Re: [WebDNA] Rewrite url

This WebDNA talk-list message is from

2013


It keeps the original formatting.
numero = 110613
interpreted = N
texte = This is a multi-part message in MIME format. --------------090903050701010701080305 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Fantastic Stuart!!! Working directly out of the box!!! Maybe this kind of setting could be added on the dev.webdna.us ... Thanks a lot! > WebDNA > 31 août 2013 00:48 > Lawrence > > To achieve your links http://www.sensationvoile.fr/mypermalink you > will need to have your internal links looking like this: > > [search db=base.db&neSKUdata=all] > [numfound] > [founditems] > click to my clean url
> [/founditems] > [/search] > > Then your .htaccess file needs to be able to reverse the process > > RewriteRule ^([A-Za-z0-9-]+)/?$ /index.dna?permalinkvar=$1 [NC,L] > > Your index.dna file then needs to use the permalink variable to find > the content ie > > > [search db=base.db&eqPERMALINKdatarq=[PERMALINKVAR]&max=1] > [numfound] > [founditems] > [SKU] - [DATA]
> [/founditems] > [/search] > > > The above RewriteRule works on Linux Apache2, I assume that it will > work on OSX, there are a few little things that may change from > platform to platform, I know it needs a change on IIS where I need to > add a / in the first part to ^/([A-Za-z0-9-]+)/?$ > > If you find that there are still problems try removing the / from the > end )/?$. There is also lots of help in Google. > > Have you tested that your mod_rewrite is set up properly - once again > Google a test scenario that suits your setup. > > There are a few "Cheat Sheets" that are very good in working out the > best method of doing your rules, also checkout RegEx > > There are also situations where submitting a form that is handled in > modrewrite loses its data so if you find that you are having problems > there are ways of fixing that too. > > Good luck, weekend is here, I am off for a few days. > > Regards > > Stuart Tremain > IDFK Web Developments > AUSTRALIA > webdna@idfk.com.au > > > > > > > --------------------------------------------------------- This message > is sent to you because you are subscribed to the mailing list . To > unsubscribe, E-mail to: archives: > http://mail.webdna.us/list/talk@webdna.us Bug Reporting: > support@webdna.us > Lawrence Banahan > 30 août 2013 19:33 > Here is what I'm triyng to do > > Website : http://www.sensationvoile.fr/ > To try to get this working I'm created a small database > sku data permalink > 01 mydata mypermalink > 02 newdata secondlink > Then I display the content > > [search db=base.db&neSKUdata=all][numfound] > [founditems][data]
[/founditems] >
> [founditems][data]
[/founditems] > [/search] > > What I want to do is to get > > http://www.sensationvoile.fr/mypermalink > or > http://www.sensationvoile.fr/secondlink > > so like that I get nice URL SEO friendly > > > John, I need to be working on one of my existing website, but I worked > from what I found in your .htaccess > > > Stuart Tremain > 30 août 2013 14:29 > Lawrence > > Please give an example of what you are trying to do. > > > > > > --------------------------------------------------------- > This message is sent to you because you are subscribed to > the mailing list . > To unsubscribe, E-mail to: > archives: http://mail.webdna.us/list/talk@webdna.us > Bug Reporting: support@webdna.us > Lawrence Banahan > 30 août 2013 13:53 > Hi > I'm trying to set up a RewriteRule in the .htacess o my mac/apache > server to get nice url > I can't understand why it's not working. > > Here is the code I'm using in the htaccess > > > RewriteEngine On > RewriteRule ^(.*)$ index.dna?REQUEST_URI=%{REQUEST_URI} [L] > > > Thanks in advance > Lawrence --------------090903050701010701080305 Content-Type: multipart/related; boundary="------------040702000109070909010405" --------------040702000109070909010405 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Fantastic Stuart!!!
Working directly out of the box!!!
Maybe this kind of setting could be added on the dev.webdna.us ...

Thanks a lot!


WebDNA
31 août 2013 00:48
Lawrence

To achieve your links  http://www.sensationvoile.fr/mypermalink  you will need to have your internal links looking like this:

[search db=base.db&neSKUdata=all]
[numfound]
[founditems]
<a href="/[permalink]">click to my clean url</a><br>
[/founditems] 
[/search]

Then your .htaccess file needs to be able to reverse the process

RewriteRule ^([A-Za-z0-9-]+)/?$   /index.dna?permalinkvar=$1 [NC,L]

Your index.dna file then needs to use the permalink variable to find the content ie


[search db=base.db&eqPERMALINKdatarq=[PERMALINKVAR]&max=1]
[numfound]
[founditems]
[SKU] - [DATA]<br>
[/founditems] 
[/search]


The above RewriteRule works on Linux Apache2, I assume that it will work on OSX, there are a few little things that may change from platform to platform, I know it needs a change on IIS where I need to add a / in the first part to ^/([A-Za-z0-9-]+)/?$

If you find that there are still problems try removing the / from the end )/?$. There is also lots of help in Google.

Have you tested that your mod_rewrite is set up properly - once again Google a test scenario that suits your setup.

There are a few "Cheat Sheets" that are very good in working out the best method of doing your rules, also checkout RegEx

There are also situations where submitting a form that is handled in modrewrite loses its data so if you find that you are having problems there are ways of fixing that too.

Good luck, weekend is here, I am off for a few days.

Regards

Stuart Tremain
IDFK Web Developments
AUSTRALIA
webdna@idfk.com.au





--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.us

Lawrence Banahan
30 août 2013 19:33
Here is what I'm triyng to do

Website : http://www.sensationvoile.fr/
To try to get this working I'm created a small database
    sku    data    permalink
    01    mydata    mypermalink
    02    newdata    secondlink
Then I display the content

[search db=base.db&neSKUdata=all][numfound]
[founditems]<a href="[thisurl]?SKU=[data]">[data]</a><br>[/founditems]
<hr />
[founditems]<a href="[thisurl]?SKU=[SKU]">[data]</a><br>[/founditems]
[/search]

What I want to do is to get

    http://www.sensationvoile.fr/mypermalink
or
    http://www.sensationvoile.fr/secondlink  

so like that I get nice URL SEO friendly


John, I need to be working on one of my existing website, but I worked from what I found in your .htaccess



Stuart Tremain
30 août 2013 14:29
Lawrence

Please give an example of what you are trying to do.





---------------------------------------------------------
This message is sent to you because you are subscribed to
the mailing list <talk@webdna.us>.
To unsubscribe, E-mail to: <talk-leave@webdna.us>
archives: http://mail.webdna.us/list/talk@webdna.us
Bug Reporting: support@webdna.us

Lawrence Banahan
30 août 2013 13:53
Hi
I'm trying to set up a RewriteRule in the .htacess o my mac/apache server to get nice url
I can't understand why it's not working.

Here is the code I'm using in the htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^(.*)$ index.dna?REQUEST_URI=%{REQUEST_URI} [L]
</IfModule>

Thanks in advance
Lawrence
--------------040702000109070909010405 Content-Type: image/jpeg; x-apple-mail-type=stationery; name="compose-unknown-contact.jpg" Content-Transfer-Encoding: base64 Content-ID: Content-Disposition: inline; filename="compose-unknown-contact.jpg" /9j/4AAQSkZJRgABAQEARwBHAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEC AQEBAQEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/2wBDAQEBAQEBAQICAgICAgIC AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAAR CAAZABkDAREAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAABgcICQr/xAA0EAABAwMCAgUK BwAAAAAAAAACAQMEBQYRABITIQcUMUF2CBUXIjI2N0JRtVRWkZOV0dL/xAAYAQEAAwEAAAAA AAAAAAAAAAADAAEEAv/EACQRAAICAAQGAwAAAAAAAAAAAAABAhEDMrHREyExM0FxgfDx/9oA DAMBAAIRAxEAPwDuEt+gW/ULet6oVC3rfqNQqFv0OfPn1GhUqfOmzZtKZlS5UqZMaNwzNwiJ VIl7eXLCaZIGwBl3TY8epPx2+jy2ZNPjvkwc9uhW8j7nCPhvOsQliYIeS7cvCpp8o50qwrC4 v3lsNSDbdmTEhvs2tahxpfV3WnmbbozJEw/gwdadbYExVRXKEKoSdvJcaOSqxE7/AAiX0gXx +a69/JSf9alIlste0VzaNpeFrcT9KKymotyiaZ0KRCnzacoE7Kjzn4gi2KqUh3jqDHDHv4mR UfruTWlMzlVUKIVNp9GguEJnAh0+IZjyAiisgyRDnu5azS8miKqjOTVkKqS/psG37fo1Fbab eg25b8eZPeFJBBJSjMG5HjMeyihnaauZwe4OGiju13GAcpOwBeN+U8/IkGbsiS8b7ryogmbz hbyc9REROfZhERO5ETShjPtvpGqTUyLErytS4siSwx5x2tRH4hPOI0DkjZtaJtFxuVEbIUUi yeNujlBUJGbJN6nM/Cyf2Hf60YgjvKA+NPSP4gT7axpcPtr51YWJnYn9dnAQWl722p4ot37y zqnlfp6FrqbwawG8/9k= --------------040702000109070909010405 Content-Type: image/jpeg; x-apple-mail-type=stationery; name="postbox-contact.jpg" Content-Transfer-Encoding: base64 Content-ID: Content-Disposition: inline; filename="postbox-contact.jpg" /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgK CgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkL EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAAR CAAZABkDAREAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAA AgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkK FhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWG h4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl 5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREA AgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYk NOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOE hYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk 5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD6xu9X8OWK6j4q8Q2VpfPY6Cmr30klrHNK yi2aVySQTk4OB24A4r5+hOTrO/Y9KqkoK3c+Jr/Uf2hfiPqJv38QeEdD0y95ttKTS4XjhhYZ VHbyiWODySTzmto4qmmo2HHDTa5rnq/7Huk3FxqXjSLXtK0mO60e6tbG4NrZwxhZA0hLxuqh hwAQeo9q9HF1/bU4S66nHCn7Ocos6z/hoDxP/wBFVg/7/wAX+Fc3PPuVyxPQdG0O98UeH/En h+Fo0ivvCdraxbUAxJJp/IPUHO4Dp3rzMNdVJ+n+Z21bcqv3PzsbSr+2XUbCb4x+I7W5ivIW jkWJlW3XJ3RNhup3KBgj7vArp54qz5EaRpXVudn25+yDoOnw6L47vdPvp72eS702a6nlHzyy eSysze5wWOOPmrdQn7NTls9jmqyhz8sdWt2eYecn91PyoszG5534v/4KBeJNA0vUvD3w28JS aTf3Fhb6fLqGrH/SbSSK2jgfZAOFcMjY3E4PVcitcNlvs5udSV79BVcVzJRitifwt8Pbj4j2 Ph/xR4f1qxt9H8UxLPqCXUhL6fKzBJS2Adyh0faSQememawrwp06ypOVuY6KOIn7J6bHb/AH 9qv4UfAzxH8QPBvj+21e1S91V7S0vraFbmKNbeSWMeaFYNyCDlQw617OKoupCMYfZVjzKdVR k3Lqznf+Eqs/+gV4g/8ABFe//Gq4fq8+x0e1ifK37Z//ACdB48/7CS/+iI67kc/U6H4If8it Y/7k/wD6NavPr/71T+ZtT/hSOY+E/wDyWCD/ALDkf/pSK9J7I53uftJSA//Z --------------040702000109070909010405-- --------------090903050701010701080305-- Associated Messages, from the most recent to the oldest:

    
  1. Re: [WebDNA] Rewrite url (WebDNA 2013)
  2. Re: [WebDNA] Rewrite url (Lawrence Banahan 2013)
  3. Re: [WebDNA] Rewrite url (WebDNA 2013)
  4. Re: [WebDNA] Rewrite url (matt@psiprime.com 2013)
  5. Re: [WebDNA] Rewrite url (Lawrence Banahan 2013)
  6. Re: [WebDNA] Rewrite url (matt@psiprime.com 2013)
  7. Re: [WebDNA] Rewrite url (John Butler 2013)
  8. Re: [WebDNA] Rewrite url (John Butler 2013)
  9. Re: [WebDNA] Rewrite url (Lawrence Banahan 2013)
  10. Re: [WebDNA] Rewrite url (Lawrence Banahan 2013)
  11. Re: [WebDNA] Rewrite url (John Butler 2013)
  12. Re: [WebDNA] Rewrite url (Stuart Tremain 2013)
  13. Re: [WebDNA] Rewrite url (Stuart Tremain 2013)
  14. [WebDNA] Rewrite url (Lawrence Banahan 2013)
  15. Re: [WebDNA] Rewrite url before redirect (Dave Stengel 2012)
  16. Re: [WebDNA] Rewrite url before redirect (Govinda 2012)
  17. [WebDNA] Rewrite url before redirect (Dave Stengel 2012)
This is a multi-part message in MIME format. --------------090903050701010701080305 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Fantastic Stuart!!! Working directly out of the box!!! Maybe this kind of setting could be added on the dev.webdna.us ... Thanks a lot! > WebDNA > 31 août 2013 00:48 > Lawrence > > To achieve your links http://www.sensationvoile.fr/mypermalink you > will need to have your internal links looking like this: > > [search db=base.db&neSKUdata=all] > [numfound] > [founditems] > click to my clean url
> [/founditems] > [/search] > > Then your .htaccess file needs to be able to reverse the process > > RewriteRule ^([A-Za-z0-9-]+)/?$ /index.dna?permalinkvar=$1 [NC,L] > > Your index.dna file then needs to use the permalink variable to find > the content ie > > > [search db=base.db&eqPERMALINKdatarq=[PERMALINKVAR]&max=1] > [numfound] > [founditems] > [SKU] - [DATA]
> [/founditems] > [/search] > > > The above RewriteRule works on Linux Apache2, I assume that it will > work on OSX, there are a few little things that may change from > platform to platform, I know it needs a change on IIS where I need to > add a / in the first part to ^/([A-Za-z0-9-]+)/?$ > > If you find that there are still problems try removing the / from the > end )/?$. There is also lots of help in Google. > > Have you tested that your mod_rewrite is set up properly - once again > Google a test scenario that suits your setup. > > There are a few "Cheat Sheets" that are very good in working out the > best method of doing your rules, also checkout RegEx > > There are also situations where submitting a form that is handled in > modrewrite loses its data so if you find that you are having problems > there are ways of fixing that too. > > Good luck, weekend is here, I am off for a few days. > > Regards > > Stuart Tremain > IDFK Web Developments > AUSTRALIA > webdna@idfk.com.au > > > > > > > --------------------------------------------------------- This message > is sent to you because you are subscribed to the mailing list . To > unsubscribe, E-mail to: archives: > http://mail.webdna.us/list/talk@webdna.us Bug Reporting: > support@webdna.us > Lawrence Banahan > 30 août 2013 19:33 > Here is what I'm triyng to do > > Website : http://www.sensationvoile.fr/ > To try to get this working I'm created a small database > sku data permalink > 01 mydata mypermalink > 02 newdata secondlink > Then I display the content > > [search db=base.db&neSKUdata=all][numfound] > [founditems][thisurl]?SKU=[data]">[data]
[/founditems] >
> [founditems][thisurl]?SKU=[SKU]">[data]
[/founditems] > [/search] > > What I want to do is to get > > http://www.sensationvoile.fr/mypermalink > or > http://www.sensationvoile.fr/secondlink > > so like that I get nice URL SEO friendly > > > John, I need to be working on one of my existing website, but I worked > from what I found in your .htaccess > > > Stuart Tremain > 30 août 2013 14:29 > Lawrence > > Please give an example of what you are trying to do. > > > > > > --------------------------------------------------------- > This message is sent to you because you are subscribed to > the mailing list . > To unsubscribe, E-mail to: > archives: http://mail.webdna.us/list/talk@webdna.us > Bug Reporting: support@webdna.us > Lawrence Banahan > 30 août 2013 13:53 > Hi > I'm trying to set up a RewriteRule in the .htacess o my mac/apache > server to get nice url > I can't understand why it's not working. > > Here is the code I'm using in the htaccess > > > RewriteEngine On > RewriteRule ^(.*)$ index.dna?REQUEST_URI=%{REQUEST_URI} [L] > > > Thanks in advance > Lawrence --------------090903050701010701080305 Content-Type: multipart/related; boundary="------------040702000109070909010405" --------------040702000109070909010405 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Fantastic Stuart!!!
Working directly out of the box!!!
Maybe this kind of setting could be added on the dev.webdna.us ...

Thanks a lot!


WebDNA
31 août 2013 00:48
Lawrence

To achieve your links  http://www.sensationvoile.fr/mypermalink  you will need to have your internal links looking like this:

[search db=base.db&neSKUdata=all]
[numfound]
[founditems]
<a href="/[permalink]">click to my clean url</a><br>
[/founditems] 
[/search]

Then your .htaccess file needs to be able to reverse the process

RewriteRule ^([A-Za-z0-9-]+)/?$   /index.dna?permalinkvar=$1 [NC,L]

Your index.dna file then needs to use the permalink variable to find the content ie


[search db=base.db&eqPERMALINKdatarq=[PERMALINKVAR]&max=1]
[numfound]
[founditems]
[SKU] - [DATA]<br>
[/founditems] 
[/search]


The above RewriteRule works on Linux Apache2, I assume that it will work on OSX, there are a few little things that may change from platform to platform, I know it needs a change on IIS where I need to add a / in the first part to ^/([A-Za-z0-9-]+)/?$

If you find that there are still problems try removing the / from the end )/?$. There is also lots of help in Google.

Have you tested that your mod_rewrite is set up properly - once again Google a test scenario that suits your setup.

There are a few "Cheat Sheets" that are very good in working out the best method of doing your rules, also checkout RegEx

There are also situations where submitting a form that is handled in modrewrite loses its data so if you find that you are having problems there are ways of fixing that too.

Good luck, weekend is here, I am off for a few days.

Regards

Stuart Tremain
IDFK Web Developments
AUSTRALIA
webdna@idfk.com.au





--------------------------------------------------------- This message is sent to you because you are subscribed to the mailing list . To unsubscribe, E-mail to: archives: http://mail.webdna.us/list/talk@webdna.us Bug Reporting: support@webdna.us

30 août 2013 19:33
Here is what I'm triyng to do

Website : http://www.sensationvoile.fr/
To try to get this working I'm created a small database
    sku    data    permalink
    01    mydata    mypermalink
    02    newdata    secondlink
Then I display the content

[search db=base.db&neSKUdata=all][numfound]
[founditems]<a href="[thisurl]?SKU=[data]">[data]</a><br>[/founditems]
<hr />
[founditems]<a href="[thisurl]?SKU=[SKU]">[data]</a><br>[/founditems]
[/search]

What I want to do is to get

    http://www.sensationvoile.fr/mypermalink
or
    http://www.sensationvoile.fr/secondlink  

so like that I get nice URL SEO friendly


John, I need to be working on one of my existing website, but I worked from what I found in your .htaccess


30 août 2013 14:29
Lawrence

Please give an example of what you are trying to do.





---------------------------------------------------------
This message is sent to you because you are subscribed to
the mailing list <talk@webdna.us>.
To unsubscribe, E-mail to: <talk-leave@webdna.us>
archives: http://mail.webdna.us/list/talk@webdna.us
Bug Reporting: support@webdna.us

30 août 2013 13:53
Hi
I'm trying to set up a RewriteRule in the .htacess o my mac/apache server to get nice url
I can't understand why it's not working.

Here is the code I'm using in the htaccess

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteRule ^(.*)$ index.dna?REQUEST_URI=%{REQUEST_URI} [L]
</IfModule>

Thanks in advance
Lawrence
--------------040702000109070909010405 Content-Type: image/jpeg; x-apple-mail-type=stationery; name="compose-unknown-contact.jpg" Content-Transfer-Encoding: base64 Content-ID: Content-Disposition: inline; filename="compose-unknown-contact.jpg" /9j/4AAQSkZJRgABAQEARwBHAAD/2wBDAAEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEC AQEBAQEBAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/2wBDAQEBAQEBAQICAgICAgIC AgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgL/wAAR CAAZABkDAREAAhEBAxEB/8QAGAAAAwEBAAAAAAAAAAAAAAAABgcICQr/xAA0EAABAwMCAgUK BwAAAAAAAAACAQMEBQYRABITIQcUMUF2CBUXIjI2N0JRtVRWkZOV0dL/xAAYAQEAAwEAAAAA AAAAAAAAAAADAAEEAv/EACQRAAICAAQGAwAAAAAAAAAAAAABAhEDMrHREyExM0FxgfDx/9oA DAMBAAIRAxEAPwDuEt+gW/ULet6oVC3rfqNQqFv0OfPn1GhUqfOmzZtKZlS5UqZMaNwzNwiJ VIl7eXLCaZIGwBl3TY8epPx2+jy2ZNPjvkwc9uhW8j7nCPhvOsQliYIeS7cvCpp8o50qwrC4 v3lsNSDbdmTEhvs2tahxpfV3WnmbbozJEw/gwdadbYExVRXKEKoSdvJcaOSqxE7/AAiX0gXx +a69/JSf9alIlste0VzaNpeFrcT9KKymotyiaZ0KRCnzacoE7Kjzn4gi2KqUh3jqDHDHv4mR UfruTWlMzlVUKIVNp9GguEJnAh0+IZjyAiisgyRDnu5azS8miKqjOTVkKqS/psG37fo1Fbab eg25b8eZPeFJBBJSjMG5HjMeyihnaauZwe4OGiju13GAcpOwBeN+U8/IkGbsiS8b7ryogmbz hbyc9REROfZhERO5ETShjPtvpGqTUyLErytS4siSwx5x2tRH4hPOI0DkjZtaJtFxuVEbIUUi yeNujlBUJGbJN6nM/Cyf2Hf60YgjvKA+NPSP4gT7axpcPtr51YWJnYn9dnAQWl722p4ot37y zqnlfp6FrqbwawG8/9k= --------------040702000109070909010405 Content-Type: image/jpeg; x-apple-mail-type=stationery; name="postbox-contact.jpg" Content-Transfer-Encoding: base64 Content-ID: Content-Disposition: inline; filename="postbox-contact.jpg" /9j/4AAQSkZJRgABAQAAAQABAAD/2wBDAAMCAgICAgMCAgIDAwMDBAYEBAQEBAgGBgUGCQgK CgkICQkKDA8MCgsOCwkJDRENDg8QEBEQCgwSExIQEw8QEBD/2wBDAQMDAwQDBAgEBAgQCwkL EBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBAQEBD/wAAR CAAZABkDAREAAhEBAxEB/8QAHwAAAQUBAQEBAQEAAAAAAAAAAAECAwQFBgcICQoL/8QAtRAA AgEDAwIEAwUFBAQAAAF9AQIDAAQRBRIhMUEGE1FhByJxFDKBkaEII0KxwRVS0fAkM2JyggkK FhcYGRolJicoKSo0NTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqDhIWG h4iJipKTlJWWl5iZmqKjpKWmp6ipqrKztLW2t7i5usLDxMXGx8jJytLT1NXW19jZ2uHi4+Tl 5ufo6erx8vP09fb3+Pn6/8QAHwEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoL/8QAtREA AgECBAQDBAcFBAQAAQJ3AAECAxEEBSExBhJBUQdhcRMiMoEIFEKRobHBCSMzUvAVYnLRChYk NOEl8RcYGRomJygpKjU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6goOE hYaHiImKkpOUlZaXmJmaoqOkpaanqKmqsrO0tba3uLm6wsPExcbHyMnK0tPU1dbX2Nna4uPk 5ebn6Onq8vP09fb3+Pn6/9oADAMBAAIRAxEAPwD6xu9X8OWK6j4q8Q2VpfPY6Cmr30klrHNK yi2aVySQTk4OB24A4r5+hOTrO/Y9KqkoK3c+Jr/Uf2hfiPqJv38QeEdD0y95ttKTS4XjhhYZ VHbyiWODySTzmto4qmmo2HHDTa5rnq/7Huk3FxqXjSLXtK0mO60e6tbG4NrZwxhZA0hLxuqh hwAQeo9q9HF1/bU4S66nHCn7Ocos6z/hoDxP/wBFVg/7/wAX+Fc3PPuVyxPQdG0O98UeH/En h+Fo0ivvCdraxbUAxJJp/IPUHO4Dp3rzMNdVJ+n+Z21bcqv3PzsbSr+2XUbCb4x+I7W5ivIW jkWJlW3XJ3RNhup3KBgj7vArp54qz5EaRpXVudn25+yDoOnw6L47vdPvp72eS702a6nlHzyy eSysze5wWOOPmrdQn7NTls9jmqyhz8sdWt2eYecn91PyoszG5534v/4KBeJNA0vUvD3w28JS aTf3Fhb6fLqGrH/SbSSK2jgfZAOFcMjY3E4PVcitcNlvs5udSV79BVcVzJRitifwt8Pbj4j2 Ph/xR4f1qxt9H8UxLPqCXUhL6fKzBJS2Adyh0faSQememawrwp06ypOVuY6KOIn7J6bHb/AH 9qv4UfAzxH8QPBvj+21e1S91V7S0vraFbmKNbeSWMeaFYNyCDlQw617OKoupCMYfZVjzKdVR k3Lqznf+Eqs/+gV4g/8ABFe//Gq4fq8+x0e1ifK37Z//ACdB48/7CS/+iI67kc/U6H4If8it Y/7k/wD6NavPr/71T+ZtT/hSOY+E/wDyWCD/ALDkf/pSK9J7I53uftJSA//Z --------------040702000109070909010405-- --------------090903050701010701080305-- Lawrence Banahan

DOWNLOAD WEBDNA NOW!

Top Articles:

Talk List

The WebDNA community talk-list is the best place to get some help: several hundred extremely proficient programmers with an excellent knowledge of WebDNA and an excellent spirit will deliver all the tips and tricks you can imagine...

Related Readings:

Running a store on BOTH http and https (1998) real beginner stumped (2000) RE: WebCatalog2 for NT Beta Request (1997) PROBLEM (1997) New public beta available (1997) WebCat2b12plugin - [search] is broken ... not! (1997) Re(2): Append command (1999) Images do not upload completely ... (2003) Here's an example of an applet in a tpl (1997) Searching multiple records for certain info (2000) WebCat b13 CGI -shownext- (1997) ACGI processing for .html (1997) Corrupt Database Problem... (2000) [format] problem (2001) Country & Ship-to address & other fields ? (1997) Real Audio files (1997) SUBSCRIBE (2000) Showing unopened cart (1997) Re:no [search] with NT (1997) And/or Search (1998)