From punkey at xs4all.nl Sun Sep 8 14:56:20 2002 From: punkey at xs4all.nl (Punkey) Date: Sun Sep 8 13:56:20 2002 Subject: [thesite] evolttest.sql in SQL2000? Message-ID: <1815759581.20020908164005@xs4all.nl> Hey all, I downloaded the Evolt CMS last night to check it out and see if I can help somewhere. But I seem to have a problem with the sql-script which is included in the package. I can't get it to run in my Query analyzer in SQL2000. I found in the archives here that it actually is an oracle-script. Is there anybody who already has a .sql-file for the creation of the tables in SQL2000? Any other help would be appreciated! Kind regards Frank Meeuwsen Punkey.com From shaun at mindlock.co.uk Sun Sep 8 18:43:01 2002 From: shaun at mindlock.co.uk (Shaun) Date: Sun Sep 8 17:43:01 2002 Subject: [thesite] evolttest.sql in SQL2000? Message-ID: <000501c23f14$94609a90$2137c350@nex> Hi Frank I m also looking for one as well, can you let me know if you find one? regards Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.evolt.org/pipermail/thesite/attachments/20020908/dbfedcae/attachment.html From r937 at interlog.com Sun Sep 8 18:43:03 2002 From: r937 at interlog.com (rudy) Date: Sun Sep 8 17:43:03 2002 Subject: [thesite] evolttest.sql in SQL2000? Message-ID: <01c2577c$9b2eec20$1be6059a@rudy> >Is there anybody who already has a .sql-file for the creation of the >tables in SQL2000? if there is, i'd like to know too but i suspect there isn't, because of the need to change the code to match we make extensive use of oracle's sequences, with the result that every INSERT uses NEXTVAL in sql/server, with identity fields, all the INSERTS would have to be rewritten to remove reference to those fields rudy From spectrum at post.com Thu Sep 12 14:39:13 2002 From: spectrum at post.com (Spectrum WebDesign) Date: Thu Sep 12 13:39:13 2002 Subject: [thesite] Evolt-CMS script from Oracle to SQL Message-ID: <20020912183155.42254.qmail@mail.com> hi guys, finally ok. Scripts from Oracle to SQL for Evolt-CMS. Success for all. Marco Brazilian Poor CFDeveloper p.s.: any error please contact me -- __________________________________________________________ Sign-up for your own FREE Personalized E-mail at Mail.com http://www.mail.com/?sr=signup -------------- next part -------------- CREATE TABLE ATTRIBUTE ( ATTRID INT NOT NULL, ATTRNAME VARCHAR (50) NOT NULL, PRIMARY KEY ( ATTRID ) ); GO CREATE TABLE CATEGORYS ( CATEGORYID INT NOT NULL, CATTYPEID INT NOT NULL, CATEGORY VARCHAR (50) NOT NULL, CREATED DATETIME DEFAULT GETDATE() NOT NULL, CREATEDBY INT NOT NULL, ACTIVE INT DEFAULT 0 NOT NULL, ACTIVEBY INT, DATEMOD DATETIME ); GO CREATE TABLE CATTYPE ( CATTYPEID INT NOT NULL, CATTYPENAME VARCHAR (50) NOT NULL, CREATED DATETIME DEFAULT GETDATE() NOT NULL, CREATEDBY INT NOT NULL, ACTIVE INT DEFAULT 0 NOT NULL, ACTIVEBY INT, DATEMOD DATETIME ); GO CREATE TABLE CONTACT ( CONTACTID INT, FIRSTNAME VARCHAR (50), LASTNAME VARCHAR (50), EMAIL VARCHAR (50), MESSAGE TEXT, MAILDATE DATETIME, USERID INT, ANSWER INT, ACTIVE INT ); GO CREATE TABLE CONTENT ( CONTENTID INT NOT NULL, CONTENTNAME VARCHAR (50), BODY TEXT, USERID INT, DATEMOD DATETIME, SIGNOFF INT, ADMINID INT, CATEGORYID INT, SIGNDATETIME DATETIME, SYNOPSIS VARCHAR (500), RATING FLOAT DEFAULT 0 NOT NULL, RATINGS INT DEFAULT 0 NOT NULL, REPLIES INT DEFAULT 0 NOT NULL, KEYPHRASE VARCHAR (100), PRIMARY KEY ( CONTENTID ) ); GO CREATE TABLE CONTENT2 ( CONTENTID INT NOT NULL, LANGUAGEID INT DEFAULT 3846 NOT NULL, CATEGORYID INT NOT NULL, USERID INT NOT NULL, DATEMOD DATETIME DEFAULT GETDATE() NOT NULL, SIGNOFF INT DEFAULT 0 NOT NULL, SIGNDATETIME DATETIME, ADMINID INT, PRIV INT DEFAULT 0 NOT NULL, CONTENTNAME VARCHAR (50) NOT NULL, SYNOPSIS VARCHAR (255), BODY TEXT, RATING FLOAT DEFAULT 0 NOT NULL, RATINGS INT DEFAULT 0 NOT NULL, REPLIES INT DEFAULT 0 NOT NULL ); GO CREATE TABLE ELEMENT ( ELEMENTID INT NOT NULL, ELEMENTNAME VARCHAR (100) NOT NULL, PRIMARY KEY ( ELEMENTID ) ); CREATE TABLE LANGUAGE ( LANGUAGEID INT NOT NULL, LANGUAGENAME VARCHAR (50) NOT NULL ); GO CREATE TABLE MEMBATTR ( MEMBATTRID INT NOT NULL, MEMBERID INT NOT NULL, ATTRID INT NOT NULL, SEQ INT NOT NULL, PRIV INT NOT NULL, ATTRVALUE VARCHAR (255), REMARKS VARCHAR (255), PRIMARY KEY ( MEMBATTRID ) ); GO CREATE TABLE MEMBER ( MEMBERID INT NOT NULL, CREATEDATETIME DATETIME DEFAULT GETDATE() NOT NULL, DATEMOD DATETIME DEFAULT GETDATE() NOT NULL, FIRSTNAME VARCHAR (50) NOT NULL, LASTNAME VARCHAR (50) NOT NULL, PRIV INT DEFAULT 2 NOT NULL, ACTIVE INT DEFAULT 1 NOT NULL, PRIMARY KEY ( MEMBERID ) ); GO CREATE TABLE POSTS ( POSTDATE DATETIME, POPDATE VARCHAR (350), AUTHOR VARCHAR (350), SUBJECT VARCHAR (350), SORTSUBJECT VARCHAR (350), HEADER VARCHAR (2000), ID INT, BODY TEXT, TESTDATE VARCHAR (50) ); GO CREATE INDEX POSTS_INDEX ON POSTS (ID, SUBJECT); GO CREATE TABLE RATING ( RATINGID INT NOT NULL, USERID INT NOT NULL, CONTENTID INT NOT NULL, DATECREATED DATETIME DEFAULT GETDATE() NOT NULL, LASTMOD DATETIME DEFAULT GETDATE() NOT NULL, RATINGVALUE INT NOT NULL, CONSTRAINT RATINGBETWEEN1AND5 CHECK (ratingvalue between 1 and 5) , CONSTRAINT ONERATINGPERUSERPERARTICLE UNIQUE (USERID, CONTENTID), PRIMARY KEY ( RATINGID ) ); GO CREATE TABLE REPLIES ( COMMENTID INT, CONTENTID INT, USERID VARCHAR (50) , MESSAGE TEXT, DATEMOD DATETIME, GRRRS INT, MESSAGENAME VARCHAR (50) ); GO CREATE TABLE RESPONSE ( CONRESID INT, CONTACTID INT, RESPONDER INT, RESPONSE TEXT, MAILDATE DATETIME, ACTIVE INT, RESPNDR INT, RESPNS INT, REPLY TEXT ); GO CREATE TABLE SCHEME ( SCHEMEID INT NOT NULL, SCHEMEUSERID INT NOT NULL, SCHEMENAME VARCHAR (50) NOT NULL, PRIV INT DEFAULT 0 NOT NULL, PRIMARY KEY ( SCHEMEID ) ); GO CREATE TABLE SCHEMEELEMENT ( SCHEMEELEMID INT NOT NULL, SCHEMEID INT NOT NULL, ELEMENTID INT NOT NULL, SCHEMEELEMVALUE VARCHAR (100) NOT NULL, PRIMARY KEY ( SCHEMEELEMID ) ); GO CREATE TABLE SEARCHINDEX ( SINDEX INT, USERID INT, DATEMOD DATETIME ); GO CREATE TABLE THELIST ( POSTDATE DATETIME, POPDATE VARCHAR (350), AUTHOR VARCHAR (350), SUBJECT VARCHAR (350), SORTSUBJECT VARCHAR (350), HEADER VARCHAR (2000), ID INT, BODY TEXT, CONTENT TEXT ); GO CREATE TABLE THETIPS ( TIP_ID INT NOT NULL, TIP_DATE DATETIME NOT NULL, AUTHOR_ID INT, TIP_TYPE VARCHAR (200), AUTHOR VARCHAR (50) , BODY TEXT, PRIMARY KEY ( TIP_ID ) ); GO CREATE TABLE USERS ( USERID INT NOT NULL, WHO VARCHAR (50) NOT NULL, PASS VARCHAR (50) NOT NULL, CREATEDATE DATETIME DEFAULT GETDATE() NOT NULL, DATEMOD DATETIME DEFAULT GETDATE() NOT NULL, LASTLOGIN DATETIME DEFAULT GETDATE() NOT NULL, LEAVEOUT INT DEFAULT 0 NOT NULL, NOTIFY INT DEFAULT 1 NOT NULL, ADMIN INT DEFAULT 0 NOT NULL, ACTIVE INT DEFAULT 1 NOT NULL, GOD INT DEFAULT 0 NOT NULL, THELIST INT DEFAULT 0 NOT NULL, USERPRIV INT DEFAULT 1 NOT NULL, PRIV INT DEFAULT 3 NOT NULL, FIRSTNAME VARCHAR (50) , LASTNAME VARCHAR (50) , EMAIL VARCHAR (50) , MEMBERID INT, COOKIE VARCHAR (50) , PRIMARY KEY ( USERID ) ); ALTER TABLE MEMBATTR ADD CONSTRAINT [FK_MEMBATTR_MEMBER] FOREIGN KEY ( [MEMBERID] ) REFERENCES MEMBER ( [MEMBERID] ) GO ALTER TABLE MEMBATTR ADD CONSTRAINT [FK_MEMBATTR_ATTRIBUTE] FOREIGN KEY ( [ATTRID] ) REFERENCES ATTRIBUTE ( [ATTRID] ) GO ALTER TABLE RATING ADD CONSTRAINT [FK_RATING_USERS] FOREIGN KEY ( [USERID] ) REFERENCES USERS ( [USERID] ) GO ALTER TABLE RATING ADD CONSTRAINT [FK_RATING_CONTENT] FOREIGN KEY ( [CONTENTID] ) REFERENCES CONTENT ( [CONTENTID] ) GO ALTER TABLE SCHEME ADD CONSTRAINT [FK_SCHEME_USERS] FOREIGN KEY ( [SCHEMEUSERID] ) REFERENCES USERS ( [USERID] ) GO ALTER TABLE SCHEMEELEMENT ADD CONSTRAINT [FK_SCHEMEELEMENT_SCHEME] FOREIGN KEY ( [SCHEMEID] ) REFERENCES SCHEME ( [SCHEMEID] ) GO ALTER TABLE SCHEMEELEMENT ADD CONSTRAINT [FK_SCHEMEELEMENT_ELEMENT] FOREIGN KEY ( [ELEMENTID] ) REFERENCES ELEMENT ( [ELEMENTID] ) GO From punkey at xs4all.nl Fri Sep 27 12:09:00 2002 From: punkey at xs4all.nl (Punkey) Date: Fri Sep 27 11:09:00 2002 Subject: [thesite] How to get the application started with CFMX? Message-ID: <823712878.20020927180822@xs4all.nl> Hey all, I'm having the hardest time getting the Evolt application running. I have IIS 5.0 and Cold Fusion MX. I install the public_html folder in the c:\cfusionMX\wwwroot folder and make a virtual directory in IIS to that folder (C:\CFusionMX\wwwroot\public_html\) Now, I see the startpage from Evolt, but I can't do anything! Whatever I click, I get errors, because of wrong mappings (I guess). The link "Submit an article links to localhost/article/index.html?action=submit instead of localhost/evolt/article/index.html?action=submit. But the again, that link doesn't work either What am I missing here? Am I doing something wrong? I hope someone can help me out here.... Kind regards, Frank From jeff at members.evolt.org Fri Sep 27 15:48:22 2002 From: jeff at members.evolt.org (.jeff) Date: Fri Sep 27 14:48:22 2002 Subject: [thesite] How to get the application started with CFMX? In-Reply-To: <823712878.20020927180822@xs4all.nl> Message-ID: frank, ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< > From: Punkey > > I'm having the hardest time getting the Evolt > application running. I have IIS 5.0 and Cold Fusion MX. ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< the source code will require some serious modifications to get it to run under iis. start by changing the custom 404 handler to a url handler set to /index.cfm. second, you'll need to fool around with the formurl2attributes custom tag to parse the query string instead of the cgi.request_uri. ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< > I install the public_html folder in the > c:\cfusionMX\wwwroot folder and make a virtual directory > in IIS to that folder > (C:\CFusionMX\wwwroot\public_html\) Now, I see the > startpage from Evolt, but I can't do anything! ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< you've got that part setup right. ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< > Whatever I click, I get errors, because of wrong > mappings (I guess). ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< you'll need a mapping for /evolt which points to c:/cfusionmx/wwwroot/public_html/ ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< > The link "Submit an article links to > localhost/article/index.html?action=submit instead of > localhost/evolt/article/index.html?action=submit. ><><><><><><><><><><><><><><><><><><><><><><><><><><><><>< it's not supposed to point to /evolt/article/index.html?action=submit. what you're seeing is correct. the entire site purposely generates 404 errors in order to maintain the search engine friendly urls. get the url parsing correct, and that'll solve most of your problems. .jeff http://evolt.org/ jeff@members.evolt.org http://members.evolt.org/jeff/ From Liorean at user.bip.net Fri Sep 27 17:33:00 2002 From: Liorean at user.bip.net (Liorean) Date: Fri Sep 27 16:33:00 2002 Subject: [thesite] Referrers for m.e.o account? Message-ID: <5.1.0.14.0.20020927232928.00b2a7d0@pop3.bip.net> Hello! If I'm trying to collect the referrers for the bookmarklets I have on my m.e.o account. Where can I find the referrers log, and do I have access to it? If you have one but I haven't got access to it, is there any possibility to get access to those concerning my account? I thought that people might be interested in what pages my bookmarklets have been used on. (ViewStyles is the most interesting in this case...) // Liorean From dmah at members.evolt.org Sun Sep 29 12:10:00 2002 From: dmah at members.evolt.org (Dean Mah) Date: Sun Sep 29 11:10:00 2002 Subject: [thesite] Referrers for m.e.o account? In-Reply-To: <5.1.0.14.0.20020927232928.00b2a7d0@pop3.bip.net> References: <5.1.0.14.0.20020927232928.00b2a7d0@pop3.bip.net> Message-ID: <20020929160539.GA1214@alice.cg.shawcable.net> Currently the logs are not separated for individual accounts and are not accessible. I'll look into the possibility, however. Dean - on behalf of evolt.org - On Fri, Sep 27, 2002 at 11:35:08PM +0200, Liorean wrote: > Hello! > > If I'm trying to collect the referrers for the bookmarklets I have on my > m.e.o account. > Where can I find the referrers log, and do I have access to it? > If you have one but I haven't got access to it, is there any possibility to > get access to those concerning my account? > > I thought that people might be interested in what pages my bookmarklets > have been used on. > (ViewStyles is the most interesting in this case...) > > // Liorean