From tony at tonybibbs.com Mon Feb 2 12:56:00 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Mon, 02 Feb 2004 11:56:00 -0600 Subject: [geeklog-users] ssl for admin functions In-Reply-To: <34BC07F8-5393-11D8-9594-0003931D9B5A@tedroby.com> References: <34BC07F8-5393-11D8-9594-0003931D9B5A@tedroby.com> Message-ID: <401E8F30.9060408@tonybibbs.com> Assuming you are using a fairly recent version of PHP you could do this in lib-common.php *after* the include of config.php: if (stristr($_SERVER["SERVER_PROTOCOL"],'https')) { $_CONF['site_url'] = 'https://mydomain'; } else { $_CONF['site_url'] = 'http://mydomain'; } This assumes that your admins login using some page that is SSL'd and from that point on the snippet above should keep them in SSL. --Tony Ted Roby wrote: > I am attempting to use SSL to handle any traffic to http://mydomain/admin. > > I am doing this with redirects in my Apache conf file like this: > > RedirectMatch admin$ https://mydomain/admin/ > RedirectMatch admin(.+)$ https://mydomain/admin$1 > > (note, mydomain is replaced with a valid domain) > > I have successfully configured two VirtualHosts. One is on port 80, and the > other handles SSL on port 443. > > However, if I make any changes as an Admin, those changes are not saved. > > I suspect the culprit to be the following line in my config.php script: > > $_CONF['site_url'] = 'http://mydomain'; > > My goal is to leave normal users on port 80, while redirecting admins > over port 443. Again, the only problem with this is that changes are > not being saved. > > Can someone point me in the right direction to get this to work? > > > --- > Random fortune: > > A long-forgotten loved one will appear soon. > > Buy the negatives at any price. > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From naderrau at services01.student.math.uwaterloo.ca Mon Feb 2 14:18:19 2004 From: naderrau at services01.student.math.uwaterloo.ca (naderrau at services01.student.math.uwaterloo.ca) Date: Mon, 2 Feb 2004 14:18:19 -0500 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details Message-ID: <1075749499.401ea27b99f77@www.nexusmail.uwaterloo.ca> Hi, I just installed GL last night and finally got it running this morning. The page comes up but it says : An SQL error has occured. Please see error.log for details And error.log says : Mon Feb 2 23:01:12 2004 - 1064: You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near '= gl_comments.sid) AND (gl_stories.perm_anon >= 2) AND (gl_stor. SQL in question: SELECT DISTINCT count(*) AS dups, type, question, gl_stories.title, gl_stories.sid, qid, max(gl_comments.date) as lastdate FROM gl_comments LEFT JOIN gl_stories ON ((.sid = gl_comments.sid) AND (gl_stories.perm_anon >= 2) AND (gl_stories.draft_flag = 0) AND (tid IN ('General','GeekLog'))) LEFT JOIN gl_pollquestions ON ((qid = gl_comments.sid) A ND (gl_pollquestions.perm_anon >= 2)) WHERE (gl_comments.date >= (DATE_SUB(NOW(), INTERVAL 172800 SECOND))) AND ((((gl_stories.perm_anon IS NOT NULL))) OR (((gl_pollquestions.perm_anon IS NOT NULL)))) GROUP BY gl_comments.sid ORDER BY 7 DESC LIMIT 15 I'm using the latest GL, and my PHP is higher than 4.04. And I'm using Mac OSX.3 if it matters...(?) Can somebody help me interepret why this might be happening? Thanks, Neil ---------------------------------------- This mail sent through www.mywaterloo.ca From naderrau at uwaterloo.ca Mon Feb 2 15:37:52 2004 From: naderrau at uwaterloo.ca (Neil Derraugh (UW)) Date: Mon, 02 Feb 2004 15:37:52 -0500 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details In-Reply-To: <1075749499.401ea27b99f77@www.nexusmail.uwaterloo.ca> References: <1075749499.401ea27b99f77@www.nexusmail.uwaterloo.ca> Message-ID: <401EB520.3020404@uwaterloo.ca> As it turns out set $_CONF['hidenewcomments'] = 1;'ing seems to mask the symptoms. Thanks go out to Dirk! :) Neil D naderrau at services01.student.math.uwaterloo.ca wrote: >Hi, > >I just installed GL last night and finally got it running this morning. > >The page comes up but it says : >An SQL error has occured. Please see error.log for details > >And error.log says : > >Mon Feb 2 23:01:12 2004 - 1064: You have an error in your SQL syntax. Check the >manual that corresponds to your MySQL server version for the right syntax to use >near '= gl_comments.sid) AND (gl_stories.perm_anon >= 2) AND (gl_stor. SQL in >question: SELECT DISTINCT count(*) AS dups, type, question, gl_stories.title, >gl_stories.sid, qid, max(gl_comments.date) as lastdate FROM gl_comments LEFT >JOIN gl_stories ON ((.sid = gl_comments.sid) AND (gl_stories.perm_anon >= 2) AND >(gl_stories.draft_flag = 0) AND (tid IN ('General','GeekLog'))) LEFT JOIN >gl_pollquestions ON ((qid = gl_comments.sid) A >ND (gl_pollquestions.perm_anon >= 2)) WHERE (gl_comments.date >= >(DATE_SUB(NOW(), INTERVAL 172800 SECOND))) AND ((((gl_stories.perm_anon IS NOT >NULL))) OR (((gl_pollquestions.perm_anon IS NOT NULL)))) GROUP BY >gl_comments.sid ORDER BY 7 DESC LIMIT 15 > >I'm using the latest GL, and my PHP is higher than 4.04. And I'm using Mac >OSX.3 if it matters...(?) > >Can somebody help me interepret why this might be happening? > >Thanks, >Neil > >---------------------------------------- >This mail sent through www.mywaterloo.ca >_______________________________________________ >geeklog-users mailing list >geeklog-users at lists.geeklog.net >http://lists.geeklog.net/listinfo/geeklog-users > > > From tony at tonybibbs.com Mon Feb 2 15:41:38 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Mon, 02 Feb 2004 14:41:38 -0600 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details In-Reply-To: <1075749499.401ea27b99f77@www.nexusmail.uwaterloo.ca> References: <1075749499.401ea27b99f77@www.nexusmail.uwaterloo.ca> Message-ID: <401EB602.5040405@tonybibbs.com> This is wrong: "(.sid = gl_comments.sid)" there should be a table name before ".sid". Not sure why that is happening, though. Submit this as a bug even though experience tells me this is usually a user-mistake during the installation process rather than a bug. We'll try and reproduce it. --Tony naderrau at services01.student.math.uwaterloo.ca wrote: > Hi, > > I just installed GL last night and finally got it running this morning. > > The page comes up but it says : > An SQL error has occured. Please see error.log for details > > And error.log says : > > Mon Feb 2 23:01:12 2004 - 1064: You have an error in your SQL syntax. Check the > manual that corresponds to your MySQL server version for the right syntax to use > near '= gl_comments.sid) AND (gl_stories.perm_anon >= 2) AND (gl_stor. SQL in > question: SELECT DISTINCT count(*) AS dups, type, question, gl_stories.title, > gl_stories.sid, qid, max(gl_comments.date) as lastdate FROM gl_comments LEFT > JOIN gl_stories ON ((.sid = gl_comments.sid) AND (gl_stories.perm_anon >= 2) AND > (gl_stories.draft_flag = 0) AND (tid IN ('General','GeekLog'))) LEFT JOIN > gl_pollquestions ON ((qid = gl_comments.sid) A > ND (gl_pollquestions.perm_anon >= 2)) WHERE (gl_comments.date >= > (DATE_SUB(NOW(), INTERVAL 172800 SECOND))) AND ((((gl_stories.perm_anon IS NOT > NULL))) OR (((gl_pollquestions.perm_anon IS NOT NULL)))) GROUP BY > gl_comments.sid ORDER BY 7 DESC LIMIT 15 > > I'm using the latest GL, and my PHP is higher than 4.04. And I'm using Mac > OSX.3 if it matters...(?) > > Can somebody help me interepret why this might be happening? > > Thanks, > Neil > > ---------------------------------------- > This mail sent through www.mywaterloo.ca > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From dirk at haun-online.de Mon Feb 2 15:54:00 2004 From: dirk at haun-online.de (Dirk Haun) Date: Mon, 2 Feb 2004 21:54:00 +0100 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details In-Reply-To: <401EB602.5040405@tonybibbs.com> References: <401EB602.5040405@tonybibbs.com> Message-ID: <20040202205400.22756@smtp.haun-online.de> Tony, >This is wrong: > >"(.sid = gl_comments.sid)" > >there should be a table name before ".sid". > >Not sure why that is happening, though. We've been through this a couple of times in the forums already. Seems like Apple is shipping some, how should I put it, not-quite-working components with some versions of the operating system. Specifically, this seems to happen on MacOS X Server (Neil, are you on Server?), where the MySQL that ships with it is not properly compiled. Replacing Apple's version with a binary from mysql.com seems to fix these problems. Disclaimer: I'm using the consumer version of MacOS X that doesn't include MySQL. So I'm using mysql.com's version (and a PHP version that I've compiled myself). I never had that problem ... bye, Dirk -- http://www.haun-online.de/ http://www.macosx-faq.de/ From naderrau at services01.student.math.uwaterloo.ca Mon Feb 2 16:15:03 2004 From: naderrau at services01.student.math.uwaterloo.ca (naderrau at services01.student.math.uwaterloo.ca) Date: Mon, 2 Feb 2004 16:15:03 -0500 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details In-Reply-To: <20040202205400.22756@smtp.haun-online.de> References: <401EB602.5040405@tonybibbs.com> <20040202205400.22756@smtp.haun-online.de> Message-ID: <1075756503.401ebdd76cf5c@www.nexusmail.uwaterloo.ca> I'm using Mac OS X.3 Panther 'Client'. It came with mysql, just not configured to run automatically at startup, ditto for php. Quoting Dirk Haun : > Tony, > > >This is wrong: > > > >"(.sid = gl_comments.sid)" > > > >there should be a table name before ".sid". > > > >Not sure why that is happening, though. > > We've been through this a couple of times in the forums already. Seems > like Apple is shipping some, how should I put it, not-quite-working > components with some versions of the operating system. > > Specifically, this seems to happen on MacOS X Server (Neil, are you on > Server?), where the MySQL that ships with it is not properly compiled. > Replacing Apple's version with a binary from mysql.com seems to fix these > problems. > > Disclaimer: I'm using the consumer version of MacOS X that doesn't > include MySQL. So I'm using mysql.com's version (and a PHP version that > I've compiled myself). I never had that problem ... > > bye, Dirk > > > -- > http://www.haun-online.de/ > http://www.macosx-faq.de/ > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > ---------------------------------------- This mail sent through www.mywaterloo.ca From dirk at haun-online.de Mon Feb 2 17:03:43 2004 From: dirk at haun-online.de (Dirk Haun) Date: Mon, 2 Feb 2004 23:03:43 +0100 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details In-Reply-To: <1075756503.401ebdd76cf5c@www.nexusmail.uwaterloo.ca> References: <1075756503.401ebdd76cf5c@www.nexusmail.uwaterloo.ca> Message-ID: <20040202220343.20584@smtp.haun-online.de> Neil, >I'm using Mac OS X.3 Panther 'Client'. > >It came with mysql, just not configured to run automatically at startup, ditto >for php. Hmm, has this changed with 10.3? Previous versions included PHP (disabled), but not MySQL. bye, Dirk -- http://www.haun-online.de/ http://www.macosx-faq.de/ From naderrau at services01.student.math.uwaterloo.ca Mon Feb 2 17:15:57 2004 From: naderrau at services01.student.math.uwaterloo.ca (naderrau at services01.student.math.uwaterloo.ca) Date: Mon, 2 Feb 2004 17:15:57 -0500 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details In-Reply-To: <20040202220343.20584@smtp.haun-online.de> References: <1075756503.401ebdd76cf5c@www.nexusmail.uwaterloo.ca> <20040202220343.20584@smtp.haun-online.de> Message-ID: <1075760157.401ecc1d7f509@www.nexusmail.uwaterloo.ca> I beg your pardon. You are correct. I installed mysql-standard-4.0.17.dmg. PHP I enabled, that's right. Quoting Dirk Haun : > Neil, > > >I'm using Mac OS X.3 Panther 'Client'. > > > >It came with mysql, just not configured to run automatically at startup, > ditto > >for php. > > Hmm, has this changed with 10.3? Previous versions included PHP > (disabled), but not MySQL. > > bye, Dirk > > > -- > http://www.haun-online.de/ > http://www.macosx-faq.de/ > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > ---------------------------------------- This mail sent through www.mywaterloo.ca From naderrau at services01.student.math.uwaterloo.ca Mon Feb 2 17:21:24 2004 From: naderrau at services01.student.math.uwaterloo.ca (naderrau at services01.student.math.uwaterloo.ca) Date: Mon, 2 Feb 2004 17:21:24 -0500 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details In-Reply-To: <20040202220343.20584@smtp.haun-online.de> References: <1075756503.401ebdd76cf5c@www.nexusmail.uwaterloo.ca> <20040202220343.20584@smtp.haun-online.de> Message-ID: <1075760484.401ecd644fb51@www.nexusmail.uwaterloo.ca> I couldn't get the PHP to compile. Like I said in my last repsonse, I just enabled it instead. So perhaps it's something related to PHP. I'll put some effort into getting it to compile though, when I get some free time. I really have to express my appreciate though for helping as much as you have so far. The actual site itself should be quite exciting once it gets going. I'll be sure and post something about it, as long as the members don't object. Neil Quoting Dirk Haun : > Neil, > > >I'm using Mac OS X.3 Panther 'Client'. > > > >It came with mysql, just not configured to run automatically at startup, > ditto > >for php. > > Hmm, has this changed with 10.3? Previous versions included PHP > (disabled), but not MySQL. > > bye, Dirk > > > -- > http://www.haun-online.de/ > http://www.macosx-faq.de/ > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > ---------------------------------------- This mail sent through www.mywaterloo.ca From robg at macosxhints.com Mon Feb 2 17:35:32 2004 From: robg at macosxhints.com (Rob Griffiths) Date: Mon, 2 Feb 2004 14:35:32 -0800 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details In-Reply-To: <7E86A3DFCD046542B04EA4AFDE327664971398@opusemail.opus.local> Message-ID: <7E86A3DFCD046542B04EA4AFDE3276645668DC@opusemail.opus.local> You shouldn't have to do this; I'm using 10.3 with the included PHP that just required enabling, not compiling. And I just installed GL 1.3.8 on it last night, and it worked fine. (Complete off-topic aside: While installing, the installer web page asks "Path to Geeklog." After screwing this up numerable times, it should really ask for "Path to config.php" or something similar -- I keep putting in the URL to the actual Geeklog >site<, not the config file :). -rob. -----Original Message----- From: geeklog-users-admin at lists.geeklog.net [mailto:geeklog-users-admin at lists.geeklog.net] On Behalf Of naderrau at services01.student.math.uwaterloo.ca Sent: Monday, February 02, 2004 2:21 PM To: geeklog-users at lists.geeklog.net Subject: Re: [geeklog-users] An SQL error has occured. Please see error.log for details I couldn't get the PHP to compile. Like I said in my last repsonse, I just enabled it instead. So perhaps it's something related to PHP. I'll put some effort into getting it to compile though, when I get some free time. I really have to express my appreciate though for helping as much as you have so far. The actual site itself should be quite exciting once it gets going. I'll be sure and post something about it, as long as the members don't object. Neil Quoting Dirk Haun : > Neil, > > >I'm using Mac OS X.3 Panther 'Client'. > > > >It came with mysql, just not configured to run automatically at > >startup, > ditto > >for php. > > Hmm, has this changed with 10.3? Previous versions included PHP > (disabled), but not MySQL. > > bye, Dirk > > > -- > http://www.haun-online.de/ > http://www.macosx-faq.de/ > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > ---------------------------------------- This mail sent through www.mywaterloo.ca _______________________________________________ geeklog-users mailing list geeklog-users at lists.geeklog.net http://lists.geeklog.net/listinfo/geeklog-users From geeklog at tedroby.com Mon Feb 2 19:18:30 2004 From: geeklog at tedroby.com (Ted Roby) Date: Mon, 2 Feb 2004 16:18:30 -0800 Subject: [geeklog-users] ssl for admin functions In-Reply-To: <401E8F30.9060408@tonybibbs.com> References: <34BC07F8-5393-11D8-9594-0003931D9B5A@tedroby.com> <401E8F30.9060408@tonybibbs.com> Message-ID: <7EBD5520-55DE-11D8-A0AB-0003931D9B5A@tedroby.com> On Feb 2, 2004, at 9:56 AM, Tony Bibbs wrote: > Assuming you are using a fairly recent version of PHP you could do > this in lib-common.php *after* the include of config.php: > > if (stristr($_SERVER["SERVER_PROTOCOL"],'https')) { > $_CONF['site_url'] = 'https://mydomain'; > } else { > $_CONF['site_url'] = 'http://mydomain'; > } > > This assumes that your admins login using some page that is SSL'd and > from that point on the snippet above should keep them in SSL. > > --Tony > Is version 4.3.3 recent enough? If it is, this snippet did not fix the problem. Let me try to explain how it happens. You go to the page on http. You click on a function located in /admin. This causes you to be redirected to https. You are then prompted for the login to access /admin. You remain in https while you navigate around. You will continue to be in https until you click on a link that specifically calls http. You make a change. (Let's say you enable a block.) When you click save, you do not get the message that says your changes have been saved. Instead, you are back at the Block Manager. Nothing reflects that anything has been changed. From developer at textiletech.com Tue Feb 3 06:29:33 2004 From: developer at textiletech.com (Mark Steinberg) Date: Tue, 3 Feb 2004 06:29:33 -0500 Subject: [geeklog-users] An SQL error has occured. Please see error.log for details Message-ID: <3D872F87-563C-11D8-A2A0-000A95A74BF0@textiletech.com> I'm having exactly the same problem on OSX Server 10.3.2 and I installed the very latest MySQL replacing the existing one. I got the same error with both. Anybody have any ideas. I am really hoping to use GeekLog for our new site. Thanks Mark > You shouldn't have to do this; I'm using 10.3 with the included PHP > that > just required enabling, not compiling. And I just installed GL 1.3.8 > on > it last night, and it worked fine. > > (Complete off-topic aside: While installing, the installer web page > asks > "Path to Geeklog." After screwing this up numerable times, it should > really ask for "Path to config.php" or something similar -- I keep > putting in the URL to the actual Geeklog >site<, not the config file > :). > > -rob. > > -----Original Message----- > From: geeklog-users-admin at lists.geeklog.net > [mailto:geeklog-users-admin at lists.geeklog.net] On Behalf Of > naderrau at services01.student.math.uwaterloo.ca > Sent: Monday, February 02, 2004 2:21 PM > To: geeklog-users at lists.geeklog.net > Subject: Re: [geeklog-users] An SQL error has occured. Please see > error.log for details > > > I couldn't get the PHP to compile. Like I said in my last repsonse, I > just enabled it instead. So perhaps it's something related to PHP. > I'll put some effort into getting it to compile though, when I get some > free time. > > I really have to express my appreciate though for helping as much as > you > have so far. The actual site itself should be quite exciting once it > gets going. I'll be sure and post something about it, as long as the > members don't object. > > Neil > > Quoting Dirk Haun : > > > Neil, > > > > >I'm using Mac OS X.3 Panther 'Client'. > > > > > >It came with mysql, just not configured to run automatically at > > >startup, > > ditto > > >for php. > > > > Hmm, has this changed with 10.3? Previous versions included PHP > > (disabled), but not MySQL. > > > > bye, Dirk > > > > > > -- > > http://www.haun-online.de/ > > http://www.macosx-faq.de/ > > -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: text/enriched Size: 4169 bytes Desc: not available URL: From tony at tonybibbs.com Tue Feb 3 09:17:15 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Tue, 03 Feb 2004 08:17:15 -0600 Subject: [geeklog-users] ssl for admin functions In-Reply-To: <7EBD5520-55DE-11D8-A0AB-0003931D9B5A@tedroby.com> References: <34BC07F8-5393-11D8-9594-0003931D9B5A@tedroby.com> <401E8F30.9060408@tonybibbs.com> <7EBD5520-55DE-11D8-A0AB-0003931D9B5A@tedroby.com> Message-ID: <401FAD6B.8030209@tonybibbs.com> My code snippet should work but the assumption is your admins *start* in https. Once in https, my code snippet below will keep them in https mode permanently. It's won't work the why you quite described it but it should keep your admins in https mode. If you want to add another layer of security to force them into https mode you can modify the auth.inc.php to redirect them to https if the SERVER_PROTOCOL is http. --Tony Ted Roby wrote: > > On Feb 2, 2004, at 9:56 AM, Tony Bibbs wrote: > >> Assuming you are using a fairly recent version of PHP you could do >> this in lib-common.php *after* the include of config.php: >> >> if (stristr($_SERVER["SERVER_PROTOCOL"],'https')) { >> $_CONF['site_url'] = 'https://mydomain'; >> } else { >> $_CONF['site_url'] = 'http://mydomain'; >> } >> >> This assumes that your admins login using some page that is SSL'd and >> from that point on the snippet above should keep them in SSL. >> >> --Tony >> > > Is version 4.3.3 recent enough? > > If it is, this snippet did not fix the problem. Let me try to explain > how it happens. > > You go to the page on http. > You click on a function located in /admin. > This causes you to be redirected to https. > You are then prompted for the login to access /admin. > You remain in https while you navigate around. > You will continue to be in https until you click on a link that > specifically calls http. > You make a change. (Let's say you enable a block.) > When you click save, you do not get the message that says your changes > have been saved. > Instead, you are back at the Block Manager. > Nothing reflects that anything has been changed. > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From tony at tonybibbs.com Thu Feb 5 20:01:33 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Thu, 05 Feb 2004 19:01:33 -0600 Subject: [geeklog-users] Notice, anonymous CVS, mailing lists and project.geeklog.net will be unavailable for a short period Message-ID: <4022E76D.2000207@tonybibbs.com> I am busy moving our CVS repository, to do this the anonymous CVS access will be down temporarily. The server is due to go down here anytime in the next 24hrs and should be back up by Sunday evening sometime. The reason for the move is our current server is being moved to a higher speed ISP and before the move the current server will be rebuilt. To do this CVS must be moved to another, lesser server for a little while. For the same reasons, the mailing lists and the geeklog project site will be down. Thanks for understanding, --Tony +-------------------+--------------------------------------------------+ |Tony Bibbs |[R]egardless of what you may think of our penal | |tony at tonybibbs.com |system, the fact is that every man in jail is one | | |less potential fisherman to clutter up your | | |favorite pool or pond. --Ed Zern | +-------------------+--------------------------------------------------+ From lists.sf.net at ourholm.net Tue Feb 10 11:17:00 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Wed, 11 Feb 2004 02:17:00 +1000 Subject: [geeklog-users] Updating to 1.3.8-1sr4? References: <4022E76D.2000207@tonybibbs.com> Message-ID: <000b01c3eff1$50a89c50$0707070a@holmw2k> Just wondering if there are any real changes in the new config.php file. I would much rather just copy the old one across (from 1.3.8-1sr2). Thanks. From dirk at haun-online.de Tue Feb 10 14:12:21 2004 From: dirk at haun-online.de (Dirk Haun) Date: Tue, 10 Feb 2004 20:12:21 +0100 Subject: [geeklog-users] Updating to 1.3.8-1sr4? In-Reply-To: <000b01c3eff1$50a89c50$0707070a@holmw2k> References: <000b01c3eff1$50a89c50$0707070a@holmw2k> Message-ID: <20040210191221.24376@smtp.haun-online.de> >Just wondering if there are any real changes in the new config.php file. I >would much rather just copy the old one across (from 1.3.8-1sr2). Thanks. There weren't any changes other than increasing the version number, so you can do that. Btw, please make sure you are subscribed to the list and that you're posting from the email address you were using when registering with the list. I had to approve your post manually and almost missed it amidst all the spam, viruses and bounces that are clogging up the submission queue ... bye, Dirk -- http://www.haun-online.de/ http://www.haun.info/ From lists.sf.net at ourholm.net Wed Feb 11 09:15:32 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Thu, 12 Feb 2004 00:15:32 +1000 Subject: [geeklog-users] User can't change story they created. . . References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> Message-ID: <0af401c3f0a9$82ce8e20$0707070a@holmw2k> I was trying to show a non-admin user (is story-admin) how to post news articles today. . .she was able to create a story and typed in the info, then decided to draft the story. After that she could only view the story, if she tried to edit the story, it gave the message about not having access to do that to this story. She was the owner though? Yes, permissions allowed owner to edit. . .kept the default other permissions. . .what is happening and how can I let her edit the story without making it group editable? Thanks. From tony at tonybibbs.com Wed Feb 11 09:56:18 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Wed, 11 Feb 2004 08:56:18 -0600 Subject: [geeklog-users] User can't change story they created. . . In-Reply-To: <0af401c3f0a9$82ce8e20$0707070a@holmw2k> References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> Message-ID: <402A4292.6060603@tonybibbs.com> do a SELECT * FROM gl_stories WHERE sid = 'XXXXXXXXX' replacing the X's with the SID and paste it in your response. --Tony TechFan wrote: > I was trying to show a non-admin user (is story-admin) how to post news > articles today. . .she was able to create a story and typed in the info, > then decided to draft the story. After that she could only view the story, > if she tried to edit the story, it gave the message about not having access > to do that to this story. She was the owner though? Yes, permissions > allowed owner to edit. . .kept the default other permissions. . .what is > happening and how can I let her edit the story without making it group > editable? > > Thanks. > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From vmf at abtech.org Wed Feb 11 10:10:35 2004 From: vmf at abtech.org (Vincent Furia) Date: Wed, 11 Feb 2004 10:10:35 -0500 Subject: [geeklog-users] User can't change story they created. . . In-Reply-To: <0af401c3f0a9$82ce8e20$0707070a@holmw2k> References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> Message-ID: <402A45EB.2040600@abtech.org> TechFan, You may be having the same problem as "knobby". See this forum post (specificlly Dirk's response): http://www.geeklog.net/forum/viewtopic.php?forum=3&showtopic=30359 -Vinny TechFan wrote: > I was trying to show a non-admin user (is story-admin) how to post news > articles today. . .she was able to create a story and typed in the info, > then decided to draft the story. After that she could only view the story, > if she tried to edit the story, it gave the message about not having access > to do that to this story. She was the owner though? Yes, permissions > allowed owner to edit. . .kept the default other permissions. . .what is > happening and how can I let her edit the story without making it group > editable? > > Thanks. > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From lists.sf.net at ourholm.net Wed Feb 11 10:39:48 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Thu, 12 Feb 2004 01:39:48 +1000 Subject: [geeklog-users] Picture as watermark behind just main middle column on all pages. . . References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> Message-ID: <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> I have been wanting to put a picture behind the main middle section of the website on every page but haven't figured it out yet. . .it will be a lightened and a watermark style picture, but I want it to repeat and be the background for the middle section of the website. It would nice if it would stretch to fill whatever width the center column allows (like if there is no right column. Thanks. From lists.sf.net at ourholm.net Wed Feb 11 10:29:57 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Thu, 12 Feb 2004 01:29:57 +1000 Subject: [geeklog-users] User can't change story they created. . . References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> Message-ID: <0b0c01c3f0b3$e8833130$0707070a@holmw2k> I checked out the FAQ. . .had to read it slowly. So, essentially what I am getting is that I need to give the Topic Admin edit access to the topic (she is also Topic Admin) so that she can edit the topic. She can create stories, but unless she has edit access to a topic. . .the edit access to the story doesn't do any good. Correct me if I am wrong. ----- Original Message ----- From: "Vincent Furia" To: Cc: Sent: Thursday, February 12, 2004 1:10 AM Subject: Re: [geeklog-users] User can't change story they created. . . > TechFan, > > You may be having the same problem as "knobby". See this forum post > (specificlly Dirk's response): > > http://www.geeklog.net/forum/viewtopic.php?forum=3&showtopic=30359 > > -Vinny > > TechFan wrote: > > I was trying to show a non-admin user (is story-admin) how to post news > > articles today. . .she was able to create a story and typed in the info, > > then decided to draft the story. After that she could only view the story, > > if she tried to edit the story, it gave the message about not having access > > to do that to this story. She was the owner though? Yes, permissions > > allowed owner to edit. . .kept the default other permissions. . .what is > > happening and how can I let her edit the story without making it group > > editable? > > > > Thanks. > > > > > > _______________________________________________ > > geeklog-users mailing list > > geeklog-users at lists.geeklog.net > > http://lists.geeklog.net/listinfo/geeklog-users > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From lists.sf.net at ourholm.net Wed Feb 11 10:27:34 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Thu, 12 Feb 2004 01:27:34 +1000 Subject: [geeklog-users] User can't change story they created. . . References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A4292.6060603@tonybibbs.com> Message-ID: <0b0601c3f0b3$9316e7f0$0707070a@holmw2k> mysql> SELECT * FROM gl_stories WHERE sid = '20040211101356827'; | 20040211101356827 | 4 | 0 | General | 2004-02-11 10:13:00 | PEDIATRIC CARDIOLOGIST COMING | Pediatric Cardiologist holds clinic in March. | Inger Olson, M.D., Pediatric Cardiologist, from Loma Linda University Children's Hospital of California, will be seeing patients on March 8 thru 12, 2004. All appointments require a referral and/or an insurance prior authorization. To schedule appointments, call Pat Untalan at 646-8881, ext 804. | 4 | 0 | 0 | | 1 | 1 | -1 | 0 | plaintext | 1 | 4 | 3 | 3 | 2 | 2 | 2 | +-------------------+-----+------------+---------+---------------------+---- ---------------------------+-----------------------------------------------+ ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- ---------------------------------------------------------------------------- +------+-----------+----------+---------+----------+-----------------+------ -------+------------+-----------+-----------+----------+----------+--------- ---+------------+--------------+-----------+ 1 row in set (0.00 sec) ----- Original Message ----- From: "Tony Bibbs" To: Sent: Thursday, February 12, 2004 12:56 AM Subject: Re: [geeklog-users] User can't change story they created. . . > do a SELECT * FROM gl_stories WHERE sid = 'XXXXXXXXX' replacing the X's > with the SID and paste it in your response. > > --Tony > > TechFan wrote: > > I was trying to show a non-admin user (is story-admin) how to post news > > articles today. . .she was able to create a story and typed in the info, > > then decided to draft the story. After that she could only view the story, > > if she tried to edit the story, it gave the message about not having access > > to do that to this story. She was the owner though? Yes, permissions > > allowed owner to edit. . .kept the default other permissions. . .what is > > happening and how can I let her edit the story without making it group > > editable? > > > > Thanks. > > > > > > _______________________________________________ > > geeklog-users mailing list > > geeklog-users at lists.geeklog.net > > http://lists.geeklog.net/listinfo/geeklog-users > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From lists.sf.net at ourholm.net Wed Feb 11 10:31:36 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Thu, 12 Feb 2004 01:31:36 +1000 Subject: [geeklog-users] User can't change story they created. . . References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> Message-ID: <0b1001c3f0b4$23967bb0$0707070a@holmw2k> Btw, any recommendations for finding good icons for topics? ----- Original Message ----- From: "Vincent Furia" To: Cc: Sent: Thursday, February 12, 2004 1:10 AM Subject: Re: [geeklog-users] User can't change story they created. . . > TechFan, > > You may be having the same problem as "knobby". See this forum post > (specificlly Dirk's response): > > http://www.geeklog.net/forum/viewtopic.php?forum=3&showtopic=30359 > > -Vinny > > TechFan wrote: > > I was trying to show a non-admin user (is story-admin) how to post news > > articles today. . .she was able to create a story and typed in the info, > > then decided to draft the story. After that she could only view the story, > > if she tried to edit the story, it gave the message about not having access > > to do that to this story. She was the owner though? Yes, permissions > > allowed owner to edit. . .kept the default other permissions. . .what is > > happening and how can I let her edit the story without making it group > > editable? > > > > Thanks. > > > > > > _______________________________________________ > > geeklog-users mailing list > > geeklog-users at lists.geeklog.net > > http://lists.geeklog.net/listinfo/geeklog-users > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From tony at tonybibbs.com Wed Feb 11 12:34:11 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Wed, 11 Feb 2004 11:34:11 -0600 Subject: [geeklog-users] User can't change story they created. . . In-Reply-To: <0b0c01c3f0b3$e8833130$0707070a@holmw2k> References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b0c01c3f0b3$e8833130$0707070a@holmw2k> Message-ID: <402A6793.5040601@tonybibbs.com> Ah, yes. This is correct. It's not different than unix file permissions. You may have write access to a file in a folder but if you don't have write access to the folder itself you are SOL. Let us know if this fixed your problem. --Tony TechFan wrote: > I checked out the FAQ. . .had to read it slowly. So, essentially what I am > getting is that I need to give the Topic Admin edit access to the topic (she > is also Topic Admin) so that she can edit the topic. She can create > stories, but unless she has edit access to a topic. . .the edit access to > the story doesn't do any good. Correct me if I am wrong. > > ----- Original Message ----- > From: "Vincent Furia" > To: > Cc: > Sent: Thursday, February 12, 2004 1:10 AM > Subject: Re: [geeklog-users] User can't change story they created. . . > > > >>TechFan, >> >>You may be having the same problem as "knobby". See this forum post >>(specificlly Dirk's response): >> >>http://www.geeklog.net/forum/viewtopic.php?forum=3&showtopic=30359 >> >>-Vinny >> >>TechFan wrote: >> >>>I was trying to show a non-admin user (is story-admin) how to post news >>>articles today. . .she was able to create a story and typed in the info, >>>then decided to draft the story. After that she could only view the > > story, > >>>if she tried to edit the story, it gave the message about not having > > access > >>>to do that to this story. She was the owner though? Yes, permissions >>>allowed owner to edit. . .kept the default other permissions. . .what is >>>happening and how can I let her edit the story without making it group >>>editable? >>> >>>Thanks. >>> >>> >>>_______________________________________________ >>>geeklog-users mailing list >>>geeklog-users at lists.geeklog.net >>>http://lists.geeklog.net/listinfo/geeklog-users >>> >> >>_______________________________________________ >>geeklog-users mailing list >>geeklog-users at lists.geeklog.net >>http://lists.geeklog.net/listinfo/geeklog-users > > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From geeklog at sebastiancelis.com Wed Feb 11 13:11:59 2004 From: geeklog at sebastiancelis.com (Sebastian Celis) Date: Wed, 11 Feb 2004 12:11:59 -0600 Subject: [geeklog-users] Picture as watermark behind just main middle column on all pages. . . In-Reply-To: <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> Message-ID: <402A706F.2080705@sebastiancelis.com> It all depends on what theme you are using and how it sets up the content portion of this site. Ideally, you should be able to do this via CSS by assigning a background image to the div/td/table element that contains the main content of the site. - Turias TechFan wrote: > I have been wanting to put a picture behind the main middle section of the > website on every page but haven't figured it out yet. . .it will be a > lightened and a watermark style picture, but I want it to repeat and be the > background for the middle section of the website. It would nice if it would > stretch to fill whatever width the center column allows (like if there is no > right column. > > Thanks. > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From tomw at pigstye.net Wed Feb 11 14:05:25 2004 From: tomw at pigstye.net (Tom Willett) Date: Wed, 11 Feb 2004 19:05:25 +0000 Subject: [geeklog-users] Picture as watermark behind just main middle column on all pages. . . In-Reply-To: <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> Message-ID: <20040211190229.M59301@pigstye.net> An HTML attachment was scrubbed... URL: From dirk at haun-online.de Wed Feb 11 14:11:57 2004 From: dirk at haun-online.de (Dirk Haun) Date: Wed, 11 Feb 2004 20:11:57 +0100 Subject: [geeklog-users] Icons (was: User can't change story they created. . .) In-Reply-To: <0b1001c3f0b4$23967bb0$0707070a@holmw2k> References: <0b1001c3f0b4$23967bb0$0707070a@holmw2k> Message-ID: <20040211191157.31490@smtp.haun-online.de> >Btw, any recommendations for finding good icons for topics? See bye, Dirk -- http://www.haun-online.de/ http://geeklog.info/ From wjs357 at access4less.net Wed Feb 11 15:07:31 2004 From: wjs357 at access4less.net (Walter Shudde) Date: Wed, 11 Feb 2004 13:07:31 -0700 Subject: [geeklog-users] Puzzling problem Message-ID: <001001c3f0da$aff87ba0$0100007f@localhost> Hi, I am a new GL user with a puzzling problem. I posted in the GL forum, but didn't get a response :( so I thought I'd try here. Here is the problem: Pages on my site ( www.x-factornet.com) frequently do not appear to refresh properly. Pages display in funny colors with what appear to be code snippets in place of pictures or text. This sometimes happens when initially navigating to the site, but most frequently occurs when moving from one section of the site to another. Hitting the refresh button on my browser usually causes the page to refresh properly, though sometimes it is necessary to hit refresh several times before the page displays correctly. This problem doesn't seem to be browser specific, as this behavior occurs when using IE_6 or Mozilla/Firebird. My site is running on a hosted server that runs Red Hat Linux. I can provide other specifics if needed. Screen captures of the problem are here (150K): www.x-factornet.com/geekscreen1.jpg and www.x-factornet.com/geekscreen2.jpg Thanks for any enlightenment, Regards, Walter Shudde -------------- next part -------------- An HTML attachment was scrubbed... URL: From vmf at abtech.org Wed Feb 11 15:52:59 2004 From: vmf at abtech.org (Vincent Furia) Date: Wed, 11 Feb 2004 15:52:59 -0500 Subject: [geeklog-users] Puzzling problem In-Reply-To: <001001c3f0da$aff87ba0$0100007f@localhost> References: <001001c3f0da$aff87ba0$0100007f@localhost> Message-ID: <402A962B.4070800@abtech.org> I messed around on your site for a while and wasn't able to reproduce the problem. It looks to me like you're having Color-Map/Color-Table problems (which is related to how your OS and video card handle color allocations to programs). See if you can reproduce this problem on other Geeklog sites and other web sites with your configuration. It doesn't seem that this is something users of your website will see. -Vinny Walter Shudde wrote: > Hi, > > I am a new GL user with a puzzling problem. I posted in the GL forum, > but didn't get a response :( so I thought I'd try here. > > Here is the problem: Pages on my site ( www.x-factornet.com > ) frequently do not appear to refresh > properly. Pages display in funny colors with what appear to be code > snippets in place of pictures or text. This sometimes happens when > initially navigating to the site, but most frequently occurs when moving > from one section of the site to another. Hitting the refresh button on > my browser usually causes the page to refresh properly, though sometimes > it is necessary to hit refresh several times before the page displays > correctly. > This problem doesn't seem to be browser specific, as this behavior > occurs when using IE_6 or Mozilla/Firebird. > > My site is running on a hosted server that runs Red Hat Linux. I can > provide other specifics if needed. Screen captures of the problem are > here (150K): > > www.x-factornet.com/geekscreen1.jpg > > and > www.x-factornet.com/geekscreen2.jpg > > > Thanks for any enlightenment, > > Regards, > > Walter Shudde From wjs357 at access4less.net Wed Feb 11 16:05:24 2004 From: wjs357 at access4less.net (Walter Shudde) Date: Wed, 11 Feb 2004 14:05:24 -0700 Subject: [geeklog-users] Puzzling problem References: <001001c3f0da$aff87ba0$0100007f@localhost> <402A962B.4070800@abtech.org> Message-ID: <000901c3f0e2$c63bd170$0100007f@localhost> Vinny, Thanks for taking a look-see, but I don't think that is the problem. I think the problem is specific to my site as I don't seem to have this problem when looking at other GL sites. Also, I can reproduce the problem on my site when viewing it on other computers. Any other thoughts? Regards, -ws ----- Original Message ----- From: "Vincent Furia" To: Sent: Wednesday, February 11, 2004 1:52 PM Subject: Re: [geeklog-users] Puzzling problem > I messed around on your site for a while and wasn't able to reproduce > the problem. It looks to me like you're having Color-Map/Color-Table > problems (which is related to how your OS and video card handle color > allocations to programs). > > See if you can reproduce this problem on other Geeklog sites and other > web sites with your configuration. It doesn't seem that this is > something users of your website will see. > > -Vinny > > Walter Shudde wrote: > > Hi, > > > > I am a new GL user with a puzzling problem. I posted in the GL forum, > > but didn't get a response :( so I thought I'd try here. > > > > Here is the problem: Pages on my site ( www.x-factornet.com > > ) frequently do not appear to refresh > > properly. Pages display in funny colors with what appear to be code > > snippets in place of pictures or text. This sometimes happens when > > initially navigating to the site, but most frequently occurs when moving > > from one section of the site to another. Hitting the refresh button on > > my browser usually causes the page to refresh properly, though sometimes > > it is necessary to hit refresh several times before the page displays > > correctly. > > This problem doesn't seem to be browser specific, as this behavior > > occurs when using IE_6 or Mozilla/Firebird. > > > > My site is running on a hosted server that runs Red Hat Linux. I can > > provide other specifics if needed. Screen captures of the problem are > > here (150K): > > > > www.x-factornet.com/geekscreen1.jpg > > > > and > > www.x-factornet.com/geekscreen2.jpg > > > > > > Thanks for any enlightenment, > > > > Regards, > > > > Walter Shudde > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From OOgunney at adventisthealthcare.com Wed Feb 11 15:33:52 2004 From: OOgunney at adventisthealthcare.com (Ola Ogunneye) Date: Wed, 11 Feb 2004 15:33:52 -0500 Subject: [geeklog-users] Puzzling problem Message-ID: Are you running your stuff on Apache? If so your problem is in httpd.conf. So let me know if you are using Apache. >>> wjs357 at access4less.net 02/11/04 03:07PM >>> Hi, I am a new GL user with a puzzling problem. I posted in the GL forum, but didn't get a response :( so I thought I'd try here. Here is the problem: Pages on my site ( www.x-factornet.com) frequently do not appear to refresh properly. Pages display in funny colors with what appear to be code snippets in place of pictures or text. This sometimes happens when initially navigating to the site, but most frequently occurs when moving from one section of the site to another. Hitting the refresh button on my browser usually causes the page to refresh properly, though sometimes it is necessary to hit refresh several times before the page displays correctly. This problem doesn't seem to be browser specific, as this behavior occurs when using IE_6 or Mozilla/Firebird. My site is running on a hosted server that runs Red Hat Linux. I can provide other specifics if needed. Screen captures of the problem are here (150K): www.x-factornet.com/geekscreen1.jpg and www.x-factornet.com/geekscreen2.jpg Thanks for any enlightenment, Regards, Walter Shudde From OOgunney at adventisthealthcare.com Wed Feb 11 16:33:22 2004 From: OOgunney at adventisthealthcare.com (Ola Ogunneye) Date: Wed, 11 Feb 2004 16:33:22 -0500 Subject: [geeklog-users] Puzzling problem Message-ID: Hello all, I think the problem could be an Apache problem. If you are running Apache, check your httpd.conf file and look for #enablesendfile off when you find it, remove the remark or # and save the file and restart Apache. Please try and stop Apache before making changes to the httpd.conf file and good luck Ola >>> wjs357 at access4less.net 02/11/04 04:05PM >>> Vinny, Thanks for taking a look-see, but I don't think that is the problem. I think the problem is specific to my site as I don't seem to have this problem when looking at other GL sites. Also, I can reproduce the problem on my site when viewing it on other computers. Any other thoughts? Regards, -ws ----- Original Message ----- From: "Vincent Furia" To: Sent: Wednesday, February 11, 2004 1:52 PM Subject: Re: [geeklog-users] Puzzling problem > I messed around on your site for a while and wasn't able to reproduce > the problem. It looks to me like you're having Color-Map/Color-Table > problems (which is related to how your OS and video card handle color > allocations to programs). > > See if you can reproduce this problem on other Geeklog sites and other > web sites with your configuration. It doesn't seem that this is > something users of your website will see. > > -Vinny > > Walter Shudde wrote: > > Hi, > > > > I am a new GL user with a puzzling problem. I posted in the GL forum, > > but didn't get a response :( so I thought I'd try here. > > > > Here is the problem: Pages on my site ( www.x-factornet.com > > ) frequently do not appear to refresh > > properly. Pages display in funny colors with what appear to be code > > snippets in place of pictures or text. This sometimes happens when > > initially navigating to the site, but most frequently occurs when moving > > from one section of the site to another. Hitting the refresh button on > > my browser usually causes the page to refresh properly, though sometimes > > it is necessary to hit refresh several times before the page displays > > correctly. > > This problem doesn't seem to be browser specific, as this behavior > > occurs when using IE_6 or Mozilla/Firebird. > > > > My site is running on a hosted server that runs Red Hat Linux. I can > > provide other specifics if needed. Screen captures of the problem are > > here (150K): > > > > www.x-factornet.com/geekscreen1.jpg > > > > and > > www.x-factornet.com/geekscreen2.jpg > > > > > > Thanks for any enlightenment, > > > > Regards, > > > > Walter Shudde > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > _______________________________________________ geeklog-users mailing list geeklog-users at lists.geeklog.net http://lists.geeklog.net/listinfo/geeklog-users From dirk at haun-online.de Wed Feb 11 17:17:57 2004 From: dirk at haun-online.de (Dirk Haun) Date: Wed, 11 Feb 2004 23:17:57 +0100 Subject: [geeklog-users] Puzzling problem In-Reply-To: <001001c3f0da$aff87ba0$0100007f@localhost> References: <001001c3f0da$aff87ba0$0100007f@localhost> Message-ID: <20040211221757.18245@smtp.haun-online.de> Walter, >www.x-factornet.com/geekscreen1.jpg >and >www.x-factornet.com/geekscreen2.jpg I've seen effects like in these screenshots when magic_quotes_runtime was set to "on" in the PHP configuration (php.ini). Note the \" in the various edit fields. However, magic_quotes_runtime is not a setting that goes on or off all by itself. Are you or your hosting service playing with the server's settings on occasion? Geeklog will not work properly (actually, hardly at all) with magic_quotes_runtime set to "on". bye, Dirk -- http://www.haun-online.de/ http://www.macosx-faq.de/ From webmaster at ohna.org Wed Feb 11 17:49:54 2004 From: webmaster at ohna.org (Webmaster) Date: Wed, 11 Feb 2004 17:49:54 -0500 Subject: [geeklog-users] Picture as watermark behind just main middle column on all pages. . . References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> Message-ID: <00e401c3f0f1$5e412ca0$7301a8c0@Kyan> I have been working on the same thing for my site. It basically uses a
and CSS in the a static page. the image resizes horizontally to adjust to the browser width and veritically to the amount of text in the static page. Here is the HTML I'm using. It isn't perfect yet, but hopefully it will give you a starting point. Chris Untitled Document
Welcome
This is a test template page.  

w

w

w

w

w

w

w

w

w

w

w

end of test page
 
----- Original Message ----- From: "TechFan" To: Sent: Wednesday, February 11, 2004 10:39 AM Subject: [geeklog-users] Picture as watermark behind just main middle column on all pages. . . > I have been wanting to put a picture behind the main middle section of the > website on every page but haven't figured it out yet. . .it will be a > lightened and a watermark style picture, but I want it to repeat and be the > background for the middle section of the website. It would nice if it would > stretch to fill whatever width the center column allows (like if there is no > right column. > > Thanks. > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From wjs357 at access4less.net Wed Feb 11 22:37:44 2004 From: wjs357 at access4less.net (Walter Shudde) Date: Wed, 11 Feb 2004 20:37:44 -0700 Subject: [geeklog-users] Puzzling problem References: <001001c3f0da$aff87ba0$0100007f@localhost> <20040211221757.18245@smtp.haun-online.de> Message-ID: <001001c3f119$94903120$0100007f@localhost> Dirk, I am running my site on a hosted server. Magic_quotes_runtime appears to be off, based on their PHPinfo file. Here is a snip: magic_quotes_gpc On On magic_quotes_runtime Off Off magic_quotes_sybase Off Off The rest of the file can be found here: http://101sitehosting.net/phpinfo.php I don't have any info yet from them re: their Apache config. Regards, --ws ----- Original Message ----- From: "Dirk Haun" To: Sent: Wednesday, February 11, 2004 3:17 PM Subject: Re: [geeklog-users] Puzzling problem > Walter, > > >www.x-factornet.com/geekscreen1.jpg > >and > >www.x-factornet.com/geekscreen2.jpg > > I've seen effects like in these screenshots when magic_quotes_runtime was > set to "on" in the PHP configuration (php.ini). Note the \" in the > various edit fields. > > However, magic_quotes_runtime is not a setting that goes on or off all by > itself. Are you or your hosting service playing with the server's > settings on occasion? > > Geeklog will not work properly (actually, hardly at all) with > magic_quotes_runtime set to "on". > > bye, Dirk > > > -- > http://www.haun-online.de/ > http://www.macosx-faq.de/ > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From lists.sf.net at ourholm.net Thu Feb 12 02:08:55 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Thu, 12 Feb 2004 17:08:55 +1000 Subject: [geeklog-users] User can't change story they created. . . References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b0c01c3f0b3$e8833130$0707070a@holmw2k> <402A6793.5040601@tonybibbs.com> Message-ID: <027401c3f137$15f37d40$a901a8c0@guamsda.clinic> Yes. That addressed the issue. Thanks. . ----- Original Message ----- From: "Tony Bibbs" To: Sent: Thursday, February 12, 2004 3:34 AM Subject: Re: [geeklog-users] User can't change story they created. . . > Ah, yes. This is correct. It's not different than unix file > permissions. You may have write access to a file in a folder but if you > don't have write access to the folder itself you are SOL. Let us know > if this fixed your problem. > > --Tony > > TechFan wrote: > > I checked out the FAQ. . .had to read it slowly. So, essentially what I am > > getting is that I need to give the Topic Admin edit access to the topic (she > > is also Topic Admin) so that she can edit the topic. She can create > > stories, but unless she has edit access to a topic. . .the edit access to > > the story doesn't do any good. Correct me if I am wrong. > > > > ----- Original Message ----- > > From: "Vincent Furia" > > To: > > Cc: > > Sent: Thursday, February 12, 2004 1:10 AM > > Subject: Re: [geeklog-users] User can't change story they created. . . > > > > > > > >>TechFan, > >> > >>You may be having the same problem as "knobby". See this forum post > >>(specificlly Dirk's response): > >> > >>http://www.geeklog.net/forum/viewtopic.php?forum=3&showtopic=30359 > >> > >>-Vinny > >> > >>TechFan wrote: > >> > >>>I was trying to show a non-admin user (is story-admin) how to post news > >>>articles today. . .she was able to create a story and typed in the info, > >>>then decided to draft the story. After that she could only view the > > > > story, > > > >>>if she tried to edit the story, it gave the message about not having > > > > access > > > >>>to do that to this story. She was the owner though? Yes, permissions > >>>allowed owner to edit. . .kept the default other permissions. . .what is > >>>happening and how can I let her edit the story without making it group > >>>editable? > >>> > >>>Thanks. > >>> > >>> > >>>_______________________________________________ > >>>geeklog-users mailing list > >>>geeklog-users at lists.geeklog.net > >>>http://lists.geeklog.net/listinfo/geeklog-users > >>> > >> > >>_______________________________________________ > >>geeklog-users mailing list > >>geeklog-users at lists.geeklog.net > >>http://lists.geeklog.net/listinfo/geeklog-users > > > > > > > > _______________________________________________ > > geeklog-users mailing list > > geeklog-users at lists.geeklog.net > > http://lists.geeklog.net/listinfo/geeklog-users > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From lists.sf.net at ourholm.net Thu Feb 12 02:10:26 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Thu, 12 Feb 2004 17:10:26 +1000 Subject: [geeklog-users] Picture as watermark behind just main middle column on all pages. . . References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> <20040211190229.M59301@pigstye.net> Message-ID: <027b01c3f137$4d4e7ab0$a901a8c0@guamsda.clinic> Thanks to all. I will try them out as soon as I get the chance. I got something kind of working by adding a background in the header.thtml right after left blocks. . .but I haven't had a chance to see if it is doing what I need on all the different pages. . ----- Original Message ----- From: Tom Willett To: geeklog-users at lists.geeklog.net Sent: Thursday, February 12, 2004 5:05 AM Subject: Re: [geeklog-users] Picture as watermark behind just main middle column on all pages. . . You mean like at the pigstye? Just edit the style.css in you theme. In the body tag add: background-image : url("/images/logo.gif"); background-attachment : fixed; background-position : center; background-repeat : no-repeat; You can adjust the parameters as needed. You may also have to remove the background color. -- Tom Willett tomw at pigstye.net ---------- Original Message ----------- From: "TechFan" To: Sent: Thu, 12 Feb 2004 01:39:48 +1000 Subject: [geeklog-users] Picture as watermark behind just main middle column on all pages. . . > I have been wanting to put a picture behind the main middle section of the > website on every page but haven't figured it out yet. . .it will be a > lightened and a watermark style picture, but I want it to repeat and be the > background for the middle section of the website. It would nice if it would > stretch to fill whatever width the center column allows (like if there is no > right column. > > Thanks. > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users ------- End of Original Message ------- _______________________________________________ geeklog-users mailing list geeklog-users at lists.geeklog.net http://lists.geeklog.net/listinfo/geeklog-users -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists.sf.net at ourholm.net Thu Feb 12 02:18:18 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Thu, 12 Feb 2004 17:18:18 +1000 Subject: [geeklog-users] Another formatting question. . .php variables References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> <20040211190229.M59301@pigstye.net> Message-ID: <027c01c3f138$6616d1e0$a901a8c0@guamsda.clinic> I am actually using a modified TabularDynamics layout. . .but I am finding that the active tabs aren't being marked like they should. I did some reading and found that the $_SERVER global var is only present in PHP 4.1.0 and above. . .I am running 4.0.6 and haven't had a chance to find a way to upgrade yet (if even possible - the website is running on Cobalt/Sun Qube 3 so it isn't just the standard install). It says to use $HTTP_SERVER_VARS instead, but it has to be declared global or something (sorry, haven't done too much PHP programming). I checked the phpinfo() information and found that under the PHP Variables section there is a var called PHP_SELF and there is also a var called HTTP_SERVER_VARS["PHP_SELF"]. So, the values I need are there, but how do I make it so that I can use them to make the current tab active? Thanks. From tony at tonybibbs.com Thu Feb 12 09:39:15 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Thu, 12 Feb 2004 08:39:15 -0600 Subject: [geeklog-users] Another formatting question. . .php variables In-Reply-To: <027c01c3f138$6616d1e0$a901a8c0@guamsda.clinic> References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> <20040211190229.M59301@pigstye.net> <027c01c3f138$6616d1e0$a901a8c0@guamsda.clinic> Message-ID: <402B9013.9000800@tonybibbs.com> function foo() { global $HTTP_SERVER_VARS; echo $HTTP_SERVER_VARS['PHP_SELF']; } TechFan wrote: > I am actually using a modified TabularDynamics layout. . .but I am finding > that the active tabs aren't being marked like they should. I did some > reading and found that the $_SERVER global var is only present in PHP 4.1.0 > and above. . .I am running 4.0.6 and haven't had a chance to find a way to > upgrade yet (if even possible - the website is running on Cobalt/Sun Qube 3 > so it isn't just the standard install). It says to use $HTTP_SERVER_VARS > instead, but it has to be declared global or something (sorry, haven't done > too much PHP programming). I checked the phpinfo() information and found > that under the PHP Variables section there is a var called PHP_SELF and > there is also a var called HTTP_SERVER_VARS["PHP_SELF"]. So, the values I > need are there, but how do I make it so that I can use them to make the > current tab active? > > Thanks. > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From whip at gocougs.org Thu Feb 12 09:57:35 2004 From: whip at gocougs.org (Todd Whipple) Date: Thu, 12 Feb 2004 07:57:35 -0700 Subject: [geeklog-users] Document Library Message-ID: <20040212145505.M59713@gocougs.org> Does anyone know of a plugin that is similar to a "document library", like that found in Microsoft's Sharepoint? I am working on a geeklog site that users want to be able to view documents (like word, jpgs, spreadsheets) and be able to use the geeklog permissions. Thanks, -Todd From lists.sf.net at ourholm.net Thu Feb 12 10:19:08 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Fri, 13 Feb 2004 01:19:08 +1000 Subject: [geeklog-users] Another formatting question. . .php variables In-Reply-To: <402B9013.9000800@tonybibbs.com> References: <000b01c3eff1$50a89c50$0707070a@holmw2k> <20040210191221.24376@smtp.haun-online.de> <0af401c3f0a9$82ce8e20$0707070a@holmw2k> <402A45EB.2040600@abtech.org> <0b2c01c3f0b5$483e86f0$0707070a@holmw2k> <20040211190229.M59301@pigstye.net> <027c01c3f138$6616d1e0$a901a8c0@guamsda.clinic> <402B9013.9000800@tonybibbs.com> Message-ID: <402B996C.4040100@ourholm.net> Thanks. I tried added a function in lib-custom.php with just the global line. . .and then running that function in header.thtml but it still wouldn't work. . .I wasn't sure what the scope rules are with PHP, so I ended up just putting the global line directly in header.thtml. . .maybe not ideal though. Thanks again. Tony Bibbs wrote: > function foo() { > global $HTTP_SERVER_VARS; > > echo $HTTP_SERVER_VARS['PHP_SELF']; > } > > TechFan wrote: > >> I am actually using a modified TabularDynamics layout. . .but I am >> finding >> that the active tabs aren't being marked like they should. I did some >> reading and found that the $_SERVER global var is only present in PHP >> 4.1.0 >> and above. . .I am running 4.0.6 and haven't had a chance to find a >> way to >> upgrade yet (if even possible - the website is running on Cobalt/Sun >> Qube 3 >> so it isn't just the standard install). It says to use >> $HTTP_SERVER_VARS >> instead, but it has to be declared global or something (sorry, >> haven't done >> too much PHP programming). I checked the phpinfo() information and >> found >> that under the PHP Variables section there is a var called PHP_SELF and >> there is also a var called HTTP_SERVER_VARS["PHP_SELF"]. So, the >> values I >> need are there, but how do I make it so that I can use them to make the >> current tab active? >> >> Thanks. >> >> _______________________________________________ >> geeklog-users mailing list >> geeklog-users at lists.geeklog.net >> http://lists.geeklog.net/listinfo/geeklog-users > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From tony at tonybibbs.com Thu Feb 12 10:42:51 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Thu, 12 Feb 2004 09:42:51 -0600 Subject: [geeklog-users] Document Library In-Reply-To: <20040212145505.M59713@gocougs.org> References: <20040212145505.M59713@gocougs.org> Message-ID: <402B9EFB.6060808@tonybibbs.com> Blaines file management plugin should be a pretty good start All you should have to do is figure out how to integrate the GL security on each file (code from the stories, links, etc should be a good starting point). If you don't have any php-fu then you can ask Blaine superly nicely and maybe, just maybe... --Tony Todd Whipple wrote: > Does anyone know of a plugin that is similar to a "document library", like > that found in Microsoft's Sharepoint? I am working on a geeklog site that > users want to be able to view documents (like word, jpgs, spreadsheets) and > be able to use the geeklog permissions. > > Thanks, > > -Todd > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From wfz at wfzimmerman.com Thu Feb 12 11:28:01 2004 From: wfz at wfzimmerman.com (W. Frederick Zimmerman) Date: Thu, 12 Feb 2004 11:28:01 -0500 Subject: [geeklog-users] Document Library In-Reply-To: <402B9EFB.6060808@tonybibbs.com> Message-ID: Permissions on the file management plugin would be a big help for me too. -----Original Message----- From: geeklog-users-admin at lists.geeklog.net [mailto:geeklog-users-admin at lists.geeklog.net] On Behalf Of Tony Bibbs Sent: Thursday, February 12, 2004 10:43 AM To: geeklog-users at lists.geeklog.net Subject: Re: [geeklog-users] Document Library Blaines file management plugin should be a pretty good start All you should have to do is figure out how to integrate the GL security on each file (code from the stories, links, etc should be a good starting point). If you don't have any php-fu then you can ask Blaine superly nicely and maybe, just maybe... --Tony Todd Whipple wrote: > Does anyone know of a plugin that is similar to a "document library", like > that found in Microsoft's Sharepoint? I am working on a geeklog site that > users want to be able to view documents (like word, jpgs, spreadsheets) and > be able to use the geeklog permissions. > > Thanks, > > -Todd > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users _______________________________________________ geeklog-users mailing list geeklog-users at lists.geeklog.net http://lists.geeklog.net/listinfo/geeklog-users From Hcarrington1 at aol.com Fri Feb 13 01:42:08 2004 From: Hcarrington1 at aol.com (Hcarrington1 at aol.com) Date: Fri, 13 Feb 2004 01:42:08 EST Subject: [geeklog-users] Failed to Connect to mail server Message-ID: <46.46c6dc01.2d5dcbc0@aol.com> Hi, My name is Oratari. I recently visited http://lists.geeklog.net/pipermail/geeklog-users/2003-March/000277.html, and I have the exact warning/error message. I would like to know if you have the answer, seeing that it happened to you nearly one year ago. Thanks, Oratari. -------------- next part -------------- An HTML attachment was scrubbed... URL: From lists.sf.net at ourholm.net Sat Feb 14 03:18:44 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Sat, 14 Feb 2004 18:18:44 +1000 Subject: [geeklog-users] Scripting in blocks. . . Message-ID: <402DD9E4.7010306@ourholm.net> It has been a while, but if I remember correctly, php is not executed in a normal block. I found a night-and-day map that I would like to put on my website in a block, but it doesn't seem to work in a block as is. . .not sure if something about blocks is limiting it because it works outside the blocks. . .thanks. Here is the link: http://www.24fun.com/downloadcenter/utildaynightmap/utildaynightmap.html From lists.sf.net at ourholm.net Sat Feb 14 04:08:44 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Sat, 14 Feb 2004 19:08:44 +1000 Subject: [geeklog-users] WYSWYG Editing? Message-ID: <402DE59C.6@ourholm.net> I had to introduce another user to how to post stories this week and ended up having to teach them HTML tags. I saw the sourceforge update email and noticed FCKEditor (a GUI web-hosted HTML editor). It sure would be nice to have a way to simply let them format their posts. Would it be possible to integrate something like this? Or is there another solution someone suggests? Really, all they need would be text size controls, bold, italics, underline, maybe strike-through, numbered and bulleted lists, plus a way to indent. . . Anyway, thinking about how to solve a problem. . .thanks. From dirk at haun-online.de Sat Feb 14 04:25:51 2004 From: dirk at haun-online.de (Dirk Haun) Date: Sat, 14 Feb 2004 10:25:51 +0100 Subject: [geeklog-users] Scripting in blocks. . . In-Reply-To: <402DD9E4.7010306@ourholm.net> References: <402DD9E4.7010306@ourholm.net> Message-ID: <20040214092552.6546@smtp.haun-online.de> >It has been a while, but if I remember correctly, php is not executed in >a normal block. [...] >Here is the link: >http://www.24fun.com/downloadcenter/utildaynightmap/utildaynightmap.html That's a JavaScript. Those should work just fine in a normal block. bye, Dirk -- http://www.haun-online.de/ http://geeklog.info/ From dirk at haun-online.de Sat Feb 14 04:26:39 2004 From: dirk at haun-online.de (Dirk Haun) Date: Sat, 14 Feb 2004 10:26:39 +0100 Subject: [geeklog-users] WYSWYG Editing? In-Reply-To: <402DE59C.6@ourholm.net> References: <402DE59C.6@ourholm.net> Message-ID: <20040214092639.12464@smtp.haun-online.de> >Or is there another solution someone suggests? Search the forum for "HTMLarea". bye, Dirk -- http://www.haun-online.de/ http://geeklog.info/ From lists.sf.net at ourholm.net Sat Feb 14 05:05:53 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Sat, 14 Feb 2004 20:05:53 +1000 Subject: [geeklog-users] WYSWYG Editing? References: <402DE59C.6@ourholm.net> <20040214092639.12464@smtp.haun-online.de> Message-ID: <0c3001c3f2e2$21f8ccb0$0707070a@holmw2k> Thanks. I knew I had seen something somewhere, but I had never had a chance to play with it before. . .thanks again for the reminder. ----- Original Message ----- From: "Dirk Haun" To: Sent: Saturday, February 14, 2004 7:26 PM Subject: Re: [geeklog-users] WYSWYG Editing? > >Or is there another solution someone suggests? > > Search the forum for "HTMLarea". > > bye, Dirk > > > -- > http://www.haun-online.de/ > http://geeklog.info/ > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From mail at ourholm.net Sat Feb 14 05:06:22 2004 From: mail at ourholm.net (Matthew Holm) Date: Sat, 14 Feb 2004 20:06:22 +1000 Subject: [geeklog-users] Scripting in blocks. . . References: <402DD9E4.7010306@ourholm.net> <20040214092552.6546@smtp.haun-online.de> Message-ID: <0c3601c3f2e2$35b941d0$0707070a@holmw2k> That's what I thought too. . .until I tried it. . . ----- Original Message ----- From: "Dirk Haun" To: Sent: Saturday, February 14, 2004 7:25 PM Subject: Re: [geeklog-users] Scripting in blocks. . . > >It has been a while, but if I remember correctly, php is not executed in > >a normal block. > [...] > >Here is the link: > >http://www.24fun.com/downloadcenter/utildaynightmap/utildaynightmap.html > > That's a JavaScript. Those should work just fine in a normal block. > > bye, Dirk > > > -- > http://www.haun-online.de/ > http://geeklog.info/ > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From lists.sf.net at ourholm.net Sat Feb 14 10:52:22 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Sun, 15 Feb 2004 01:52:22 +1000 Subject: [geeklog-users] WYSWYG Editing? References: <402DE59C.6@ourholm.net> <20040214092639.12464@smtp.haun-online.de> <0c3001c3f2e2$21f8ccb0$0707070a@holmw2k> Message-ID: <0c4601c3f312$8945cdc0$0707070a@holmw2k> I was following the instructions for installing htmlarea and I was a bit confused about this line in the install instructions. Thanks. ----- Original Message ----- From: "TechFan" To: Sent: Saturday, February 14, 2004 8:05 PM Subject: Re: [geeklog-users] WYSWYG Editing? > Thanks. I knew I had seen something somewhere, but I had never had a chance > to play with it before. . .thanks again for the reminder. > > ----- Original Message ----- > From: "Dirk Haun" > To: > Sent: Saturday, February 14, 2004 7:26 PM > Subject: Re: [geeklog-users] WYSWYG Editing? > > > > >Or is there another solution someone suggests? > > > > Search the forum for "HTMLarea". > > > > bye, Dirk > > > > > > -- > > http://www.haun-online.de/ > > http://geeklog.info/ > > > > _______________________________________________ > > geeklog-users mailing list > > geeklog-users at lists.geeklog.net > > http://lists.geeklog.net/listinfo/geeklog-users > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From lists.sf.net at ourholm.net Sat Feb 14 19:59:59 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Sun, 15 Feb 2004 10:59:59 +1000 Subject: [geeklog-users] WYSWYG Editing? References: <402DE59C.6@ourholm.net> <20040214092639.12464@smtp.haun-online.de> <0c3001c3f2e2$21f8ccb0$0707070a@holmw2k> <0c4601c3f312$8945cdc0$0707070a@holmw2k> Message-ID: <002b01c3f35f$09ba1aa0$0707070a@holmw2k> Forgot to include the lines I was wondering about. . . --- editor_generate('TEXTAREANAME',config); Replace TEXTAREANAME with the name of the text area. --- How do I choose what to rename the TEXTAREANAME to?? Also couldn't find the place to add htmlarea to the static page plugin. . .it doesn't have the template file it mentions in Tony's installation instructions. I actually want to get the v3 beta htmlarea working as well (it has a spell checker), but I want to make sure I am installing this one correctly first. Thanks again. ----- Original Message ----- From: "TechFan" To: Sent: Sunday, February 15, 2004 1:52 AM Subject: Re: [geeklog-users] WYSWYG Editing? > I was following the instructions for installing htmlarea and I was a bit > confused about this line in the install instructions. > > Thanks. > > ----- Original Message ----- > From: "TechFan" > To: > Sent: Saturday, February 14, 2004 8:05 PM > Subject: Re: [geeklog-users] WYSWYG Editing? > > > > Thanks. I knew I had seen something somewhere, but I had never had a > chance > > to play with it before. . .thanks again for the reminder. > > > > ----- Original Message ----- > > From: "Dirk Haun" > > To: > > Sent: Saturday, February 14, 2004 7:26 PM > > Subject: Re: [geeklog-users] WYSWYG Editing? > > > > > > > >Or is there another solution someone suggests? > > > > > > Search the forum for "HTMLarea". > > > > > > bye, Dirk > > > > > > > > > -- > > > http://www.haun-online.de/ > > > http://geeklog.info/ > > > > > > _______________________________________________ > > > geeklog-users mailing list > > > geeklog-users at lists.geeklog.net > > > http://lists.geeklog.net/listinfo/geeklog-users > > > > > > _______________________________________________ > > geeklog-users mailing list > > geeklog-users at lists.geeklog.net > > http://lists.geeklog.net/listinfo/geeklog-users > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From e at marinx.com Sat Feb 14 22:24:44 2004 From: e at marinx.com (- Ed -) Date: Sat, 14 Feb 2004 19:24:44 -0800 Subject: [geeklog-users] WYSWYG Editing? In-Reply-To: <402DE59C.6@ourholm.net> Message-ID: <000801c3f373$41af6c30$0a32a8c0@theth> TechFan, I've used HTML Area a lot, so if you have any questions, feel free to contact me. You can find me on Geeklog.net as user emagin. One recommendation to all Geeklog admins using Windows, is that you grab the OpenSource code compare tool called WinMerge http://winmerge.sourceforge.net/ I use it DAILY to update different versions of Geeklog to my latest production version, or for testing with Dirk's, Vinny's and Tony's great CVS work (and other too). The trick with lots of enhancements like HTMLArea is that they must be applied to LAYOUTS. So it gets pretty hairy if you have lots of layouts as choices in your install. With WinMerge, or unix equivalent, it's a snap to push code from one layout to the next without mucking up your code. You break a layout your site might not load! Good luck! : -----Original Message----- : From: geeklog-users-admin at lists.geeklog.net : [mailto:geeklog-users-admin at lists.geeklog.net]On Behalf Of TechFan : Sent: Saturday, February 14, 2004 1:09 AM : To: geeklog-users at lists.geeklog.net : Subject: [geeklog-users] WYSWYG Editing? : : : I had to introduce another user to how to post stories this week and : ended up having to teach them HTML tags. I saw the sourceforge update : email and noticed FCKEditor (a GUI web-hosted HTML editor). It sure : would be nice to have a way to simply let them format their posts. : Would it be possible to integrate something like this? Or is there : another solution someone suggests? Really, all they need would be text : size controls, bold, italics, underline, maybe strike-through, numbered : and bulleted lists, plus a way to indent. . . : : Anyway, thinking about how to solve a problem. . .thanks. : : _______________________________________________ : geeklog-users mailing list : geeklog-users at lists.geeklog.net : http://lists.geeklog.net/listinfo/geeklog-users : From dhull at digitaloverload.net Sun Feb 15 20:47:34 2004 From: dhull at digitaloverload.net (dhull) Date: Mon, 16 Feb 2004 01:47:34 +0000 Subject: [geeklog-users] page takes a long time to load Message-ID: <20040216014734.5979.qmail@station188.com> I've got geeklog installed and working. At home evrything works. I can access the page and log in as Admin. I have the server connected to my dsl connection and was hoping to be able to access it over the web. Here's what I found out. 1. I can access geeklog from the internet but the page times out. The buttens etc... take to long to load. 2. I did other tests to see what I can and can't do with my connection. From the internet I can listen to my mp3's on my mp3 server at home. I never tried this before and thought it was really cool. I know a faster connection to the net is an easy answer. However, mp3's are larg files and I can listen to them over the net. If I can do that why can't I get geeklog to work? If anyone has any ideas pleas let me know. -------------- next part -------------- An HTML attachment was scrubbed... URL: From wjs357 at access4less.net Mon Feb 16 13:42:28 2004 From: wjs357 at access4less.net (Walter Shudde) Date: Mon, 16 Feb 2004 11:42:28 -0700 Subject: [geeklog-users] More on page refresh problem Message-ID: <000d01c3f4bc$a1a37920$0100007f@localhost> Hi all, First, many thanks to the kind people who responded to my previous request for help. None of the proposed solutions solved the problem, however, so I posted the problem to my web hosting provider (www.101sitehosting.com) (The text of my post follows below). who responded with the with the following: >> I think i've at least found the culprit. It takes many page refreshes but eventually all of those apache and MySQL requests take up the full 2GB of RAM on the server and it needs to dip into the Swap (hard drive) memory set aside to deal with memory intensive requests. This is when your problem occurs. I tried duplicating this effect on other PHP/MySQL blogs, however it only occurs on your Geeklog blog. I couldn't find any other Geeklog log blogs on the server to confirm this finding but the fact that some very well known blogs that I tested like PHPNuke, PHPBB, and Mambo OSM didn't display similar problems leads me to believe there is code within Geeklog that needs to be rewritten to account for Swap memory usage?? I'm not a PHP programmer, but that is the most likely scenario. Any thoughts? >> My original post to hosting provider: >> I am running "Geeklog", a weblog/portal PHP program on my site and am experiencing a puzzling problem. Pages on my site occassionally do not appear to refresh properly. Pages display in funny colors with what appear to be code snippets in place of pictures or text. This sometimes happens when initially navigating to the site, but most frequently occurs when moving from one section of the site to another. Hitting the refresh button on my browser usually causes the page to refresh properly, though sometimes it is necessary to hit refresh several times before the page displays correctly. This problem doesn't seem to be browser specific, as this behavior occurs when using IE_6 or Mozilla/Firebird. The problem also occurs computers other than my own. I posted the problem to the Geeklog developers mailing list and one thought was that it is most likely an Apache configuration problem. Specifically: ---snip--- I think the problem could be an Apache problem. If you are running Apache, check your httpd.conf file and look for #enablesendfile off when you find it, remove the remark or # and save the file and restart Apache ---snip--- 1) Could you review and make an neccessary changes in the Apache config on the server and 2) Could you send a copy of the httpd.conf for review to see if there are any other config settings that might be problamatic? If helpful, screen captures of the problem are here : www.x-factornet.com/geekscreen1.jpg and www.x-factornet.com/geekscreen2.jpg >> Has anyone else experienced this problem? If so, solutions? Any help would be greatly appreciated. Regards, Walter Shudde -------------- next part -------------- An HTML attachment was scrubbed... URL: From richard at belcarra.com Mon Feb 16 11:28:27 2004 From: richard at belcarra.com (Richard Pitt) Date: 16 Feb 2004 08:28:27 -0800 Subject: [geeklog-users] page takes a long time to load In-Reply-To: <20040216014734.5979.qmail@station188.com> References: <20040216014734.5979.qmail@station188.com> Message-ID: <1076948907.29410.853.camel@pacdat.pacdat.net> It's not likely a Geeklog problem - it is more likely your link's latency (different from but related to bandwidth) I'm betting you're on a ADSL line but you might see this with cable too. ADSL is typically 70ms from subscriber to the first "outside" router where cable is generally about half that. This has to do with the way ADSL packetizes the IP via ATM. Of course it could also just be that your ISP's infrastructure is choked and causing high latency that way. Most web servers limit concurrent fetches to 4 at a time, regardless of how your browser is set - this means your browser will fetch the base document then look for the URLs for any graphics and start to load them. Each TCP conversation takes 2 round-trip setup sets before any data starts to flow - and if you are on ADSL this means something like 4x70ms = 280 ms or just over 1/4 second to start getting the first graphic after you have the text for the page - and then get them 4 at a time until they are all there. If you have many graphics on the page, each set will come in 1/4 second after the previous set and the time taken will be the total size of the graphics files divided by the outgoing bandwidth on your link. On the other hand, your mp3 stream takes only one setup set (2 round trips) then it streams at whatever your outgoing bandwidth is until it is interrupted or finished. richard On Sun, 2004-02-15 at 17:47, dhull wrote: > I've got geeklog installed and working. At home evrything works. I can > access the page and log in as Admin. I have the server connected to my > dsl connection and was hoping to be able to access it over the web. > Here's what I found out. > > 1. I can access geeklog from the internet but the page times out. The > buttens etc... take to long to load. > > 2. I did other tests to see what I can and can't do with my > connection. From the internet I can listen to my mp3's on my mp3 > server at home. I never tried this before and thought it was really > cool. > > I know a faster connection to the net is an easy answer. However, > mp3's are larg files and I can listen to them over the net. If I can > do that why can't I get geeklog to work? > > If anyone has any ideas pleas let me know. -- Richard C. Pitt Belcarra Technologies richard at belcarra.com direct: 604-644-9265 www.belcarra.com Embedded Systems Communications Specialists - USB, ATM, LAN/WAN, Wireless USB for Linux, Windows, MAC OS/X - USBLAN (tm) - drivers for USB mass storage PGP Fingerprint: BA31 64B9 172D AF08 B174 B5BB 8E36 E56C F46D D371 From drago-l-gl at goricanec.com Mon Feb 16 19:34:25 2004 From: drago-l-gl at goricanec.com (Drago Goricanec) Date: Mon, 16 Feb 2004 16:34:25 -0800 Subject: [geeklog-users] Avoid hardcoding http protocol in {site_url} Message-ID: <1076978065.40316191c55c4@webmail.lecielbleu.net> I modified geeklog code to detect whether http or https was used to connect, and then write all URLs using the resulting protocol. The reason is that I didn't want to leave either my password, or my weblog information on a computer or network that I didn't trust (when administering the site), but I didn't want all users to be forced to use https. Current code uses $_CONF['site_url'] for all URL references. If 'http:' is hardcoded here, then even if the connection is over 'https', all references to images and links within the site remain 'http'. I changed all URL references to my geeklog site to be relative to {site_url} (i.e., {site_url} doesn't appear in any of the templates). I changed the layout header to emit . {site_url} still exists, but it is dynamically created based on the protocol used to connect (http or https) with a path to the weblog. Trailing '/' is omitted. All other URLs, such as {site_admin_url} are relative to {site_url}. Even images in stories are stored with a relative URL. I also added a secure/normal login link to switch between http and https just below the login form. Would others be interested in this change? I can provide a patch against the latest source. What is the process of submitting such patches? Drago From tony at tonybibbs.com Mon Feb 16 22:29:52 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Mon, 16 Feb 2004 21:29:52 -0600 Subject: [geeklog-users] Avoid hardcoding http protocol in {site_url} In-Reply-To: <1076978065.40316191c55c4@webmail.lecielbleu.net> References: <1076978065.40316191c55c4@webmail.lecielbleu.net> Message-ID: <40318AB0.2070404@tonybibbs.com> I personally wouldn't like this because I know some proxy servers that pass web traffic to web servers behind it end up making the relative pathing a problem. Geeklog needs to make clear (and clean) support of SSL for all admin functions. The base is there we just need to change the code to allow for https for admin stuff. It maybe as simple as adding a $_CONF['admin_protocol'] variable that can be either http or https. Then we could dynamically generate the https for the admin side. We should also make a similar change to the public login page. Oh, hope the proxy server thing makes sense. We have a configuration here at work like that and it reaks havoc if you don't use absolute paths (nor just for our PHP apps but our Java and ASP/.NET apps as well. --Tony Drago Goricanec wrote: > I modified geeklog code to detect whether http or https was used to connect, and > then write all URLs using the resulting protocol. The reason is that I didn't > want to leave either my password, or my weblog information on a computer or > network that I didn't trust (when administering the site), but I didn't want > all users to be forced to use https. > > Current code uses $_CONF['site_url'] for all URL references. If 'http:' is > hardcoded here, then even if the connection is over 'https', all references to > images and links within the site remain 'http'. > > I changed all URL references to my geeklog site to be relative to {site_url} > (i.e., {site_url} doesn't appear in any of the templates). I changed the layout > header to emit . {site_url} still exists, but it is > dynamically created based on the protocol used to connect (http or https) with > a path to the weblog. Trailing '/' is omitted. All other URLs, such as > {site_admin_url} are relative to {site_url}. Even images in stories are stored > with a relative URL. > > I also added a secure/normal login link to switch between http and https just > below the login form. > > Would others be interested in this change? I can provide a patch against the > latest source. What is the process of submitting such patches? > > Drago > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From drago-l-gl at goricanec.com Mon Feb 16 23:00:42 2004 From: drago-l-gl at goricanec.com (Drago Goricanec) Date: Mon, 16 Feb 2004 20:00:42 -0800 Subject: [geeklog-users] Avoid hardcoding http protocol in {site_url} In-Reply-To: <40318AB0.2070404@tonybibbs.com> References: <1076978065.40316191c55c4@webmail.lecielbleu.net> <40318AB0.2070404@tonybibbs.com> Message-ID: <1076990442.403191ea79ac8@webmail.lecielbleu.net> Actually, the protocol and the base are two different issues. I added the base so that I wouldn't have to rewrite image URLs that are referenced by the story (they're stored in the database with the protocol). Also, I wanted links to my local site to match the protocol that was currently in use. They could all be dynamically rewritten. Perhaps rather than storing the full URL, there could be a [site_url] prefix that was stored in the link or article and rewritten when the pages are generated. It would also make it easier to move the site to another URL. The protocol stuff was as clean as adding this line to my config.php: $_CONF['site_url'] = ($_SERVER['SERVER_PORT'] == 443 ? 'https:' : 'http:') . "//www.example.com/"; What is the method of submitting patches to the development team? Drago Quoting Tony Bibbs : > I personally wouldn't like this because I know some proxy servers that > pass web traffic to web servers behind it end up making the relative > pathing a problem. Geeklog needs to make clear (and clean) support of > SSL for all admin functions. The base is there we just need to change > the code to allow for https for admin stuff. It maybe as simple as > adding a $_CONF['admin_protocol'] variable that can be either http or > https. Then we could dynamically generate the https for the admin side. > We should also make a similar change to the public login page. > > Oh, hope the proxy server thing makes sense. We have a configuration > here at work like that and it reaks havoc if you don't use absolute > paths (nor just for our PHP apps but our Java and ASP/.NET apps as well. > > --Tony > > Drago Goricanec wrote: > > I modified geeklog code to detect whether http or https was used to > connect, and > > then write all URLs using the resulting protocol. The reason is that I > didn't > > want to leave either my password, or my weblog information on a computer > or > > network that I didn't trust (when administering the site), but I didn't > want > > all users to be forced to use https. > > > > Current code uses $_CONF['site_url'] for all URL references. If 'http:' is > > hardcoded here, then even if the connection is over 'https', all references > to > > images and links within the site remain 'http'. > > > > I changed all URL references to my geeklog site to be relative to > {site_url} > > (i.e., {site_url} doesn't appear in any of the templates). I changed the > layout > > header to emit . {site_url} still exists, but it > is > > dynamically created based on the protocol used to connect (http or https) > with > > a path to the weblog. Trailing '/' is omitted. All other URLs, such as > > {site_admin_url} are relative to {site_url}. Even images in stories are > stored > > with a relative URL. > > > > I also added a secure/normal login link to switch between http and https > just > > below the login form. > > > > Would others be interested in this change? I can provide a patch against > the > > latest source. What is the process of submitting such patches? > > > > Drago > > _______________________________________________ > > geeklog-users mailing list > > geeklog-users at lists.geeklog.net > > http://lists.geeklog.net/listinfo/geeklog-users > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From tony at tonybibbs.com Tue Feb 17 11:07:41 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Tue, 17 Feb 2004 10:07:41 -0600 Subject: [geeklog-users] Avoid hardcoding http protocol in {site_url} In-Reply-To: <1076990442.403191ea79ac8@webmail.lecielbleu.net> References: <1076978065.40316191c55c4@webmail.lecielbleu.net> <40318AB0.2070404@tonybibbs.com> <1076990442.403191ea79ac8@webmail.lecielbleu.net> Message-ID: <40323C4D.8050107@tonybibbs.com> Just send the effected file(s) or relative .patch to geeklog-devtalk at lists.geeklog.net. We'll reveiw anything you have and move from there. Thanks, --Tony Drago Goricanec wrote: > Actually, the protocol and the base are two different issues. I added the base > so that I wouldn't have to rewrite image URLs that are referenced by the story > (they're stored in the database with the protocol). Also, I wanted links to my > local site to match the protocol that was currently in use. They could all be > dynamically rewritten. Perhaps rather than storing the full URL, there could be > a [site_url] prefix that was stored in the link or article and rewritten when > the pages are generated. It would also make it easier to move the site to > another URL. > > The protocol stuff was as clean as adding this line to my config.php: > > $_CONF['site_url'] = ($_SERVER['SERVER_PORT'] == 443 ? 'https:' : 'http:') . > "//www.example.com/"; > > What is the method of submitting patches to the development team? > > Drago > > Quoting Tony Bibbs : > > >>I personally wouldn't like this because I know some proxy servers that >>pass web traffic to web servers behind it end up making the relative >>pathing a problem. Geeklog needs to make clear (and clean) support of >>SSL for all admin functions. The base is there we just need to change >>the code to allow for https for admin stuff. It maybe as simple as >>adding a $_CONF['admin_protocol'] variable that can be either http or >>https. Then we could dynamically generate the https for the admin side. >> We should also make a similar change to the public login page. >> >>Oh, hope the proxy server thing makes sense. We have a configuration >>here at work like that and it reaks havoc if you don't use absolute >>paths (nor just for our PHP apps but our Java and ASP/.NET apps as well. >> >>--Tony >> >>Drago Goricanec wrote: >> >>>I modified geeklog code to detect whether http or https was used to >> >>connect, and >> >>>then write all URLs using the resulting protocol. The reason is that I >> >>didn't >> >>>want to leave either my password, or my weblog information on a computer >> >>or >> >>>network that I didn't trust (when administering the site), but I didn't >> >>want >> >>>all users to be forced to use https. >>> >>>Current code uses $_CONF['site_url'] for all URL references. If 'http:' is >>>hardcoded here, then even if the connection is over 'https', all references >> >>to >> >>>images and links within the site remain 'http'. >>> >>>I changed all URL references to my geeklog site to be relative to >> >>{site_url} >> >>>(i.e., {site_url} doesn't appear in any of the templates). I changed the >> >>layout >> >>>header to emit . {site_url} still exists, but it >> >>is >> >>>dynamically created based on the protocol used to connect (http or https) >> >>with >> >>>a path to the weblog. Trailing '/' is omitted. All other URLs, such as >>>{site_admin_url} are relative to {site_url}. Even images in stories are >> >>stored >> >>>with a relative URL. >>> >>>I also added a secure/normal login link to switch between http and https >> >>just >> >>>below the login form. >>> >>>Would others be interested in this change? I can provide a patch against >> >>the >> >>>latest source. What is the process of submitting such patches? >>> >>>Drago >>>_______________________________________________ >>>geeklog-users mailing list >>>geeklog-users at lists.geeklog.net >>>http://lists.geeklog.net/listinfo/geeklog-users >> >> >>_______________________________________________ >>geeklog-users mailing list >>geeklog-users at lists.geeklog.net >>http://lists.geeklog.net/listinfo/geeklog-users >> > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From lists.sf.net at ourholm.net Thu Feb 19 22:28:47 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Fri, 20 Feb 2004 13:28:47 +1000 Subject: [geeklog-users] Changing story defaults. . . References: <1076978065.40316191c55c4@webmail.lecielbleu.net> <40318AB0.2070404@tonybibbs.com> <1076990442.403191ea79ac8@webmail.lecielbleu.net> <40323C4D.8050107@tonybibbs.com> Message-ID: <07fa01c3f761$a8798350$a901a8c0@guamsda.clinic> Where can I change the defaults for posting a story (want coments off by default and HTML post by default). . .in the template files? From limynali at ripplefx.net Thu Feb 19 22:59:38 2004 From: limynali at ripplefx.net (Limynali) Date: Thu, 19 Feb 2004 21:59:38 -0600 Subject: [geeklog-users] Changing story defaults. . . In-Reply-To: <07fa01c3f761$a8798350$a901a8c0@guamsda.clinic> References: <1076978065.40316191c55c4@webmail.lecielbleu.net> <40318AB0.2070404@tonybibbs.com> <1076990442.403191ea79ac8@webmail.lecielbleu.net> <40323C4D.8050107@tonybibbs.com> <07fa01c3f761$a8798350$a901a8c0@guamsda.clinic> Message-ID: <4035862A.1010503@ripplefx.net> It's in config.php TechFan wrote: >Where can I change the defaults for posting a story (want coments off by >default and HTML post by default). . .in the template files? > >_______________________________________________ >geeklog-users mailing list >geeklog-users at lists.geeklog.net >http://lists.geeklog.net/listinfo/geeklog-users > > > From lists.sf.net at ourholm.net Thu Feb 19 23:29:52 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Fri, 20 Feb 2004 14:29:52 +1000 Subject: [geeklog-users] Changing story defaults. . . References: <1076978065.40316191c55c4@webmail.lecielbleu.net> <40318AB0.2070404@tonybibbs.com> <1076990442.403191ea79ac8@webmail.lecielbleu.net> <40323C4D.8050107@tonybibbs.com> <07fa01c3f761$a8798350$a901a8c0@guamsda.clinic> <4035862A.1010503@ripplefx.net> Message-ID: <082201c3f76a$312ef1a0$a901a8c0@guamsda.clinic> I found where to turn the comments off, but I don't see the post mode (html) . ----- Original Message ----- From: "Limynali" To: Sent: Friday, February 20, 2004 1:59 PM Subject: Re: [geeklog-users] Changing story defaults. . . > It's in config.php > > TechFan wrote: > > >Where can I change the defaults for posting a story (want coments off by > >default and HTML post by default). . .in the template files? > > > >_______________________________________________ > >geeklog-users mailing list > >geeklog-users at lists.geeklog.net > >http://lists.geeklog.net/listinfo/geeklog-users > > > > > > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From dirk at haun-online.de Fri Feb 20 01:55:09 2004 From: dirk at haun-online.de (Dirk Haun) Date: Fri, 20 Feb 2004 07:55:09 +0100 Subject: [geeklog-users] Changing story defaults. . . In-Reply-To: <082201c3f76a$312ef1a0$a901a8c0@guamsda.clinic> References: <082201c3f76a$312ef1a0$a901a8c0@guamsda.clinic> Message-ID: <20040220065509.31453@smtp.haun-online.de> >I found where to turn the comments off, but I don't see the post mode (html) $_CONF['postmode'] = 'plaintext'; // can be 'plaintext' or 'html' Too obvious, eh? ;-) That setting applies to the entire site, though. I.e. it will be the default for user submitted stories, too. bye, Dirk -- http://www.haun-online.de/ http://www.macosx-faq.de/ From lists.sf.net at ourholm.net Fri Feb 20 02:24:16 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Fri, 20 Feb 2004 17:24:16 +1000 Subject: [geeklog-users] Changing story defaults. . . References: <082201c3f76a$312ef1a0$a901a8c0@guamsda.clinic> <20040220065509.31453@smtp.haun-online.de> Message-ID: <083901c3f782$8df998a0$a901a8c0@guamsda.clinic> Thanks. . .:-) I am not sure how I missed that one. . .I did a search of the config.php for "html" Anyway, changed and happy now. Any idea why strikethrough doesn't show up in htmlarea boxes? . ----- Original Message ----- From: "Dirk Haun" To: Sent: Friday, February 20, 2004 4:55 PM Subject: Re: [geeklog-users] Changing story defaults. . . > >I found where to turn the comments off, but I don't see the post mode (html) > > $_CONF['postmode'] = 'plaintext'; // can be 'plaintext' or 'html' > > Too obvious, eh? ;-) > > That setting applies to the entire site, though. I.e. it will be the > default for user submitted stories, too. > > bye, Dirk > > > -- > http://www.haun-online.de/ > http://www.macosx-faq.de/ > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From limynali at ripplefx.net Fri Feb 20 09:16:37 2004 From: limynali at ripplefx.net (Limynali) Date: Fri, 20 Feb 2004 08:16:37 -0600 Subject: [geeklog-users] Changing story defaults. . . In-Reply-To: <083901c3f782$8df998a0$a901a8c0@guamsda.clinic> References: <082201c3f76a$312ef1a0$a901a8c0@guamsda.clinic> <20040220065509.31453@smtp.haun-online.de> <083901c3f782$8df998a0$a901a8c0@guamsda.clinic> Message-ID: <403616C5.7060801@ripplefx.net> You may want to check if strikethrough is allowed in the allowed html for either users or admins. It's in config.php again under $_CONF['user_html'] and $_CONF['admin_html']. You will need to add a line like this 'strike' => array(), in one of those settings. TechFan wrote: >Any idea why strikethrough doesn't show up in htmlarea boxes? > > > From e at marinx.com Fri Feb 20 13:24:20 2004 From: e at marinx.com (- Ed -) Date: Fri, 20 Feb 2004 10:24:20 -0800 Subject: [geeklog-users] Changing story defaults. . . In-Reply-To: <403616C5.7060801@ripplefx.net> Message-ID: <002d01c3f7de$c1dc8180$0a32a8c0@theth> Check this forum thread (towards end of postings) for a nice explanation of how to mod your config.php file to accept many more settings for HTMLArea to work properly. As it is in default settings, none of the formatting in HTMLArea currently 'stick' when you edit a story. After applying changes, they do. And your 'strike' option could be added in here. http://www.geeklog.net/forum/viewtopic.php?forum=8&showtopic=2454 : You may want to check if strikethrough is allowed in the allowed html : for either users or admins. It's in config.php again under : $_CONF['user_html'] and $_CONF['admin_html']. You will need to add a : line like this : 'strike' => array(), : : in one of those settings. : >Any idea why strikethrough doesn't show up in htmlarea boxes? From e at marinx.com Fri Feb 20 13:33:39 2004 From: e at marinx.com (- Ed -) Date: Fri, 20 Feb 2004 10:33:39 -0800 Subject: [geeklog-users] HTML Area Message-ID: <003501c3f7e0$0ed8cc90$0a32a8c0@theth> Check this forum thread (towards end of postings) for a nice explanation of how to mod your config.php file to accept many more settings for HTMLArea to work properly. As it is in default settings, none of the formatting in HTMLArea currently 'stick' when you edit a story. After applying changes, they do. Your 'strike' option could be added in here. http://www.geeklog.net/forum/viewtopic.php?forum=8&showtopic=2454 And in each config.toolbar where the toolbar shows up. >From the install instructions (for HTMLArea): How can I change what controls are displayed on the toolbar? You can add a config.toolbar config setting to control exactly what's shown on the toolbar. Here's an example. config.toolbar = [ ['fontname'], ['fontsize'], ['fontstyle'], ['linebreak'], ['bold','italic','underline','separator'], ['strikethrough','subscript','superscript','separator'], ['justifyleft','justifycenter','justifyright','separator'], ['OrderedList','UnOrderedList','Outdent','Indent','separator'], ['forecolor','backcolor','separator'], //['custom1','custom2','custom3','separator'], ['HorizontalRule','Createlink','InsertImage','htmlmode','separator'], ['about','help'] ]; : You may want to check if strikethrough is allowed in the allowed html : for either users or admins. It's in config.php again under : $_CONF['user_html'] and $_CONF['admin_html']. You will need to add a : line like this : 'strike' => array(), : : in one of those settings. : >Any idea why strikethrough doesn't show up in htmlarea boxes? From lists.sf.net at ourholm.net Sat Feb 21 22:24:36 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Sun, 22 Feb 2004 13:24:36 +1000 Subject: [geeklog-users] HTML Area In-Reply-To: <003501c3f7e0$0ed8cc90$0a32a8c0@theth> References: <003501c3f7e0$0ed8cc90$0a32a8c0@theth> Message-ID: <403820F4.4080401@ourholm.net> Ok. I saw that. . .but do I then have to put the entire config. . .or can I just add strikethrough to the default without specifying them all by just specifying that one in the config? I was thinking that the admin interface (nothing in the config) would have all the options by default. . . - Ed - wrote: >Check this forum thread (towards end of postings) for a nice explanation of >how to mod your config.php file to accept many more settings for HTMLArea to >work properly. As it is in default settings, none of the formatting in >HTMLArea currently 'stick' when you edit a story. After applying changes, >they do. > >Your 'strike' option could be added in here. >http://www.geeklog.net/forum/viewtopic.php?forum=8&showtopic=2454 > >And in each config.toolbar where the toolbar shows up. >From the install instructions (for HTMLArea): > >How can I change what controls are displayed on the toolbar? >You can add a config.toolbar config setting to control exactly what's shown >on the toolbar. Here's an example. >config.toolbar = [ > ['fontname'], > ['fontsize'], > ['fontstyle'], > ['linebreak'], > ['bold','italic','underline','separator'], > ['strikethrough','subscript','superscript','separator'], > ['justifyleft','justifycenter','justifyright','separator'], > ['OrderedList','UnOrderedList','Outdent','Indent','separator'], > ['forecolor','backcolor','separator'], >//['custom1','custom2','custom3','separator'], > ['HorizontalRule','Createlink','InsertImage','htmlmode','separator'], > ['about','help'] >]; > > > : You may want to check if strikethrough is allowed in the allowed html > : for either users or admins. It's in config.php again under > : $_CONF['user_html'] and $_CONF['admin_html']. You will need to add a > : line like this > : 'strike' => array(), > : : in one of those settings. > > : >Any idea why strikethrough doesn't show up in htmlarea boxes? > > > >_______________________________________________ >geeklog-users mailing list >geeklog-users at lists.geeklog.net >http://lists.geeklog.net/listinfo/geeklog-users > > From lists.sf.net at ourholm.net Sat Feb 21 22:39:20 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Sun, 22 Feb 2004 13:39:20 +1000 Subject: [geeklog-users] HTML Area In-Reply-To: <403820F4.4080401@ourholm.net> References: <003501c3f7e0$0ed8cc90$0a32a8c0@theth> <403820F4.4080401@ourholm.net> Message-ID: <40382468.6090001@ourholm.net> Nevermind. I found it editor.js in the htmlarea directory. . .where I can change the defaults for the main editor. TechFan wrote: > Ok. I saw that. . .but do I then have to put the entire config. . .or > can I just add strikethrough to the default without specifying them > all by just specifying that one in the config? I was thinking that > the admin interface (nothing in the config) would have all the options > by default. . . > > - Ed - wrote: > >> Check this forum thread (towards end of postings) for a nice >> explanation of >> how to mod your config.php file to accept many more settings for >> HTMLArea to >> work properly. As it is in default settings, none of the formatting in >> HTMLArea currently 'stick' when you edit a story. After applying >> changes, >> they do. >> >> Your 'strike' option could be added in here. >> http://www.geeklog.net/forum/viewtopic.php?forum=8&showtopic=2454 >> >> And in each config.toolbar where the toolbar shows up. >> From the install instructions (for HTMLArea): >> >> How can I change what controls are displayed on the toolbar? >> You can add a config.toolbar config setting to control exactly what's >> shown >> on the toolbar. Here's an example. >> config.toolbar = [ >> ['fontname'], >> ['fontsize'], >> ['fontstyle'], >> ['linebreak'], >> ['bold','italic','underline','separator'], >> ['strikethrough','subscript','superscript','separator'], >> ['justifyleft','justifycenter','justifyright','separator'], >> ['OrderedList','UnOrderedList','Outdent','Indent','separator'], >> ['forecolor','backcolor','separator'], >> //['custom1','custom2','custom3','separator'], >> ['HorizontalRule','Createlink','InsertImage','htmlmode','separator'], >> ['about','help'] >> ]; >> >> >> : You may want to check if strikethrough is allowed in the allowed html >> : for either users or admins. It's in config.php again under >> : $_CONF['user_html'] and $_CONF['admin_html']. You will need to add a >> : line like this >> : 'strike' => array(), >> : : in one of those settings. >> >> : >Any idea why strikethrough doesn't show up in htmlarea boxes? >> >> >> >> _______________________________________________ >> geeklog-users mailing list >> geeklog-users at lists.geeklog.net >> http://lists.geeklog.net/listinfo/geeklog-users >> >> > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From lists.sf.net at ourholm.net Sun Feb 22 01:49:22 2004 From: lists.sf.net at ourholm.net (TechFan) Date: Sun, 22 Feb 2004 16:49:22 +1000 Subject: [geeklog-users] Scripting in blocks. . . In-Reply-To: <0c3601c3f2e2$35b941d0$0707070a@holmw2k> References: <402DD9E4.7010306@ourholm.net> <20040214092552.6546@smtp.haun-online.de> <0c3601c3f2e2$35b941d0$0707070a@holmw2k> Message-ID: <403850F2.2070000@ourholm.net> I am not sure what I am doing wrong. I added this night and day map to a block and it still won't show up. . .it shows up correctly when I look at in the now working HTMLAREA block content area. . .?? Matthew Holm wrote: >That's what I thought too. . .until I tried it. . . > >----- Original Message ----- >From: "Dirk Haun" >To: >Sent: Saturday, February 14, 2004 7:25 PM >Subject: Re: [geeklog-users] Scripting in blocks. . . > > > > >>>It has been a while, but if I remember correctly, php is not executed in >>>a normal block. >>> >>> >>[...] >> >> >>>Here is the link: >>>http://www.24fun.com/downloadcenter/utildaynightmap/utildaynightmap.html >>> >>> >>That's a JavaScript. Those should work just fine in a normal block. >> >>bye, Dirk >> >> >>-- >>http://www.haun-online.de/ >>http://geeklog.info/ >> >>_______________________________________________ >>geeklog-users mailing list >>geeklog-users at lists.geeklog.net >>http://lists.geeklog.net/listinfo/geeklog-users >> >> > >_______________________________________________ >geeklog-users mailing list >geeklog-users at lists.geeklog.net >http://lists.geeklog.net/listinfo/geeklog-users > > From listoid1 at linkalarm.com Sun Feb 22 06:46:55 2004 From: listoid1 at linkalarm.com (George Bray) Date: Sun, 22 Feb 2004 22:46:55 +1100 Subject: [geeklog-users] Posting Images Message-ID: One of the most powerful reasons for me to choose GL was the ability to include images in articles. I've not seen this feature in any blogger/cms systems. Here's some feature requests for a future version: 1) Setting to allow Logged-In users to include images in their postings. I've hacked around with a new group that has story.edit and story.submit, and some mods to core code to stop authentication errors. It's not a clean solution because, a) logged in users can get to Story Admin, which may confuse some people, and b) when creating the article they get all the "techy" permissions options. 2) Option to CENTER images in articles, to make the pages look more balanced. 3) I'd like the best of both worlds when uploading images. The uploaded image should be scaled down to the specified size for the article, but also linked to another "maximum" sized image (much like "keep original image", but scaled to a config-specified max size). Small one for the article, click to see it maximum size (not original size). I'm trying to avoid users posting 2048x2048 images from their fancy digital cameras. 4) Perhaps a user option to display the author image in the article's header. I haven't tried 1.3.9 yet, so my apologies if these ideas are covered there. Thanks once again for a robust, beautiful system!! George From dirk at haun-online.de Sun Feb 22 07:04:38 2004 From: dirk at haun-online.de (Dirk Haun) Date: Sun, 22 Feb 2004 13:04:38 +0100 Subject: [geeklog-users] Posting Images In-Reply-To: References: Message-ID: <20040222120439.30171@smtp.haun-online.de> George, >2) Option to CENTER images in articles, to make the pages look more >balanced. Something like

[image1]

should work. >4) Perhaps a user option to display the author image in the article's >header. You can have the author's image in stories by using the {author_photo} variable (that would be a theme-based option, not a user option, though). bye, Dirk -- http://www.haun-online.de/ http://mypod.de/ From vmf at abtech.org Mon Feb 23 20:39:09 2004 From: vmf at abtech.org (Vincent Furia) Date: Mon, 23 Feb 2004 20:39:09 -0500 Subject: [geeklog-users] Comment Help Message-ID: <403AAB3D.5030708@abtech.org> Working on 1.3.9 and need some help, please see this: http://www.geeklog.net/forum/viewtopic.php?forum=3&showtopic=31007 Thanks, Vinny From tony at tonybibbs.com Tue Feb 24 09:22:01 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Tue, 24 Feb 2004 08:22:01 -0600 Subject: [geeklog-users] Re: [contact-us] PGP Keys In-Reply-To: <20040222202533.98497.qmail@qs457.pair.com> References: <20040222202533.98497.qmail@qs457.pair.com> Message-ID: <403B5E09.5000203@tonybibbs.com> PGP = Pretty Good Privacy (do a GOogle search). This is a legacy field that really has little value to most GL users. You can ignore it or, if it bothers you, take it out of the corresponding .thtml theme files. --Tony cohrt wrote: > Please explain me this acronyme > From geeklog at langfamily.ca Tue Feb 24 14:52:06 2004 From: geeklog at langfamily.ca (Blaine Lang) Date: Tue, 24 Feb 2004 14:52:06 -0500 Subject: [geeklog-users] Re: [contact-us] PGP Keys References: <20040222202533.98497.qmail@qs457.pair.com> <403B5E09.5000203@tonybibbs.com> Message-ID: <001701c3fb0f$ae5e4240$650a10ac@XPBL2> Maybe we should by default disable some of these extrafields BIO and PGP key. Blaine ----- Original Message ----- From: "Tony Bibbs" To: "cohrt" ; Sent: Tuesday, February 24, 2004 9:22 AM Subject: [geeklog-users] Re: [contact-us] PGP Keys > PGP = Pretty Good Privacy (do a GOogle search). This is a legacy field > that really has little value to most GL users. You can ignore it or, if > it bothers you, take it out of the corresponding .thtml theme files. > > --Tony > > cohrt wrote: > > Please explain me this acronyme > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From Admin at aplles.org Wed Feb 25 20:19:33 2004 From: Admin at aplles.org (Aplles.Org Team Admin) Date: Wed, 25 Feb 2004 20:19:33 -0500 Subject: [geeklog-users] php block Message-ID: <200402252019.AA226885924@aplles.org> hi all i need your help how to make the Php block and i need the link for file manger and forum i wait !!! thanx for your help Your's NELz From e at marinx.com Thu Feb 26 01:51:17 2004 From: e at marinx.com (Ed) Date: Wed, 25 Feb 2004 22:51:17 -0800 Subject: [geeklog-users] 1.3.9rc1 Event - Repeating Message-ID: <000501c3fc34$ef43e910$0a32a8c0@theth> There appears to be an incorporated repeating event option in the new 1.3.9rc1 code for event.php But whatever choices I try, nothing actually repeats. Is this a bug, or did I miss something? I think there was a hack for this posted that actually worked. Any info appreciated. From dirk at haun-online.de Thu Feb 26 01:58:06 2004 From: dirk at haun-online.de (Dirk Haun) Date: Thu, 26 Feb 2004 07:58:06 +0100 Subject: [geeklog-users] 1.3.9rc1 Event - Repeating In-Reply-To: <000501c3fc34$ef43e910$0a32a8c0@theth> References: <000501c3fc34$ef43e910$0a32a8c0@theth> Message-ID: <20040226065806.10445@smtp.haun-online.de> Ed, >There appears to be an incorporated repeating event option in the new >1.3.9rc1 code for event.php No, there isn't. There's only the [C] "button" that you can use to create a copy of an existing event. bye, Dirk -- http://www.haun-online.de/ http://www.macosx-faq.de/ From tony at tonybibbs.com Thu Feb 26 08:46:37 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Thu, 26 Feb 2004 07:46:37 -0600 Subject: [geeklog-users] php block In-Reply-To: <200402252019.AA226885924@aplles.org> References: <200402252019.AA226885924@aplles.org> Message-ID: <403DF8BD.7070303@tonybibbs.com> Please spend a little time on http://www.geeklog.net...the downloads you seek are there and the docs cover the details of using PHP blocks. If after reading the docs you have questions then please ask at that time but please make an attempt to learn it before blasting this list. --Tony Aplles.Org Team Admin wrote: > hi all > > i need your help > how to make the Php block and i need the link for file manger and forum > i wait !!! > thanx for your help > Your's > NELz > > > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From chrisbesignano at sympatico.ca Thu Feb 26 10:06:53 2004 From: chrisbesignano at sympatico.ca (Chris Besignano) Date: Thu, 26 Feb 2004 10:06:53 -0500 Subject: [geeklog-users] An SQL error has occured Message-ID: <403E0B8D.40608@sympatico.ca> Hello, I am runnning geeklog 1.3.8-lsr4 on linux. I attempted to add a new topic, but left a space in the topic id. Now I get this SQL error and cannot access any part of the site. What can I do to recover from this? Below is a section of my error log. Thu Feb 26 09:51:31 2004 - 1064: You have an error in your SQL syntax near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = 'Chris'Journal') Thu Feb 26 09:51:46 2004 - 1064: You have an error in your SQL syntax near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = 'Chris'Journal') Thu Feb 26 09:51:52 2004 - 1064: You have an error in your SQL syntax near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = 'Chris'Journal') Thu Feb 26 09:51:56 2004 - 1064: You have an error in your SQL syntax near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = 'Chris'Journal') From tony at tonybibbs.com Thu Feb 26 13:32:15 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Thu, 26 Feb 2004 12:32:15 -0600 Subject: [geeklog-users] An SQL error has occured In-Reply-To: <403E0B8D.40608@sympatico.ca> References: <403E0B8D.40608@sympatico.ca> Message-ID: <403E3BAF.3090306@tonybibbs.com> the problem is the journal name has a single quote (') in it. Change "Chris' Journal" to "Chris Journal" and all would be well. --Tony Chris Besignano wrote: > Hello, > > I am runnning geeklog 1.3.8-lsr4 on linux. I attempted to add a new > topic, but left a space in the topic id. Now I get this SQL error and > cannot access any part of the site. What can I do to recover from this? > Below is a section of my error log. > > > Thu Feb 26 09:51:31 2004 - 1064: You have an error in your SQL syntax > near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count > FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = > 'Chris'Journal') > Thu Feb 26 09:51:46 2004 - 1064: You have an error in your SQL syntax > near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count > FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = > 'Chris'Journal') > Thu Feb 26 09:51:52 2004 - 1064: You have an error in your SQL syntax > near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count > FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = > 'Chris'Journal') > Thu Feb 26 09:51:56 2004 - 1064: You have an error in your SQL syntax > near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count > FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = > 'Chris'Journal') > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From faisal.malik at bankofamerica.com Thu Feb 26 17:22:03 2004 From: faisal.malik at bankofamerica.com (Malik, Faisal) Date: Thu, 26 Feb 2004 16:22:03 -0600 Subject: [geeklog-users] add problem Message-ID: <9510DF2FECA8D311816800508B6F478E0C82DCD4@chitmd19.nt.il.nbgfn.com> Friends, I am a beginer and have installed geeklog on my machine. Every thing seems to work ok expect that i am not allowed to add a new story/link/user from the application. There are not error it just seem to reload the page I assume this to be some configuration thing, please can someone guide me how to fix this problem. Thanks, Faisal. From drago-l-gl at goricanec.com Thu Feb 26 19:44:28 2004 From: drago-l-gl at goricanec.com (Drago Goricanec) Date: Thu, 26 Feb 2004 16:44:28 -0800 Subject: [geeklog-users] An SQL error has occured In-Reply-To: <403E3BAF.3090306@tonybibbs.com> References: <403E0B8D.40608@sympatico.ca> <403E3BAF.3090306@tonybibbs.com> Message-ID: <1077842668.403e92ece792b@webmail.lecielbleu.net> This is something geeklog should protect against. Either escape the data, or validate it prior to injecting it into SQL. If there are plans to do this in a future version that's fine, but I don't think it's reasonable for geeklog to expect users to provide it with valid data. The other thing I would suggest is that either we always use POST methods, or encrypt and sign the arguments generated in a GET method to avoid either replaying or injecting bad data to geeklog. Nevertheless, all data should be validated/sanitized prior to use. regards, Drago Quoting Tony Bibbs : > the problem is the journal name has a single quote (') in it. Change > "Chris' Journal" to "Chris Journal" and all would be well. > > --Tony > > Chris Besignano wrote: > > Hello, > > > > I am runnning geeklog 1.3.8-lsr4 on linux. I attempted to add a new > > topic, but left a space in the topic id. Now I get this SQL error and > > cannot access any part of the site. What can I do to recover from this? > > Below is a section of my error log. > > > > > > Thu Feb 26 09:51:31 2004 - 1064: You have an error in your SQL syntax > > near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count > > FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = > > 'Chris'Journal') > > Thu Feb 26 09:51:46 2004 - 1064: You have an error in your SQL syntax > > near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count > > FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = > > 'Chris'Journal') > > Thu Feb 26 09:51:52 2004 - 1064: You have an error in your SQL syntax > > near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count > > FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = > > 'Chris'Journal') > > Thu Feb 26 09:51:56 2004 - 1064: You have an error in your SQL syntax > > near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count > > FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = > > 'Chris'Journal') > > > > _______________________________________________ > > geeklog-users mailing list > > geeklog-users at lists.geeklog.net > > http://lists.geeklog.net/listinfo/geeklog-users > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From chris at linsoftlabs.com Thu Feb 26 22:14:30 2004 From: chris at linsoftlabs.com (Chris Besignano) Date: Thu, 26 Feb 2004 22:14:30 -0500 Subject: [geeklog-users] An SQL error has occured In-Reply-To: <1077842668.403e92ece792b@webmail.lecielbleu.net> References: <403E0B8D.40608@sympatico.ca> <403E3BAF.3090306@tonybibbs.com> <1077842668.403e92ece792b@webmail.lecielbleu.net> Message-ID: <403EB616.1040504@linsoftlabs.com> I realized why the error occured but was unable to resolve the issue. Geeklog simply locked up and kept returning the SQL error no matter which page I accessed. I agree that this is something that should be validated. It shouldn't be much work to make it happen, maybe I'll poke at it this weekend and add some validation code. Who do I send my changes to? Chris Besignano Drago Goricanec wrote: >This is something geeklog should protect against. Either escape the data, or >validate it prior to injecting it into SQL. If there are plans to do this in a >future version that's fine, but I don't think it's reasonable for geeklog to >expect users to provide it with valid data. > >The other thing I would suggest is that either we always use POST methods, or >encrypt and sign the arguments generated in a GET method to avoid either >replaying or injecting bad data to geeklog. Nevertheless, all data should be >validated/sanitized prior to use. > >regards, >Drago > >Quoting Tony Bibbs : > > > >>the problem is the journal name has a single quote (') in it. Change >>"Chris' Journal" to "Chris Journal" and all would be well. >> >>--Tony >> >>Chris Besignano wrote: >> >> >>>Hello, >>> >>>I am runnning geeklog 1.3.8-lsr4 on linux. I attempted to add a new >>>topic, but left a space in the topic id. Now I get this SQL error and >>>cannot access any part of the site. What can I do to recover from this? >>>Below is a section of my error log. >>> >>> >>>Thu Feb 26 09:51:31 2004 - 1064: You have an error in your SQL syntax >>>near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count >>>FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = >>>'Chris'Journal') >>>Thu Feb 26 09:51:46 2004 - 1064: You have an error in your SQL syntax >>>near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count >>>FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = >>>'Chris'Journal') >>>Thu Feb 26 09:51:52 2004 - 1064: You have an error in your SQL syntax >>>near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count >>>FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = >>>'Chris'Journal') >>>Thu Feb 26 09:51:56 2004 - 1064: You have an error in your SQL syntax >>>near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count >>>FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = >>>'Chris'Journal') >>> >>>_______________________________________________ >>>geeklog-users mailing list >>>geeklog-users at lists.geeklog.net >>>http://lists.geeklog.net/listinfo/geeklog-users >>> >>> >>_______________________________________________ >>geeklog-users mailing list >>geeklog-users at lists.geeklog.net >>http://lists.geeklog.net/listinfo/geeklog-users >> >> >> > > >_______________________________________________ >geeklog-users mailing list >geeklog-users at lists.geeklog.net >http://lists.geeklog.net/listinfo/geeklog-users > > > From vanslyck at ripplefx.net Thu Feb 26 17:36:38 2004 From: vanslyck at ripplefx.net (Carolyn Van Slyck) Date: Thu, 26 Feb 2004 16:36:38 -0600 Subject: [geeklog-users] add problem In-Reply-To: <9510DF2FECA8D311816800508B6F478E0C82DCD4@chitmd19.nt.il.nbgfn.com> References: <9510DF2FECA8D311816800508B6F478E0C82DCD4@chitmd19.nt.il.nbgfn.com> Message-ID: <403E74F6.1050707@ripplefx.net> Do you have global variables turned on? Malik, Faisal wrote: >Friends, > >I am a beginer and have installed geeklog on my machine. Every thing seems >to work ok expect that i am not allowed to add a new story/link/user from >the application. There are not error it just seem to reload the page > >I assume this to be some configuration thing, please can someone guide me >how to fix this problem. > >Thanks, >Faisal. >_______________________________________________ >geeklog-users mailing list >geeklog-users at lists.geeklog.net >http://lists.geeklog.net/listinfo/geeklog-users > > > From tony at tonybibbs.com Fri Feb 27 09:06:45 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Fri, 27 Feb 2004 08:06:45 -0600 Subject: [geeklog-users] An SQL error has occured In-Reply-To: <1077842668.403e92ece792b@webmail.lecielbleu.net> References: <403E0B8D.40608@sympatico.ca> <403E3BAF.3090306@tonybibbs.com> <1077842668.403e92ece792b@webmail.lecielbleu.net> Message-ID: <403F4EF5.4030802@tonybibbs.com> Drago, yes, I realize that. Please note that this *isn't* a geeklog problem, it is a problem with the journal plugin that I wrote. It's up to each individual plugin to handle their DB interaction. When I get around to it I'll make the fix, I just wanted to provide you the short term fix to your problem. --Tony Drago Goricanec wrote: > This is something geeklog should protect against. Either escape the data, or > validate it prior to injecting it into SQL. If there are plans to do this in a > future version that's fine, but I don't think it's reasonable for geeklog to > expect users to provide it with valid data. > > The other thing I would suggest is that either we always use POST methods, or > encrypt and sign the arguments generated in a GET method to avoid either > replaying or injecting bad data to geeklog. Nevertheless, all data should be > validated/sanitized prior to use. > > regards, > Drago > > Quoting Tony Bibbs : > > >>the problem is the journal name has a single quote (') in it. Change >>"Chris' Journal" to "Chris Journal" and all would be well. >> >>--Tony >> >>Chris Besignano wrote: >> >>>Hello, >>> >>>I am runnning geeklog 1.3.8-lsr4 on linux. I attempted to add a new >>>topic, but left a space in the topic id. Now I get this SQL error and >>>cannot access any part of the site. What can I do to recover from this? >>>Below is a section of my error log. >>> >>> >>>Thu Feb 26 09:51:31 2004 - 1064: You have an error in your SQL syntax >>>near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count >>>FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = >>>'Chris'Journal') >>>Thu Feb 26 09:51:46 2004 - 1064: You have an error in your SQL syntax >>>near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count >>>FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = >>>'Chris'Journal') >>>Thu Feb 26 09:51:52 2004 - 1064: You have an error in your SQL syntax >>>near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count >>>FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = >>>'Chris'Journal') >>>Thu Feb 26 09:51:56 2004 - 1064: You have an error in your SQL syntax >>>near 'Journal')' at line 1. SQL in question: SELECT count(*) AS count >>>FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) AND (tid = >>>'Chris'Journal') >>> >>>_______________________________________________ >>>geeklog-users mailing list >>>geeklog-users at lists.geeklog.net >>>http://lists.geeklog.net/listinfo/geeklog-users >> >>_______________________________________________ >>geeklog-users mailing list >>geeklog-users at lists.geeklog.net >>http://lists.geeklog.net/listinfo/geeklog-users >> > > > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From tony at tonybibbs.com Fri Feb 27 09:08:55 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Fri, 27 Feb 2004 08:08:55 -0600 Subject: [geeklog-users] add problem In-Reply-To: <403E74F6.1050707@ripplefx.net> References: <9510DF2FECA8D311816800508B6F478E0C82DCD4@chitmd19.nt.il.nbgfn.com> <403E74F6.1050707@ripplefx.net> Message-ID: <403F4F77.9090107@tonybibbs.com> Carolyn is right, you need register_globals turned ON in your php.ini Carolyn Van Slyck wrote: > Do you have global variables turned on? > > Malik, Faisal wrote: > >> Friends, >> >> I am a beginer and have installed geeklog on my machine. Every thing >> seems >> to work ok expect that i am not allowed to add a new story/link/user from >> the application. There are not error it just seem to reload the page >> >> I assume this to be some configuration thing, please can someone guide me >> how to fix this problem. >> >> Thanks, >> Faisal. >> _______________________________________________ >> geeklog-users mailing list >> geeklog-users at lists.geeklog.net >> http://lists.geeklog.net/listinfo/geeklog-users >> >> >> > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From tony at tonybibbs.com Fri Feb 27 09:07:53 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Fri, 27 Feb 2004 08:07:53 -0600 Subject: [geeklog-users] An SQL error has occured In-Reply-To: <403EB616.1040504@linsoftlabs.com> References: <403E0B8D.40608@sympatico.ca> <403E3BAF.3090306@tonybibbs.com> <1077842668.403e92ece792b@webmail.lecielbleu.net> <403EB616.1040504@linsoftlabs.com> Message-ID: <403F4F39.8060609@tonybibbs.com> Again, note that the *fix* will happen in the journal plugin's code. If you find it and fix it please send the fix to geeklog-devtalk at lists.geeklog.net. Thanks for looking into this... --Tony Chris Besignano wrote: > I realized why the error occured but was unable to resolve the issue. > Geeklog simply locked up and kept returning the SQL error no matter > which page I accessed. I agree that this is something that should be > validated. It shouldn't be much work to make it happen, maybe I'll poke > at it this weekend and add some validation code. Who do I send my > changes to? > > Chris Besignano > > Drago Goricanec wrote: > >> This is something geeklog should protect against. Either escape the >> data, or >> validate it prior to injecting it into SQL. If there are plans to do >> this in a >> future version that's fine, but I don't think it's reasonable for >> geeklog to >> expect users to provide it with valid data. >> >> The other thing I would suggest is that either we always use POST >> methods, or >> encrypt and sign the arguments generated in a GET method to avoid either >> replaying or injecting bad data to geeklog. Nevertheless, all data >> should be >> validated/sanitized prior to use. >> >> regards, >> Drago >> >> Quoting Tony Bibbs : >> >> >> >>> the problem is the journal name has a single quote (') in it. Change >>> "Chris' Journal" to "Chris Journal" and all would be well. >>> >>> --Tony >>> >>> Chris Besignano wrote: >>> >>> >>>> Hello, >>>> >>>> I am runnning geeklog 1.3.8-lsr4 on linux. I attempted to add a new >>>> topic, but left a space in the topic id. Now I get this SQL error >>>> and cannot access any part of the site. What can I do to recover >>>> from this? Below is a section of my error log. >>>> >>>> >>>> Thu Feb 26 09:51:31 2004 - 1064: You have an error in your SQL >>>> syntax near 'Journal')' at line 1. SQL in question: SELECT count(*) >>>> AS count FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) >>>> AND (tid = 'Chris'Journal') >>>> Thu Feb 26 09:51:46 2004 - 1064: You have an error in your SQL >>>> syntax near 'Journal')' at line 1. SQL in question: SELECT count(*) >>>> AS count FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) >>>> AND (tid = 'Chris'Journal') >>>> Thu Feb 26 09:51:52 2004 - 1064: You have an error in your SQL >>>> syntax near 'Journal')' at line 1. SQL in question: SELECT count(*) >>>> AS count FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) >>>> AND (tid = 'Chris'Journal') >>>> Thu Feb 26 09:51:56 2004 - 1064: You have an error in your SQL >>>> syntax near 'Journal')' at line 1. SQL in question: SELECT count(*) >>>> AS count FROM gl_stories WHERE (draft_flag = 0) AND (date <= NOW()) >>>> AND (tid = 'Chris'Journal') >>>> >>>> _______________________________________________ >>>> geeklog-users mailing list >>>> geeklog-users at lists.geeklog.net >>>> http://lists.geeklog.net/listinfo/geeklog-users >>>> >>> >>> _______________________________________________ >>> geeklog-users mailing list >>> geeklog-users at lists.geeklog.net >>> http://lists.geeklog.net/listinfo/geeklog-users >>> >>> >> >> >> >> _______________________________________________ >> geeklog-users mailing list >> geeklog-users at lists.geeklog.net >> http://lists.geeklog.net/listinfo/geeklog-users >> >> >> > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From chris at linsoftlabs.com Fri Feb 27 09:17:57 2004 From: chris at linsoftlabs.com (Chris Besignano) Date: Fri, 27 Feb 2004 09:17:57 -0500 Subject: [geeklog-users] An SQL error has occured In-Reply-To: <403F4F39.8060609@tonybibbs.com> References: <403E0B8D.40608@sympatico.ca> <403E3BAF.3090306@tonybibbs.com> <1077842668.403e92ece792b@webmail.lecielbleu.net> <403EB616.1040504@linsoftlabs.com> <403F4F39.8060609@tonybibbs.com> Message-ID: <403F5195.6090601@linsoftlabs.com> I am not using the Journal Plugin. Just staight-up geeklog. The topic I was creating just happened to include the word Journal. Tony Bibbs wrote: > Again, note that the *fix* will happen in the journal plugin's code. > If you find it and fix it please send the fix to > geeklog-devtalk at lists.geeklog.net. Thanks for looking into this... > > --Tony > > Chris Besignano wrote: > >> I realized why the error occured but was unable to resolve the issue. >> Geeklog simply locked up and kept returning the SQL error no matter >> which page I accessed. I agree that this is something that should be >> validated. It shouldn't be much work to make it happen, maybe I'll >> poke at it this weekend and add some validation code. Who do I send >> my changes to? >> >> Chris Besignano >> >> Drago Goricanec wrote: >> >>> This is something geeklog should protect against. Either escape the >>> data, or >>> validate it prior to injecting it into SQL. If there are plans to do >>> this in a >>> future version that's fine, but I don't think it's reasonable for >>> geeklog to >>> expect users to provide it with valid data. >>> >>> The other thing I would suggest is that either we always use POST >>> methods, or >>> encrypt and sign the arguments generated in a GET method to avoid >>> either >>> replaying or injecting bad data to geeklog. Nevertheless, all data >>> should be >>> validated/sanitized prior to use. >>> >>> regards, >>> Drago >>> >>> Quoting Tony Bibbs : >>> >>> >>> >>>> the problem is the journal name has a single quote (') in it. >>>> Change "Chris' Journal" to "Chris Journal" and all would be well. >>>> >>>> --Tony >>>> >>>> Chris Besignano wrote: >>>> >>>> >>>>> Hello, >>>>> >>>>> I am runnning geeklog 1.3.8-lsr4 on linux. I attempted to add a >>>>> new topic, but left a space in the topic id. Now I get this SQL >>>>> error and cannot access any part of the site. What can I do to >>>>> recover from this? Below is a section of my error log. >>>>> >>>>> >>>>> Thu Feb 26 09:51:31 2004 - 1064: You have an error in your SQL >>>>> syntax near 'Journal')' at line 1. SQL in question: SELECT >>>>> count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date >>>>> <= NOW()) AND (tid = 'Chris'Journal') >>>>> Thu Feb 26 09:51:46 2004 - 1064: You have an error in your SQL >>>>> syntax near 'Journal')' at line 1. SQL in question: SELECT >>>>> count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date >>>>> <= NOW()) AND (tid = 'Chris'Journal') >>>>> Thu Feb 26 09:51:52 2004 - 1064: You have an error in your SQL >>>>> syntax near 'Journal')' at line 1. SQL in question: SELECT >>>>> count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date >>>>> <= NOW()) AND (tid = 'Chris'Journal') >>>>> Thu Feb 26 09:51:56 2004 - 1064: You have an error in your SQL >>>>> syntax near 'Journal')' at line 1. SQL in question: SELECT >>>>> count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date >>>>> <= NOW()) AND (tid = 'Chris'Journal') >>>>> >>>>> _______________________________________________ >>>>> geeklog-users mailing list >>>>> geeklog-users at lists.geeklog.net >>>>> http://lists.geeklog.net/listinfo/geeklog-users >>>>> >>>> >>>> >>>> _______________________________________________ >>>> geeklog-users mailing list >>>> geeklog-users at lists.geeklog.net >>>> http://lists.geeklog.net/listinfo/geeklog-users >>>> >>>> >>> >>> >>> >>> >>> _______________________________________________ >>> geeklog-users mailing list >>> geeklog-users at lists.geeklog.net >>> http://lists.geeklog.net/listinfo/geeklog-users >>> >>> >>> >> >> _______________________________________________ >> geeklog-users mailing list >> geeklog-users at lists.geeklog.net >> http://lists.geeklog.net/listinfo/geeklog-users > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users > From tony at tonybibbs.com Fri Feb 27 09:48:40 2004 From: tony at tonybibbs.com (Tony Bibbs) Date: Fri, 27 Feb 2004 08:48:40 -0600 Subject: [geeklog-users] An SQL error has occured In-Reply-To: <403F5195.6090601@linsoftlabs.com> References: <403E0B8D.40608@sympatico.ca> <403E3BAF.3090306@tonybibbs.com> <1077842668.403e92ece792b@webmail.lecielbleu.net> <403EB616.1040504@linsoftlabs.com> <403F4F39.8060609@tonybibbs.com> <403F5195.6090601@linsoftlabs.com> Message-ID: <403F58C8.5070002@tonybibbs.com> Ah, good catch. I read through too quick. Anyway, the thing that annoys me most about Geeklog right now is the fact that topic ID's are text-based instead of numeric values and, unlike most other primary keys in Geeklog, these you can key in yourself. This is simply bad legacy code from Geeklog's days of infancy. Report this as a bug to http://project.geeklog.net/ and we'll need to finally make this a priority and get it working right. I'm cc'ing this to the geeklog-devel list to be sure it gets seen by the entire crew. Again, if you decide to look into this yourself, any help is appreciated. The fix would need to occur in admin/topic.php most likely. --Tony Chris Besignano wrote: > I am not using the Journal Plugin. Just staight-up geeklog. The topic I > was creating just happened to include the word Journal. > > Tony Bibbs wrote: > >> Again, note that the *fix* will happen in the journal plugin's code. >> If you find it and fix it please send the fix to >> geeklog-devtalk at lists.geeklog.net. Thanks for looking into this... >> >> --Tony >> >> Chris Besignano wrote: >> >>> I realized why the error occured but was unable to resolve the issue. >>> Geeklog simply locked up and kept returning the SQL error no matter >>> which page I accessed. I agree that this is something that should be >>> validated. It shouldn't be much work to make it happen, maybe I'll >>> poke at it this weekend and add some validation code. Who do I send >>> my changes to? >>> >>> Chris Besignano >>> >>> Drago Goricanec wrote: >>> >>>> This is something geeklog should protect against. Either escape the >>>> data, or >>>> validate it prior to injecting it into SQL. If there are plans to do >>>> this in a >>>> future version that's fine, but I don't think it's reasonable for >>>> geeklog to >>>> expect users to provide it with valid data. >>>> >>>> The other thing I would suggest is that either we always use POST >>>> methods, or >>>> encrypt and sign the arguments generated in a GET method to avoid >>>> either >>>> replaying or injecting bad data to geeklog. Nevertheless, all data >>>> should be >>>> validated/sanitized prior to use. >>>> >>>> regards, >>>> Drago >>>> >>>> Quoting Tony Bibbs : >>>> >>>> >>>> >>>>> the problem is the journal name has a single quote (') in it. >>>>> Change "Chris' Journal" to "Chris Journal" and all would be well. >>>>> >>>>> --Tony >>>>> >>>>> Chris Besignano wrote: >>>>> >>>>> >>>>>> Hello, >>>>>> >>>>>> I am runnning geeklog 1.3.8-lsr4 on linux. I attempted to add a >>>>>> new topic, but left a space in the topic id. Now I get this SQL >>>>>> error and cannot access any part of the site. What can I do to >>>>>> recover from this? Below is a section of my error log. >>>>>> >>>>>> >>>>>> Thu Feb 26 09:51:31 2004 - 1064: You have an error in your SQL >>>>>> syntax near 'Journal')' at line 1. SQL in question: SELECT >>>>>> count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date >>>>>> <= NOW()) AND (tid = 'Chris'Journal') >>>>>> Thu Feb 26 09:51:46 2004 - 1064: You have an error in your SQL >>>>>> syntax near 'Journal')' at line 1. SQL in question: SELECT >>>>>> count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date >>>>>> <= NOW()) AND (tid = 'Chris'Journal') >>>>>> Thu Feb 26 09:51:52 2004 - 1064: You have an error in your SQL >>>>>> syntax near 'Journal')' at line 1. SQL in question: SELECT >>>>>> count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date >>>>>> <= NOW()) AND (tid = 'Chris'Journal') >>>>>> Thu Feb 26 09:51:56 2004 - 1064: You have an error in your SQL >>>>>> syntax near 'Journal')' at line 1. SQL in question: SELECT >>>>>> count(*) AS count FROM gl_stories WHERE (draft_flag = 0) AND (date >>>>>> <= NOW()) AND (tid = 'Chris'Journal') >>>>>> >>>>>> _______________________________________________ >>>>>> geeklog-users mailing list >>>>>> geeklog-users at lists.geeklog.net >>>>>> http://lists.geeklog.net/listinfo/geeklog-users >>>>>> >>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> geeklog-users mailing list >>>>> geeklog-users at lists.geeklog.net >>>>> http://lists.geeklog.net/listinfo/geeklog-users >>>>> >>>>> >>>> >>>> >>>> >>>> >>>> >>>> _______________________________________________ >>>> geeklog-users mailing list >>>> geeklog-users at lists.geeklog.net >>>> http://lists.geeklog.net/listinfo/geeklog-users >>>> >>>> >>>> >>> >>> _______________________________________________ >>> geeklog-users mailing list >>> geeklog-users at lists.geeklog.net >>> http://lists.geeklog.net/listinfo/geeklog-users >> >> >> _______________________________________________ >> geeklog-users mailing list >> geeklog-users at lists.geeklog.net >> http://lists.geeklog.net/listinfo/geeklog-users >> > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users From faisal.malik at bankofamerica.com Fri Feb 27 11:11:32 2004 From: faisal.malik at bankofamerica.com (Malik, Faisal) Date: Fri, 27 Feb 2004 10:11:32 -0600 Subject: [geeklog-users] add problem Message-ID: <9510DF2FECA8D311816800508B6F478E0C82DCD5@chitmd19.nt.il.nbgfn.com> Thanks.... it works !!! Cheers, Faisal -----Original Message----- From: Tony Bibbs [mailto:tony at tonybibbs.com] Sent: Friday, February 27, 2004 8:09 AM To: geeklog-users at lists.geeklog.net Subject: Re: [geeklog-users] add problem Carolyn is right, you need register_globals turned ON in your php.ini Carolyn Van Slyck wrote: > Do you have global variables turned on? > > Malik, Faisal wrote: > >> Friends, >> >> I am a beginer and have installed geeklog on my machine. Every thing >> seems >> to work ok expect that i am not allowed to add a new story/link/user from >> the application. There are not error it just seem to reload the page >> >> I assume this to be some configuration thing, please can someone guide me >> how to fix this problem. >> >> Thanks, >> Faisal. >> _______________________________________________ >> geeklog-users mailing list >> geeklog-users at lists.geeklog.net >> http://lists.geeklog.net/listinfo/geeklog-users >> >> >> > > _______________________________________________ > geeklog-users mailing list > geeklog-users at lists.geeklog.net > http://lists.geeklog.net/listinfo/geeklog-users _______________________________________________ geeklog-users mailing list geeklog-users at lists.geeklog.net http://lists.geeklog.net/listinfo/geeklog-users From dirk at haun-online.de Fri Feb 27 14:16:59 2004 From: dirk at haun-online.de (Dirk Haun) Date: Fri, 27 Feb 2004 20:16:59 +0100 Subject: [geeklog-users] An SQL error has occured In-Reply-To: <403F58C8.5070002@tonybibbs.com> References: <403F58C8.5070002@tonybibbs.com> Message-ID: <20040227191659.4716@smtp.haun-online.de> Tony, >Report this as a bug to >http://project.geeklog.net/ and we'll need to finally make this a >priority and get it working right. The actual problem here (that you could have a single quote in a topic ID) has already been fixed in Geeklog 1.3.9rc1. To quote from the history file: - Single quotes are now silently stripped from topic IDs (bug #113). >the thing that >annoys me most about Geeklog right now is the fact that topic ID's are >text-based instead of numeric values and, unlike most other primary keys >in Geeklog, these you can key in yourself It may not be such a bad thing after all. At least it makes for more readable URLs. Compare http://www.geeklog.net/index.php?topic=GeekLog with http://www.geeklog.net/index.php?topic=42 Of course, a text-based ID has all sorts of problems like spelling, upper/lower case, and, of course, special characters ... bye, Dirk -- http://www.haun-online.de/ http://mypod.de/ From e at marinx.com Sun Feb 29 15:10:31 2004 From: e at marinx.com (ed) Date: Sun, 29 Feb 2004 12:10:31 -0800 Subject: [geeklog-users] RSS to share Stories Content Message-ID: <40424737.2020403@marinx.com> I was wondering if it would be possilbe to use GL RSS feeds to share actual content across multiple geeklog sites. I realize you can use syndication plugin (1.3.9rc1) to share multiple rss feeds. This is very nice and I appreciate it. But what if two or more "sister" GL sites want to share all their content under an "umbrella" GL site? Would it be possible to use the RSS to create Story Intro Text content, and then the READ MORE link could link out to the sister site. It seems very powerful to me, sort of a step beyond the traditional sindication. Incorporate storing the Intro Text items into the LOCAL DB store, make it searchable, now you have truly integrated content. Maybe in the Topics Admin section you have: Topic External Topic (RSS) | -- RSS address = URL -- Limit Story Intro Text = xx characters -- If no Intro Text import = y/n -- Store in local datastore = y/n -- Searchable = y/n (*note impact on performance and frequency of updates) -- Security context permissions, etc. -- Two-way Add New Stories = y/n -- RSS feed for sister sites to subscribe to = path/name.xml What do you think? Doable?