Re: [WebDNA] Crashing Database

This WebDNA talk-list message is from

2011


It keeps the original formatting.
numero = 106194
interpreted = N
texte = --Boundary-01=_cVNQNDIjmGM/TaY Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable [thisport] is not in the docs. What other tags/contexts are=20 undocumented? Sincerely, Kenneth Grome > Is that what [thisport] does for us? return 80 for http > and 443 for https? >=20 > Brian Fries > BrainScan Software >=20 > On Jan 26, 2011, at 4:34 PM, Stuart Tremain wrote: > > Chris > >=20 > > There have been many attempts to create an easy way to > > determine if a page is being served HTTP or HTTPS > >=20 > > Any closer with this ?? > >=20 > >=20 > > Regards > >=20 > > Stuart Tremain > > IDFK Web Developments > > AUSTRALIA > > webdna@idfk.com.au > >=20 > > On 26/01/2011, at 6:04 AM,=20 christophe.billiottet@webdna.us wrote: > >> There is no real new feature in 7.0. It is more a > >> transition version toward the WebDNA i had in mind > >> when we bought it to SmithMicro. > >>=20 > >> We fixed some remaining bugs and added few things. We > >> also changed the [append] tag to be much much faster. > >> Here a list: > >>=20 > >>=20 > >> ----- > >> Fixed: The serial number validation routine fails out > >> with a wrong number, and causes the page not > >> reloading. ----- > >> The libmysqlclient.so.15/libmysqlclient.so.16 problem > >> for the glibcv3 version: Ubuntu 10.xx comes with > >> libmysqlclient.so.16, and webdna.fcgi requests > >> libmysqlclient.so.15 The two versions of > >> libmysqlclient aren't binary compatible, which is why > >> the soname was changed from 15 to 16. There is no way > >> to build a single binary that works with both > >> libraries. We built two binaries. ----- > >> Changed: The 6.2 code always reloaded the db after 100 > >> lines. We changed this for 1,000 lines on 7.0 code. > >> ----- > >> Fixed: the [append] tag was writing to DISK instead or > >> writing to RAM. It now depends on the AutoCommit > >> value in prefs. If true, it will append each line as > >> before. > >> If false, it will buffer in memory. > >> ----- > >> Fixed: the [formvariables] context bug when using > >> ENCTYPE=3D"multipart/form-data": issue with the > >> processing of multipart post. ----- > >> Fixed: [sendmail] problem with the FreeBSD version > >> beacuse of a threading problem. Fixed by forcing it > >> to use libpthread instead of libc_r ----- > >> Fixed: bug when the [math] variable name includes a > >> number like in [math]thetest3=3D43[/math] --- > >> New: added the new tag [thirurlplusget] > >>=20 > >> so the [thisurl] tag will produce this: > >> /x/y/z/index.dna > >>=20 > >> and the [thirurlplusget] tag will produce this: > >> /x/y/z/index.dna?a=3Db&c=3Dd > >> --- > >> New: /WebCatalog folder eliminated > >> --- > >> New: config file is now webdna.ini > >> --- > >> New: [isaccelerated] tag returns "T" or "F" > >> --- > >> Fixed: a local copy runs as "licensed" when called > >> through 127.0.0.1 or "localhost" --- > >> Fixed: triggers now work with unlicensed version > >> --- > >> Fixed: the triggers are not properly working > >> --- > >> New: added a solid blowfish code to [encrypt] > >> --- > >> Fixed: [returnraw] - http status codes was not working > >> on all platforms due of Apache 2.0 changes in the API > >> and also the WebDNA module was not accommodating all > >> status codes. --- > >> Fixed: [createdate] and [moddate] were being confused > >> on unix machines in both the [listfiles] context and > >> [fileinfo] context. --- > >> Fixed: [date format=3D] was not working on all platforms > >> --- > >> Fixed: mysql Windows bug > >> --- > >> New: xalan and xerces are now integrated into the > >> binary --- > >> New: [thishost] shows the server name WebDNA is > >> running on --- > >> New: [listallcontexts] shows a list of all reserved > >> context names --- > >> New: [thisport] shows the port number of the server > >> WebDNA is running on. --- > >> Bug: xerces has some flaws under OSX. See below > >>=20 > >> [xmlparse > >> var=3Dxml_var1&source=3D[url]http://gdata.youtube.com/fee > >> ds/api/videos/-/volleyball[/url]][/xmlparse] [xmlnode > >> ref=3Dxml_var1&path=3Dnamed:feed] > >> [name]=3D[value]
> >> [xmlnodes] > >>  - [name]=3D[value]
> >> [xmlnodes] > >>    - [name]=3D[value]
> >> [/xmlnodes] > >> [/xmlnodes] > >> [/xmlnode] > >>=20 > >> A workaround is to write the WEBDNA to download the > >> XML file, and then include it in the XMLParse Pseudo > >> code: > >> [DOWNLOAD FILE source=3Dhttp://.....] > >> [XMLParse vars=3Dblah][include target > >> file.xml][/XMLParse] --- > >> Fixed: [setmimeheader] is now working as expected > >> example: [setmimeheader > >> name=3DContent-Type&value=3Dtext/xml] --- > >> Fixed: [shownext] was not properly working under OSX > >> with apache --- > >> Fixed: PATH_TRANSLATED under OSX and Solaris > >> --- > >> New: [islicensed] with two values: "T" or "F". If the > >> License number matches the domain, we will get a "T", > >> otherwise, we get a "F" and WebDNA will run as > >> freeware. --- > >> Fixed: was not > >> working --- > >> Fixed: [decrypt] could not decrypt the seed > >> "TEMPLATE", for use with encrypted templates --- > >> New: SMTP auth enable with [sendmail].. both a global > >> setting and a over-riding local setting option (ie. > >> within the [sendmail] context) --- > >> Fixed: [setcookie] was not writing anymore to the > >> browser. --- > >> Fixed: [redirect] was not working anymore. > >> --- > >> Fixed: Passing a value to a page using GET like > >> test.dna?thetest=3Dthisisasmalltest was just passing > >> "[thetest]" in the browser: it was not interpreted > >> and showed up. --- > >> Fixed: Introducing an URL variable name using a > >> context name was producing strange results. The > >> ?text=3D bug is now checking for known contexts, and if > >> it is not a known context, it does the appropriate > >> thing. For example, the variable setting via GET is > >> working, but the ?text=3D is blocked --- > >> Fixed: [appendfile file=3Dtest.html]More > >> text[/appendfile] was creating an empty file when it > >> should have written "More text" in it. File > >> permission of index.html was 644 --- > >> Fixed: [writefile file=3Dtest.html]Some text[/writefile] > >> was creating an empty file when it should have > >> written "Some text" in it. File permission of > >> index.html was 660 --- > >> Fixed: [ipaddress] was not working anymore under OSX > >> --- > >> Fixed: [referrer] was showing "FastCGI" instead of the > >> real refering page under OSX. --- > >> Fixed: the delete command could delete items in a > >> database, even when it is not allowed as a (URL) > >> command. --- > >> Deprecated: XML-like syntax > >> Deprecated: [applescript] > >> Deprecated: phone home system > >> Deprecated: the URL command system > >> Deprecated: sandboxes and "global" > >> Deprecated: old licensing system (domain limits, > >> versions=85) > >>=20 > >> On Jan 25, 2011, at 16:22, Olin Lagon wrote: > >>> Is there a list of just new features in 7, if any? > >>> Will this work on OSX using multiple local domains > >>> (via httpd-vhosts)? I'd love to give the OSX version > >>> a spin. > >>>=20 > >>> Also, is there a set of instructions for CentOS? > >>>=20 > >>> Thanks! Olin > >>>=20 > >>> christophe.billiottet@webdna.us wrote: > >>>> Sure! i mail it privately. > >>>>=20 > >>>> - chris > >>>>=20 > >>>> On Jan 25, 2011, at 14:35, Steve Craig wrote: > >>>>> Hi Chris > >>>>>=20 > >>>>> I'm just about to set up a new in-house server for > >>>>> our internal accounts and stuff. Could I try the > >>>>> version 7 please on OSX? > >>>>>=20 > >>>>> Cheers > >>>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >>>>> Steve Craig - Asylum Interactive Ltd > >>>>> Tel +44 1330 860550 Fax +44 1330 860880 > >>>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >>>>>=20 > >>>>> http://www.asylumweb.com > >>>>>=20 > >>>>> Email: > >>>>> steve@asylumweb.com > >>>>>=20 > >>>>> Skype: s.craig - iChat: steve.craig > >>>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >>>>>=20 > >>>>>=20 > >>>>>=20 > >>>>>=20 > >>>>> On 25 Jan 2011, at 09:37, > >>>>> christophe.billiottet@webdna.us > >>>>>=20 > >>>>> wrote: > >>>>>> Version 7.0 is not officially released yet: we are > >>>>>> still working on the Windows version and we are > >>>>>> in the process of raising funds to launch a > >>>>>> successful marketing campaign. I will be glad to > >>>>>> provide a 7.0 version to whoever is asking for it > >>>>>> but you will be on your own to install it. Ken > >>>>>> already wrote a "manual" on how to install WebDNA > >>>>>> 7.0 with lighttpd (highly recommended if you > >>>>>> don't need apache) and the OSX install process > >>>>>> with apache is also documented. > >>>>>=20 > >>>>> --------------------------------------------------- > >>>>> ------ This message is sent to you because you are > >>>>> subscribed to the mailing list > >>>>> > >>>>> . > >>>>> To unsubscribe, E-mail to: > >>>>> > >>>>>=20 > >>>>> archives: > >>>>> http://mail.webdna.us/list/talk@webdna.us > >>>>>=20 > >>>>> Bug Reporting: > >>>>> support@webdna.us > >>>>=20 > >>>> ---------------------------------------------------- > >>>> ----- This message is sent to you because you are > >>>> subscribed to the mailing list > >>>> > >>>> . > >>>> To unsubscribe, E-mail to: > >>>> > >>>>=20 > >>>> archives: > >>>> http://mail.webdna.us/list/talk@webdna.us > >>>>=20 > >>>> Bug Reporting: > >>>> support@webdna.us > >>>=20 > >>> ----------------------------------------------------- > >>> ---- 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 > >>=20 > >> ------------------------------------------------------ > >> --- 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 > >=20 > > ------------------------------------------------------- > > -- 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 >=20 > --------------------------------------------------------- > 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 --Boundary-01=_cVNQNDIjmGM/TaY Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable

[thisport] = is not in the docs. What other tags/contexts are undocumented?

Sincerely,<= /p>

Kenneth Gro= me

> Is tha= t what [thisport] does for us? return 80 for http

> and 44= 3 for https?

>

> Brian = =46ries

> BrainS= can Software

>

> On Jan= 26, 2011, at 4:34 PM, Stuart Tremain wrote:

> > C= hris

> > <= /p>

> > T= here have been many attempts to create an easy way to

> > d= etermine if a page is being served HTTP or HTTPS

> > <= /p>

> > A= ny closer with this ??

> > <= /p>

> > <= /p>

> > R= egards

> > <= /p>

> > S= tuart Tremain

> > I= DFK Web Developments

> > A= USTRALIA

> > w= ebdna@idfk.com.au

> > <= /p>

> > O= n 26/01/2011, at 6:04 AM, christophe.billiottet@webdna.us wrote:

> >&g= t; There is no real new feature in 7.0. It is more a

> >&g= t; transition version toward the WebDNA i had in mind

> >&g= t; when we bought it to SmithMicro.

> >&g= t;

> >&g= t; We fixed some remaining bugs and added few things. We

> >&g= t; also changed the [append] tag to be much much faster.

> >&g= t; Here a list:

> >&g= t;

> >&g= t;

> >&g= t; -----

> >&g= t; Fixed: The serial number validation routine fails out

> >&g= t; with a wrong number, and causes the page not

> >&g= t; reloading. -----

> >&g= t; The libmysqlclient.so.15/libmysqlclient.so.16 problem

> >&g= t; for the glibcv3 version: Ubuntu 10.xx comes with

> >&g= t; libmysqlclient.so.16, and webdna.fcgi requests

> >&g= t; libmysqlclient.so.15 The two versions of

> >&g= t; libmysqlclient aren't binary compatible, which is why

> >&g= t; the soname was changed from 15 to 16. There is no way

> >&g= t; to build a single binary that works with both

> >&g= t; libraries. We built two binaries. -----

> >&g= t; Changed: The 6.2 code always reloaded the db after 100

> >&g= t; lines. We changed this for 1,000 lines on 7.0 code.

> >&g= t; -----

> >&g= t; Fixed: the [append] tag was writing to DISK instead or

> >&g= t; writing to RAM. It now depends on the AutoCommit

> >&g= t; value in prefs. If true, it will append each line as

> >&g= t; before.

> >&g= t; If false, it will buffer in memory.

> >&g= t; -----

> >&g= t; Fixed: the [formvariables] context bug when using

> >&g= t; ENCTYPE=3D"multipart/form-data": issue with the

> >&g= t; processing of multipart post. -----

> >&g= t; Fixed: [sendmail] problem with the FreeBSD version

> >&g= t; beacuse of a threading problem. Fixed by forcing it

> >&g= t; to use libpthread instead of libc_r -----

> >&g= t; Fixed: bug when the [math] variable name includes a

> >&g= t; number like in [math]thetest3=3D43[/math] ---

> >&g= t; New: added the new tag [thirurlplusget]

> >&g= t;

> >&g= t; so the [thisurl] tag will produce this:

> >&g= t; /x/y/z/index.dna

> >&g= t;

> >&g= t; and the [thirurlplusget] tag will produce this:

> >&g= t; /x/y/z/index.dna?a=3Db&c=3Dd

> >&g= t; ---

> >&g= t; New: /WebCatalog folder eliminated

> >&g= t; ---

> >&g= t; New: config file is now webdna.ini

> >&g= t; ---

> >&g= t; New: [isaccelerated] tag returns "T" or "F"

> >&g= t; ---

> >&g= t; Fixed: a local copy runs as "licensed" when called

> >&g= t; through 127.0.0.1 or "localhost" ---

> >&g= t; Fixed: triggers now work with unlicensed version

> >&g= t; ---

> >&g= t; Fixed: the triggers are not properly working

> >&g= t; ---

> >&g= t; New: added a solid blowfish code to [encrypt]

> >&g= t; ---

> >&g= t; Fixed: [returnraw] - http status codes was not working

> >&g= t; on all platforms due of Apache 2.0 changes in the API

> >&g= t; and also the WebDNA module was not accommodating all

> >&g= t; status codes. ---

> >&g= t; Fixed: [createdate] and [moddate] were being confused

> >&g= t; on unix machines in both the [listfiles] context and

> >&g= t; [fileinfo] context. ---

> >&g= t; Fixed: [date format=3D] was not working on all platforms

> >&g= t; ---

> >&g= t; Fixed: mysql Windows bug

> >&g= t; ---

> >&g= t; New: xalan and xerces are now integrated into the

> >&g= t; binary ---

> >&g= t; New: [thishost] shows the server name WebDNA is

> >&g= t; running on ---

> >&g= t; New: [listallcontexts] shows a list of all reserved

> >&g= t; context names ---

> >&g= t; New: [thisport] shows the port number of the server

> >&g= t; WebDNA is running on. ---

> >&g= t; Bug: xerces has some flaws under OSX. See below

> >&g= t;

> >&g= t; [xmlparse

> >&g= t; var=3Dxml_var1&source=3D[url]http://gdata.youtube.com/fee

> >&g= t; ds/api/videos/-/volleyball[/url]][/xmlparse] [xmlnode

> >&g= t; ref=3Dxml_var1&path=3Dnamed:feed]

> >&g= t; [name]=3D[value]<br>

> >&g= t; [xmlnodes]

> >&g= t; &nbsp;- [name]=3D[value]<br>

> >&g= t; [xmlnodes]

> >&g= t; &nbsp;&nbsp; - [name]=3D[value]<br>

> >&g= t; [/xmlnodes]

> >&g= t; [/xmlnodes]

> >&g= t; [/xmlnode]

> >&g= t;

> >&g= t; A workaround is to write the WEBDNA to download the

> >&g= t; XML file, and then include it in the XMLParse Pseudo

> >&g= t; code:

> >&g= t; [DOWNLOAD FILE source=3Dhttp://.....]

> >&g= t; [XMLParse vars=3Dblah][include target

> >&g= t; file.xml][/XMLParse] ---

> >&g= t; Fixed: [setmimeheader] is now working as expected

> >&g= t; example: [setmimeheader

> >&g= t; name=3DContent-Type&value=3Dtext/xml] ---

> >&g= t; Fixed: [shownext] was not properly working under OSX

> >&g= t; with apache ---

> >&g= t; Fixed: PATH_TRANSLATED under OSX and Solaris

> >&g= t; ---

> >&g= t; New: [islicensed] with two values: "T" or "F". If th= e

> >&g= t; License number matches the domain, we will get a "T",

> >&g= t; otherwise, we get a "F" and WebDNA will run as

> >&g= t; freeware. ---

> >&g= t; Fixed: <!--HAS_WEBDNA_TAGS_ENCRYPTED_2--> was not

> >&g= t; working ---

> >&g= t; Fixed: [decrypt] could not decrypt the seed

> >&g= t; "TEMPLATE", for use with encrypted templates ---

> >&g= t; New: SMTP auth enable with [sendmail].. both a global

> >&g= t; setting and a over-riding local setting option (ie.

> >&g= t; within the [sendmail] context) ---

> >&g= t; Fixed: [setcookie] was not writing anymore to the

> >&g= t; browser. ---

> >&g= t; Fixed: [redirect] was not working anymore.

> >&g= t; ---

> >&g= t; Fixed: Passing a value to a page using GET like

> >&g= t; test.dna?thetest=3Dthisisasmalltest was just passing

> >&g= t; "[thetest]" in the browser: it was not interpreted

> >&g= t; and showed up. ---

> >&g= t; Fixed: Introducing an URL variable name using a

> >&g= t; context name was producing strange results. The

> >&g= t; ?text=3D bug is now checking for known contexts, and if

> >&g= t; it is not a known context, it does the appropriate

> >&g= t; thing. For example, the variable setting via GET is

> >&g= t; working, but the ?text=3D is blocked ---

> >&g= t; Fixed: [appendfile file=3Dtest.html]More

> >&g= t; text[/appendfile] was creating an empty file when it

> >&g= t; should have written "More text" in it. File

> >&g= t; permission of index.html was 644 ---

> >&g= t; Fixed: [writefile file=3Dtest.html]Some text[/writefile]

> >&g= t; was creating an empty file when it should have

> >&g= t; written "Some text" in it. File permission of

> >&g= t; index.html was 660 ---

> >&g= t; Fixed: [ipaddress] was not working anymore under OSX

> >&g= t; ---

> >&g= t; Fixed: [referrer] was showing "FastCGI" instead of the

> >&g= t; real refering page under OSX. ---

> >&g= t; Fixed: the delete command could delete items in a

> >&g= t; database, even when it is not allowed as a (URL)

> >&g= t; command. ---

> >&g= t; Deprecated: XML-like syntax

> >&g= t; Deprecated: [applescript]

> >&g= t; Deprecated: phone home system

> >&g= t; Deprecated: the URL command system

> >&g= t; Deprecated: sandboxes and "global"

> >&g= t; Deprecated: old licensing system (domain limits,

> >&g= t; versions=85)

> >&g= t;

> >&g= t; On Jan 25, 2011, at 16:22, Olin Lagon wrote:

> >&g= t;> Is there a list of just new features in 7, if any?

> >&g= t;> Will this work on OSX using multiple local domains

> >&g= t;> (via httpd-vhosts)? I'd love to give the OSX version

> >&g= t;> a spin.

> >&g= t;>

> >&g= t;> Also, is there a set of instructions for CentOS?

> >&g= t;>

> >&g= t;> Thanks! Olin

> >&g= t;>

> >&g= t;> christophe.billiottet@webdna.us wrote:

> >&g= t;>> Sure! i mail it privately.

> >&g= t;>>

> >&g= t;>> - chris

> >&g= t;>>

> >&g= t;>> On Jan 25, 2011, at 14:35, Steve Craig wrote:

> >&g= t;>>> Hi Chris

> >&g= t;>>>

> >&g= t;>>> I'm just about to set up a new in-house server for

> >&g= t;>>> our internal accounts and stuff. Could I try the

> >&g= t;>>> version 7 please on OSX?

> >&g= t;>>>

> >&g= t;>>> Cheers

> >&g= t;>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

> >&g= t;>>> Steve Craig - Asylum Interactive Ltd

> >&g= t;>>> Tel +44 1330 860550 Fax +44 1330 860880

> >&g= t;>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

> >&g= t;>>>

> >&g= t;>>> http://www.asylumweb.com

> >&g= t;>>>

> >&g= t;>>> Email:

> >&g= t;>>> steve@asylumweb.com

> >&g= t;>>>

> >&g= t;>>> Skype: s.craig - iChat: steve.craig

> >&g= t;>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

> >&g= t;>>>

> >&g= t;>>>

> >&g= t;>>>

> >&g= t;>>>

> >&g= t;>>> On 25 Jan 2011, at 09:37,

> >&g= t;>>> christophe.billiottet@webdna.us

> >&g= t;>>>

> >&g= t;>>> wrote:

> >&g= t;>>>> Version 7.0 is not officially released yet: we are

> >&g= t;>>>> still working on the Windows version and we are

> >&g= t;>>>> in the process of raising funds to launch a

> >&g= t;>>>> successful marketing campaign. I will be glad to

> >&g= t;>>>> provide a 7.0 version to whoever is asking for it

> >&g= t;>>>> but you will be on your own to install it. Ken

> >&g= t;>>>> already wrote a "manual" on how to install Web= DNA

> >&g= t;>>>> 7.0 with lighttpd (highly recommended if you

> >&g= t;>>>> don't need apache) and the OSX install process

> >&g= t;>>>> with apache is also documented.

> >&g= t;>>>

> >&g= t;>>> ---------------------------------------------------

> >&g= t;>>> ------ This message is sent to you because you are

> >&g= t;>>> subscribed to the mailing list

> >&g= t;>>> <talk@webdna.us>

> >&g= t;>>> .

> >&g= t;>>> To unsubscribe, E-mail to:

> >&g= t;>>> <talk-leave@webdna.us>

> >&g= t;>>>

> >&g= t;>>> archives:

> >&g= t;>>> http://mail.webdna.us/list/talk@webdna.us

> >&g= t;>>>

> >&g= t;>>> Bug Reporting:

> >&g= t;>>> support@webdna.us

> >&g= t;>>

> >&g= t;>> ----------------------------------------------------

> >&g= t;>> ----- This message is sent to you because you are

> >&g= t;>> subscribed to the mailing list

> >&g= t;>> <talk@webdna.us>

> >&g= t;>> .

> >&g= t;>> To unsubscribe, E-mail to:

> >&g= t;>> <talk-leave@webdna.us>

> >&g= t;>>

> >&g= t;>> archives:

> >&g= t;>> http://mail.webdna.us/list/talk@webdna.us

> >&g= t;>>

> >&g= t;>> Bug Reporting:

> >&g= t;>> support@webdna.us

> >&g= t;>

> >&g= t;> -----------------------------------------------------

> >&g= t;> ---- This message is sent to you because you are

> >&g= t;> subscribed to the mailing list . To unsubscribe,

> >&g= t;> E-mail to: archives:

> >&g= t;> http://mail.webdna.us/list/talk@webdna.us Bug

> >&g= t;> Reporting: support@webdna.us

> >&g= t;

> >&g= t; ------------------------------------------------------

> >&g= t; --- This message is sent to you because you are

> >&g= t; subscribed to the mailing list <talk@webdna.us>.

> >&g= t; To unsubscribe, E-mail to: <talk-leave@webdna.us>

> >&g= t; archives: http://mail.webdna.us/list/talk@webdna.us

> >&g= t; Bug Reporting: support@webdna.us

> > <= /p>

> > -= =2D-----------------------------------------------------

> > -= =2D This message is sent to you because you are

> > s= ubscribed to the mailing list <talk@webdna.us>.

> > T= o unsubscribe, E-mail to: <talk-leave@webdna.us>

> > a= rchives: http://mail.webdna.us/list/talk@webdna.us

> > B= ug Reporting: support@webdna.us

>

> ------= =2D--------------------------------------------------

> This m= essage is sent to you because you are subscribed to

> the ma= iling list <talk@webdna.us>.

> To uns= ubscribe, E-mail to: <talk-leave@webdna.us>

> archiv= es: http://mail.webdna.us/list/talk@webdna.us

> Bug Re= porting: support@webdna.us

--Boundary-01=_cVNQNDIjmGM/TaY-- Associated Messages, from the most recent to the oldest:

    
  1. Re: [WebDNA] Crashing Database (christophe.billiottet@webdna.us 2011)
  2. Re: [WebDNA] Crashing Database ("Dan Strong" 2011)
  3. Re: [WebDNA] Crashing Database ("Dan Strong" 2011)
  4. Re: [WebDNA] Crashing Database (Olin Lagon 2011)
  5. Re: [WebDNA] Crashing Database (Kenneth Grome 2011)
  6. Re: [WebDNA] Crashing Database ("Dan Strong" 2011)
  7. Re: [WebDNA] Crashing Database (William DeVaul 2011)
  8. Re: [WebDNA] Crashing Database (Kenneth Grome 2011)
  9. Re: [WebDNA] Crashing Database (Stuart Tremain 2011)
  10. Re: [WebDNA] Crashing Database (christophe.billiottet@webdna.us 2011)
  11. Re: [WebDNA] Crashing Database (Brian Fries 2011)
  12. Re: [WebDNA] Crashing Database (Stuart Tremain 2011)
  13. Re: [WebDNA] Crashing Database (christophe.billiottet@webdna.us 2011)
  14. Re: [WebDNA] Crashing Database ("Psi Prime Inc, Matthew A Perosi " 2011)
  15. Re: [WebDNA] Crashing Database (christophe.billiottet@webdna.us 2011)
  16. Re: [WebDNA] Crashing Database (christophe.billiottet@webdna.us 2011)
  17. Re: [WebDNA] Crashing Database (Olin Lagon 2011)
  18. Re: [WebDNA] Crashing Database (christophe.billiottet@webdna.us 2011)
  19. Re: [WebDNA] Crashing Database (Steve Craig 2011)
  20. Re: [WebDNA] Crashing Database (Jeffrey Jones 2011)
  21. Re: [WebDNA] Crashing Database (christophe.billiottet@webdna.us 2011)
  22. Re: [WebDNA] Crashing Database (William DeVaul 2011)
  23. Re: [WebDNA] Crashing Database (Marc Thompson 2011)
  24. Re: [WebDNA] Crashing Database (World Wide Art 2011)
  25. Re: [WebDNA] Crashing Database (Jeffrey Jones 2011)
  26. Re: [WebDNA] Crashing Database (Kenneth Grome 2011)
  27. [WebDNA] Crashing Database (World Wide Art 2011)
--Boundary-01=_cVNQNDIjmGM/TaY Content-Type: text/plain; charset="windows-1252" Content-Transfer-Encoding: quoted-printable [thisport] is not in the docs. What other tags/contexts are=20 undocumented? Sincerely, Kenneth Grome > Is that what [thisport] does for us? return 80 for http > and 443 for https? >=20 > Brian Fries > BrainScan Software >=20 > On Jan 26, 2011, at 4:34 PM, Stuart Tremain wrote: > > Chris > >=20 > > There have been many attempts to create an easy way to > > determine if a page is being served HTTP or HTTPS > >=20 > > Any closer with this ?? > >=20 > >=20 > > Regards > >=20 > > Stuart Tremain > > IDFK Web Developments > > AUSTRALIA > > webdna@idfk.com.au > >=20 > > On 26/01/2011, at 6:04 AM,=20 christophe.billiottet@webdna.us wrote: > >> There is no real new feature in 7.0. It is more a > >> transition version toward the WebDNA i had in mind > >> when we bought it to SmithMicro. > >>=20 > >> We fixed some remaining bugs and added few things. We > >> also changed the [append] tag to be much much faster. > >> Here a list: > >>=20 > >>=20 > >> ----- > >> Fixed: The serial number validation routine fails out > >> with a wrong number, and causes the page not > >> reloading. ----- > >> The libmysqlclient.so.15/libmysqlclient.so.16 problem > >> for the glibcv3 version: Ubuntu 10.xx comes with > >> libmysqlclient.so.16, and webdna.fcgi requests > >> libmysqlclient.so.15 The two versions of > >> libmysqlclient aren't binary compatible, which is why > >> the soname was changed from 15 to 16. There is no way > >> to build a single binary that works with both > >> libraries. We built two binaries. ----- > >> Changed: The 6.2 code always reloaded the db after 100 > >> lines. We changed this for 1,000 lines on 7.0 code. > >> ----- > >> Fixed: the [append] tag was writing to DISK instead or > >> writing to RAM. It now depends on the AutoCommit > >> value in prefs. If true, it will append each line as > >> before. > >> If false, it will buffer in memory. > >> ----- > >> Fixed: the [formvariables] context bug when using > >> ENCTYPE=3D"multipart/form-data": issue with the > >> processing of multipart post. ----- > >> Fixed: [sendmail] problem with the FreeBSD version > >> beacuse of a threading problem. Fixed by forcing it > >> to use libpthread instead of libc_r ----- > >> Fixed: bug when the [math] variable name includes a > >> number like in [math]thetest3=3D43[/math] --- > >> New: added the new tag [thirurlplusget] > >>=20 > >> so the [thisurl] tag will produce this: > >> /x/y/z/index.dna > >>=20 > >> and the [thirurlplusget] tag will produce this: > >> /x/y/z/index.dna?a=3Db&c=3Dd > >> --- > >> New: /WebCatalog folder eliminated > >> --- > >> New: config file is now webdna.ini > >> --- > >> New: [isaccelerated] tag returns "T" or "F" > >> --- > >> Fixed: a local copy runs as "licensed" when called > >> through 127.0.0.1 or "localhost" --- > >> Fixed: triggers now work with unlicensed version > >> --- > >> Fixed: the triggers are not properly working > >> --- > >> New: added a solid blowfish code to [encrypt] > >> --- > >> Fixed: [returnraw] - http status codes was not working > >> on all platforms due of Apache 2.0 changes in the API > >> and also the WebDNA module was not accommodating all > >> status codes. --- > >> Fixed: [createdate] and [moddate] were being confused > >> on unix machines in both the [listfiles] context and > >> [fileinfo] context. --- > >> Fixed: [date format=3D] was not working on all platforms > >> --- > >> Fixed: mysql Windows bug > >> --- > >> New: xalan and xerces are now integrated into the > >> binary --- > >> New: [thishost] shows the server name WebDNA is > >> running on --- > >> New: [listallcontexts] shows a list of all reserved > >> context names --- > >> New: [thisport] shows the port number of the server > >> WebDNA is running on. --- > >> Bug: xerces has some flaws under OSX. See below > >>=20 > >> [xmlparse > >> var=3Dxml_var1&source=3D[url]http://gdata.youtube.com/fee > >> ds/api/videos/-/volleyball[/url]][/xmlparse] [xmlnode > >> ref=3Dxml_var1&path=3Dnamed:feed] > >> [name]=3D[value]
> >> [xmlnodes] > >>  - [name]=3D[value]
> >> [xmlnodes] > >>    - [name]=3D[value]
> >> [/xmlnodes] > >> [/xmlnodes] > >> [/xmlnode] > >>=20 > >> A workaround is to write the WEBDNA to download the > >> XML file, and then include it in the XMLParse Pseudo > >> code: > >> [DOWNLOAD FILE source=3Dhttp://.....] > >> [XMLParse vars=3Dblah][include target > >> file.xml][/XMLParse] --- > >> Fixed: [setmimeheader] is now working as expected > >> example: [setmimeheader > >> name=3DContent-Type&value=3Dtext/xml] --- > >> Fixed: [shownext] was not properly working under OSX > >> with apache --- > >> Fixed: PATH_TRANSLATED under OSX and Solaris > >> --- > >> New: [islicensed] with two values: "T" or "F". If the > >> License number matches the domain, we will get a "T", > >> otherwise, we get a "F" and WebDNA will run as > >> freeware. --- > >> Fixed: was not > >> working --- > >> Fixed: [decrypt] could not decrypt the seed > >> "TEMPLATE", for use with encrypted templates --- > >> New: SMTP auth enable with [sendmail].. both a global > >> setting and a over-riding local setting option (ie. > >> within the [sendmail] context) --- > >> Fixed: [setcookie] was not writing anymore to the > >> browser. --- > >> Fixed: [redirect] was not working anymore. > >> --- > >> Fixed: Passing a value to a page using GET like > >> test.dna?thetest=3Dthisisasmalltest was just passing > >> "[thetest]" in the browser: it was not interpreted > >> and showed up. --- > >> Fixed: Introducing an URL variable name using a > >> context name was producing strange results. The > >> ?text=3D bug is now checking for known contexts, and if > >> it is not a known context, it does the appropriate > >> thing. For example, the variable setting via GET is > >> working, but the ?text=3D is blocked --- > >> Fixed: [appendfile file=3Dtest.html]More > >> text[/appendfile] was creating an empty file when it > >> should have written "More text" in it. File > >> permission of index.html was 644 --- > >> Fixed: [writefile file=3Dtest.html]Some text[/writefile] > >> was creating an empty file when it should have > >> written "Some text" in it. File permission of > >> index.html was 660 --- > >> Fixed: [ipaddress] was not working anymore under OSX > >> --- > >> Fixed: [referrer] was showing "FastCGI" instead of the > >> real refering page under OSX. --- > >> Fixed: the delete command could delete items in a > >> database, even when it is not allowed as a (URL) > >> command. --- > >> Deprecated: XML-like syntax > >> Deprecated: [applescript] > >> Deprecated: phone home system > >> Deprecated: the URL command system > >> Deprecated: sandboxes and "global" > >> Deprecated: old licensing system (domain limits, > >> versions=85) > >>=20 > >> On Jan 25, 2011, at 16:22, Olin Lagon wrote: > >>> Is there a list of just new features in 7, if any? > >>> Will this work on OSX using multiple local domains > >>> (via httpd-vhosts)? I'd love to give the OSX version > >>> a spin. > >>>=20 > >>> Also, is there a set of instructions for CentOS? > >>>=20 > >>> Thanks! Olin > >>>=20 > >>> christophe.billiottet@webdna.us wrote: > >>>> Sure! i mail it privately. > >>>>=20 > >>>> - chris > >>>>=20 > >>>> On Jan 25, 2011, at 14:35, Steve Craig wrote: > >>>>> Hi Chris > >>>>>=20 > >>>>> I'm just about to set up a new in-house server for > >>>>> our internal accounts and stuff. Could I try the > >>>>> version 7 please on OSX? > >>>>>=20 > >>>>> Cheers > >>>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >>>>> Steve Craig - Asylum Interactive Ltd > >>>>> Tel +44 1330 860550 Fax +44 1330 860880 > >>>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >>>>>=20 > >>>>> http://www.asylumweb.com > >>>>>=20 > >>>>> Email: > >>>>> steve@asylumweb.com > >>>>>=20 > >>>>> Skype: s.craig - iChat: steve.craig > >>>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > >>>>>=20 > >>>>>=20 > >>>>>=20 > >>>>>=20 > >>>>> On 25 Jan 2011, at 09:37, > >>>>> christophe.billiottet@webdna.us > >>>>>=20 > >>>>> wrote: > >>>>>> Version 7.0 is not officially released yet: we are > >>>>>> still working on the Windows version and we are > >>>>>> in the process of raising funds to launch a > >>>>>> successful marketing campaign. I will be glad to > >>>>>> provide a 7.0 version to whoever is asking for it > >>>>>> but you will be on your own to install it. Ken > >>>>>> already wrote a "manual" on how to install WebDNA > >>>>>> 7.0 with lighttpd (highly recommended if you > >>>>>> don't need apache) and the OSX install process > >>>>>> with apache is also documented. > >>>>>=20 > >>>>> --------------------------------------------------- > >>>>> ------ This message is sent to you because you are > >>>>> subscribed to the mailing list > >>>>> > >>>>> . > >>>>> To unsubscribe, E-mail to: > >>>>> > >>>>>=20 > >>>>> archives: > >>>>> http://mail.webdna.us/list/talk@webdna.us > >>>>>=20 > >>>>> Bug Reporting: > >>>>> support@webdna.us > >>>>=20 > >>>> ---------------------------------------------------- > >>>> ----- This message is sent to you because you are > >>>> subscribed to the mailing list > >>>> > >>>> . > >>>> To unsubscribe, E-mail to: > >>>> > >>>>=20 > >>>> archives: > >>>> http://mail.webdna.us/list/talk@webdna.us > >>>>=20 > >>>> Bug Reporting: > >>>> support@webdna.us > >>>=20 > >>> ----------------------------------------------------- > >>> ---- 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 > >>=20 > >> ------------------------------------------------------ > >> --- 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 > >=20 > > ------------------------------------------------------- > > -- 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 >=20 > --------------------------------------------------------- > 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 --Boundary-01=_cVNQNDIjmGM/TaY Content-Type: text/html; charset="windows-1252" Content-Transfer-Encoding: quoted-printable

[thisport] = is not in the docs. What other tags/contexts are undocumented?

Sincerely,<= /p>

Kenneth Gro= me

> Is tha= t what [thisport] does for us? return 80 for http

> and 44= 3 for https?

>

> Brian = =46ries

> BrainS= can Software

>

> On Jan= 26, 2011, at 4:34 PM, Stuart Tremain wrote:

> > C= hris

> > <= /p>

> > T= here have been many attempts to create an easy way to

> > d= etermine if a page is being served HTTP or HTTPS

> > <= /p>

> > A= ny closer with this ??

> > <= /p>

> > <= /p>

> > R= egards

> > <= /p>

> > S= tuart Tremain

> > I= DFK Web Developments

> > A= USTRALIA

> > w= ebdna@idfk.com.au

> > <= /p>

> > O= n 26/01/2011, at 6:04 AM, christophe.billiottet@webdna.us wrote:

> >&g= t; There is no real new feature in 7.0. It is more a

> >&g= t; transition version toward the WebDNA i had in mind

> >&g= t; when we bought it to SmithMicro.

> >&g= t;

> >&g= t; We fixed some remaining bugs and added few things. We

> >&g= t; also changed the [append] tag to be much much faster.

> >&g= t; Here a list:

> >&g= t;

> >&g= t;

> >&g= t; -----

> >&g= t; Fixed: The serial number validation routine fails out

> >&g= t; with a wrong number, and causes the page not

> >&g= t; reloading. -----

> >&g= t; The libmysqlclient.so.15/libmysqlclient.so.16 problem

> >&g= t; for the glibcv3 version: Ubuntu 10.xx comes with

> >&g= t; libmysqlclient.so.16, and webdna.fcgi requests

> >&g= t; libmysqlclient.so.15 The two versions of

> >&g= t; libmysqlclient aren't binary compatible, which is why

> >&g= t; the soname was changed from 15 to 16. There is no way

> >&g= t; to build a single binary that works with both

> >&g= t; libraries. We built two binaries. -----

> >&g= t; Changed: The 6.2 code always reloaded the db after 100

> >&g= t; lines. We changed this for 1,000 lines on 7.0 code.

> >&g= t; -----

> >&g= t; Fixed: the [append] tag was writing to DISK instead or

> >&g= t; writing to RAM. It now depends on the AutoCommit

> >&g= t; value in prefs. If true, it will append each line as

> >&g= t; before.

> >&g= t; If false, it will buffer in memory.

> >&g= t; -----

> >&g= t; Fixed: the [formvariables] context bug when using

> >&g= t; ENCTYPE=3D"multipart/form-data": issue with the

> >&g= t; processing of multipart post. -----

> >&g= t; Fixed: [sendmail] problem with the FreeBSD version

> >&g= t; beacuse of a threading problem. Fixed by forcing it

> >&g= t; to use libpthread instead of libc_r -----

> >&g= t; Fixed: bug when the [math] variable name includes a

> >&g= t; number like in [math]thetest3=3D43[/math] ---

> >&g= t; New: added the new tag [thirurlplusget]

> >&g= t;

> >&g= t; so the [thisurl] tag will produce this:

> >&g= t; /x/y/z/index.dna

> >&g= t;

> >&g= t; and the [thirurlplusget] tag will produce this:

> >&g= t; /x/y/z/index.dna?a=3Db&c=3Dd

> >&g= t; ---

> >&g= t; New: /WebCatalog folder eliminated

> >&g= t; ---

> >&g= t; New: config file is now webdna.ini

> >&g= t; ---

> >&g= t; New: [isaccelerated] tag returns "T" or "F"

> >&g= t; ---

> >&g= t; Fixed: a local copy runs as "licensed" when called

> >&g= t; through 127.0.0.1 or "localhost" ---

> >&g= t; Fixed: triggers now work with unlicensed version

> >&g= t; ---

> >&g= t; Fixed: the triggers are not properly working

> >&g= t; ---

> >&g= t; New: added a solid blowfish code to [encrypt]

> >&g= t; ---

> >&g= t; Fixed: [returnraw] - http status codes was not working

> >&g= t; on all platforms due of Apache 2.0 changes in the API

> >&g= t; and also the WebDNA module was not accommodating all

> >&g= t; status codes. ---

> >&g= t; Fixed: [createdate] and [moddate] were being confused

> >&g= t; on unix machines in both the [listfiles] context and

> >&g= t; [fileinfo] context. ---

> >&g= t; Fixed: [date format=3D] was not working on all platforms

> >&g= t; ---

> >&g= t; Fixed: mysql Windows bug

> >&g= t; ---

> >&g= t; New: xalan and xerces are now integrated into the

> >&g= t; binary ---

> >&g= t; New: [thishost] shows the server name WebDNA is

> >&g= t; running on ---

> >&g= t; New: [listallcontexts] shows a list of all reserved

> >&g= t; context names ---

> >&g= t; New: [thisport] shows the port number of the server

> >&g= t; WebDNA is running on. ---

> >&g= t; Bug: xerces has some flaws under OSX. See below

> >&g= t;

> >&g= t; [xmlparse

> >&g= t; var=3Dxml_var1&source=3D[url]http://gdata.youtube.com/fee

> >&g= t; ds/api/videos/-/volleyball[/url]][/xmlparse] [xmlnode

> >&g= t; ref=3Dxml_var1&path=3Dnamed:feed]

> >&g= t; [name]=3D[value]<br>

> >&g= t; [xmlnodes]

> >&g= t; &nbsp;- [name]=3D[value]<br>

> >&g= t; [xmlnodes]

> >&g= t; &nbsp;&nbsp; - [name]=3D[value]<br>

> >&g= t; [/xmlnodes]

> >&g= t; [/xmlnodes]

> >&g= t; [/xmlnode]

> >&g= t;

> >&g= t; A workaround is to write the WEBDNA to download the

> >&g= t; XML file, and then include it in the XMLParse Pseudo

> >&g= t; code:

> >&g= t; [DOWNLOAD FILE source=3Dhttp://.....]

> >&g= t; [XMLParse vars=3Dblah][include target

> >&g= t; file.xml][/XMLParse] ---

> >&g= t; Fixed: [setmimeheader] is now working as expected

> >&g= t; example: [setmimeheader

> >&g= t; name=3DContent-Type&value=3Dtext/xml] ---

> >&g= t; Fixed: [shownext] was not properly working under OSX

> >&g= t; with apache ---

> >&g= t; Fixed: PATH_TRANSLATED under OSX and Solaris

> >&g= t; ---

> >&g= t; New: [islicensed] with two values: "T" or "F". If th= e

> >&g= t; License number matches the domain, we will get a "T",

> >&g= t; otherwise, we get a "F" and WebDNA will run as

> >&g= t; freeware. ---

> >&g= t; Fixed: <!--HAS_WEBDNA_TAGS_ENCRYPTED_2--> was not

> >&g= t; working ---

> >&g= t; Fixed: [decrypt] could not decrypt the seed

> >&g= t; "TEMPLATE", for use with encrypted templates ---

> >&g= t; New: SMTP auth enable with [sendmail].. both a global

> >&g= t; setting and a over-riding local setting option (ie.

> >&g= t; within the [sendmail] context) ---

> >&g= t; Fixed: [setcookie] was not writing anymore to the

> >&g= t; browser. ---

> >&g= t; Fixed: [redirect] was not working anymore.

> >&g= t; ---

> >&g= t; Fixed: Passing a value to a page using GET like

> >&g= t; test.dna?thetest=3Dthisisasmalltest was just passing

> >&g= t; "[thetest]" in the browser: it was not interpreted

> >&g= t; and showed up. ---

> >&g= t; Fixed: Introducing an URL variable name using a

> >&g= t; context name was producing strange results. The

> >&g= t; ?text=3D bug is now checking for known contexts, and if

> >&g= t; it is not a known context, it does the appropriate

> >&g= t; thing. For example, the variable setting via GET is

> >&g= t; working, but the ?text=3D is blocked ---

> >&g= t; Fixed: [appendfile file=3Dtest.html]More

> >&g= t; text[/appendfile] was creating an empty file when it

> >&g= t; should have written "More text" in it. File

> >&g= t; permission of index.html was 644 ---

> >&g= t; Fixed: [writefile file=3Dtest.html]Some text[/writefile]

> >&g= t; was creating an empty file when it should have

> >&g= t; written "Some text" in it. File permission of

> >&g= t; index.html was 660 ---

> >&g= t; Fixed: [ipaddress] was not working anymore under OSX

> >&g= t; ---

> >&g= t; Fixed: [referrer] was showing "FastCGI" instead of the

> >&g= t; real refering page under OSX. ---

> >&g= t; Fixed: the delete command could delete items in a

> >&g= t; database, even when it is not allowed as a (URL)

> >&g= t; command. ---

> >&g= t; Deprecated: XML-like syntax

> >&g= t; Deprecated: [applescript]

> >&g= t; Deprecated: phone home system

> >&g= t; Deprecated: the URL command system

> >&g= t; Deprecated: sandboxes and "global"

> >&g= t; Deprecated: old licensing system (domain limits,

> >&g= t; versions=85)

> >&g= t;

> >&g= t; On Jan 25, 2011, at 16:22, Olin Lagon wrote:

> >&g= t;> Is there a list of just new features in 7, if any?

> >&g= t;> Will this work on OSX using multiple local domains

> >&g= t;> (via httpd-vhosts)? I'd love to give the OSX version

> >&g= t;> a spin.

> >&g= t;>

> >&g= t;> Also, is there a set of instructions for CentOS?

> >&g= t;>

> >&g= t;> Thanks! Olin

> >&g= t;>

> >&g= t;> christophe.billiottet@webdna.us wrote:

> >&g= t;>> Sure! i mail it privately.

> >&g= t;>>

> >&g= t;>> - chris

> >&g= t;>>

> >&g= t;>> On Jan 25, 2011, at 14:35, Steve Craig wrote:

> >&g= t;>>> Hi Chris

> >&g= t;>>>

> >&g= t;>>> I'm just about to set up a new in-house server for

> >&g= t;>>> our internal accounts and stuff. Could I try the

> >&g= t;>>> version 7 please on OSX?

> >&g= t;>>>

> >&g= t;>>> Cheers

> >&g= t;>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

> >&g= t;>>> Steve Craig - Asylum Interactive Ltd

> >&g= t;>>> Tel +44 1330 860550 Fax +44 1330 860880

> >&g= t;>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

> >&g= t;>>>

> >&g= t;>>> http://www.asylumweb.com

> >&g= t;>>>

> >&g= t;>>> Email:

> >&g= t;>>> steve@asylumweb.com

> >&g= t;>>>

> >&g= t;>>> Skype: s.craig - iChat: steve.craig

> >&g= t;>>> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D

> >&g= t;>>>

> >&g= t;>>>

> >&g= t;>>>

> >&g= t;>>>

> >&g= t;>>> On 25 Jan 2011, at 09:37,

> >&g= t;>>> christophe.billiottet@webdna.us

> >&g= t;>>>

> >&g= t;>>> wrote:

> >&g= t;>>>> Version 7.0 is not officially released yet: we are

> >&g= t;>>>> still working on the Windows version and we are

> >&g= t;>>>> in the process of raising funds to launch a

> >&g= t;>>>> successful marketing campaign. I will be glad to

> >&g= t;>>>> provide a 7.0 version to whoever is asking for it

> >&g= t;>>>> but you will be on your own to install it. Ken

> >&g= t;>>>> already wrote a "manual" on how to install Web= DNA

> >&g= t;>>>> 7.0 with lighttpd (highly recommended if you

> >&g= t;>>>> don't need apache) and the OSX install process

> >&g= t;>>>> with apache is also documented.

> >&g= t;>>>

> >&g= t;>>> ---------------------------------------------------

> >&g= t;>>> ------ This message is sent to you because you are

> >&g= t;>>> subscribed to the mailing list

> >&g= t;>>> <talk@webdna.us>

> >&g= t;>>> .

> >&g= t;>>> To unsubscribe, E-mail to:

> >&g= t;>>> <talk-leave@webdna.us>

> >&g= t;>>>

> >&g= t;>>> archives:

> >&g= t;>>> http://mail.webdna.us/list/talk@webdna.us

> >&g= t;>>>

> >&g= t;>>> Bug Reporting:

> >&g= t;>>> support@webdna.us

> >&g= t;>>

> >&g= t;>> ----------------------------------------------------

> >&g= t;>> ----- This message is sent to you because you are

> >&g= t;>> subscribed to the mailing list

> >&g= t;>> <talk@webdna.us>

> >&g= t;>> .

> >&g= t;>> To unsubscribe, E-mail to:

> >&g= t;>> <talk-leave@webdna.us>

> >&g= t;>>

> >&g= t;>> archives:

> >&g= t;>> http://mail.webdna.us/list/talk@webdna.us

> >&g= t;>>

> >&g= t;>> Bug Reporting:

> >&g= t;>> support@webdna.us

> >&g= t;>

> >&g= t;> -----------------------------------------------------

> >&g= t;> ---- This message is sent to you because you are

> >&g= t;> subscribed to the mailing list . To unsubscribe,

> >&g= t;> E-mail to: archives:

> >&g= t;> http://mail.webdna.us/list/talk@webdna.us Bug

> >&g= t;> Reporting: support@webdna.us

> >&g= t;

> >&g= t; ------------------------------------------------------

> >&g= t; --- This message is sent to you because you are

> >&g= t; subscribed to the mailing list <talk@webdna.us>.

> >&g= t; To unsubscribe, E-mail to: <talk-leave@webdna.us>

> >&g= t; archives: http://mail.webdna.us/list/talk@webdna.us

> >&g= t; Bug Reporting: support@webdna.us

> > <= /p>

> > -= =2D-----------------------------------------------------

> > -= =2D This message is sent to you because you are

> > s= ubscribed to the mailing list <talk@webdna.us>.

> > T= o unsubscribe, E-mail to: <talk-leave@webdna.us>

> > a= rchives: http://mail.webdna.us/list/talk@webdna.us

> > B= ug Reporting: support@webdna.us

>

> ------= =2D--------------------------------------------------

> This m= essage is sent to you because you are subscribed to

> the ma= iling list <talk@webdna.us>.

> To uns= ubscribe, E-mail to: <talk-leave@webdna.us>

> archiv= es: http://mail.webdna.us/list/talk@webdna.us

> Bug Re= porting: support@webdna.us

--Boundary-01=_cVNQNDIjmGM/TaY-- Kenneth Grome

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:

Paths relative to root not working (2000) webcatalog plugin bug - webstar refusing connections (1999) Append..... doesn't (2000) [OT] Movie (2002) A Global Variable (1997) Unexceling (was I need a smart quote...) (1999) Cart questions (1997) Sandbox DB permissions (2005) Whats going on with my SERIAL NUMBER??? (1998) Quitting WebMerchant ? (1997) Plugin or CGI or both (1997) Database Updates (1997) [WriteFile] problems (1997) Integration? (1999) WebCatalog can't find database (1997) Browser Resolution (1999) Re:quit command on NT (1997) WebCatalog for guestbook ? (1997) Communigate+Webcat (2001) random in arizona (2003)