You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(7) |
Nov
(29) |
Dec
(101) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(90) |
Feb
(101) |
Mar
(173) |
Apr
(141) |
May
(38) |
Jun
(28) |
Jul
(14) |
Aug
(7) |
Sep
(3) |
Oct
(7) |
Nov
(15) |
Dec
(9) |
2002 |
Jan
(2) |
Feb
(5) |
Mar
(11) |
Apr
|
May
(4) |
Jun
(6) |
Jul
(7) |
Aug
(12) |
Sep
(8) |
Oct
(1) |
Nov
(4) |
Dec
(7) |
2003 |
Jan
(7) |
Feb
(1) |
Mar
(9) |
Apr
(2) |
May
(3) |
Jun
(4) |
Jul
(19) |
Aug
(4) |
Sep
(8) |
Oct
(30) |
Nov
(25) |
Dec
(22) |
2004 |
Jan
(6) |
Feb
(12) |
Mar
|
Apr
(2) |
May
|
Jun
(10) |
Jul
(18) |
Aug
(2) |
Sep
(4) |
Oct
(4) |
Nov
(4) |
Dec
(4) |
2005 |
Jan
(8) |
Feb
(4) |
Mar
(6) |
Apr
(5) |
May
|
Jun
(2) |
Jul
(1) |
Aug
|
Sep
(1) |
Oct
(4) |
Nov
(3) |
Dec
|
2006 |
Jan
(9) |
Feb
(6) |
Mar
(11) |
Apr
|
May
(2) |
Jun
|
Jul
(2) |
Aug
(10) |
Sep
(8) |
Oct
|
Nov
(1) |
Dec
(1) |
2007 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(7) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Eric D. <eri...@ja...> - 2001-03-19 19:01:29
|
Yeah. No problem. Though I notice that if lines 131-133 (the rm thing), and omit the -u flag from lines 145-147, I get .bak files installed in the /usr/local/slash directories. So, I'll have like a admin.pl.bak and an admin.pl. Kind of annoying, but not a huge deal............ Ask Slashdot Guy wrote: > On Fri, 16 Mar 2001 11:02:07 -0800, Eric Dannewitz said: > > > In my efforts to try to get Bender to update via cvs, I have noticed > > that there are some incompatibility problems. > > > > Lines 145-147 > > $(CP) -ruv plugins/* $(SLASH_PREFIX)/plugins/ > > # Now all other themes > > $(CP) -ruv themes/* $(SLASH_PREFIX)/themes > > > > FreeBSD 4.2's cp command has no provisions for the -u switch, and fails. > > > > I also was having problems with lines 131-133, > > if [ -f "$$f.bak" ]; then \ > > rm $$f; mv $$f.bak $$f; \ > > fi; \ > > Which would error out on a make install, removing these lines made > > things better, but then I encountered the cp -ruv thing....... > > > > And this is another reason I wish I had a FreeBSD box or even a Solaris box to > test these things. > > Eric, > > Thanks for the bug reports on the Makefile. I'll just have to bite the bullet > and make that section a little more intelligent. > > - Cliff > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development -- Back up my hard disk? I can't find the reverse switch! Eric Dannewitz - Adventurer, saxophonist, good-timer (crook? quite possibly), clarinetist, manic self-publicist, part-time flautist(flutist?), macintosher, and often thought to be completely out to lunch. http://www.jazz-sax.com |
From: Ask S. G. <cl...@sl...> - 2001-03-19 18:54:38
|
On Fri, 16 Mar 2001 11:02:07 -0800, Eric Dannewitz said: > In my efforts to try to get Bender to update via cvs, I have noticed > that there are some incompatibility problems. > > Lines 145-147 > $(CP) -ruv plugins/* $(SLASH_PREFIX)/plugins/ > # Now all other themes > $(CP) -ruv themes/* $(SLASH_PREFIX)/themes > > FreeBSD 4.2's cp command has no provisions for the -u switch, and fails. > > I also was having problems with lines 131-133, > if [ -f "$$f.bak" ]; then \ > rm $$f; mv $$f.bak $$f; \ > fi; \ > Which would error out on a make install, removing these lines made > things better, but then I encountered the cp -ruv thing....... > And this is another reason I wish I had a FreeBSD box or even a Solaris box to test these things. Eric, Thanks for the bug reports on the Makefile. I'll just have to bite the bullet and make that section a little more intelligent. - Cliff |
From: Nathan V. <na...@th...> - 2001-03-19 18:20:17
|
No, I've only got perl 5.6 on this machine, and the modules are being found, but not some of the methods. It's an inheritance problem of some sort I think-- Slash::DB is supposed to inherit those methods from Slash::DB::MySQL and Slash::DB::Utility... On Mon, 19 Mar 2001, Eric Dannewitz wrote: > Ooo, perl 5.6? > > Perhaps slash is looking in the old perl directories for the User.pm and other > files? > > Nathan Vonnahme wrote: > > > I upgraded from bender 1.1.4 to 1.1.6, and I think I did everything > > correctly, but I'm getting these errors on every request: > > > > [Fri Mar 16 20:44:50 2001] [error] Can't locate object method > > "sqlConnect" via package "Slash::DB" at > > /usr/lib/perl5/site_perl/5.6.0/i386-linux/Slash/Apache/User.pm line 75. > > > > [Fri Mar 16 20:44:50 2001] [error] Can't locate object method > > "createAccessLog" via package "Slash::DB" at > > /usr/lib/perl5/site_perl/5.6.0/i386-linux/Slash/Apache/Log.pm line 33. > > > > If I write a little command line script to use Slash::DB and those methods > > it seems to locate them just fine. > > > > Any clues? I'm stumped. > > > > -n > > > > -- > > Nathan Vonnahme na...@th... > > senior web developer third sector technologies > > http://enteuxis.org/nathan http://thethirdsector.com > > > > _______________________________________________ > > Slashcode-development mailing list > > Sla...@li... > > http://lists.sourceforge.net/lists/listinfo/slashcode-development > > -- > Back up my hard disk? I can't find the reverse switch! > > Eric Dannewitz - Adventurer, saxophonist, good-timer (crook? quite possibly), > clarinetist, manic self-publicist, part-time flautist(flutist?), macintosher, > and often thought to be completely out to lunch. http://www.jazz-sax.com > > > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development > |
From: Eric D. <eri...@ja...> - 2001-03-19 18:10:43
|
Ooo, perl 5.6? Perhaps slash is looking in the old perl directories for the User.pm and other files? Nathan Vonnahme wrote: > I upgraded from bender 1.1.4 to 1.1.6, and I think I did everything > correctly, but I'm getting these errors on every request: > > [Fri Mar 16 20:44:50 2001] [error] Can't locate object method > "sqlConnect" via package "Slash::DB" at > /usr/lib/perl5/site_perl/5.6.0/i386-linux/Slash/Apache/User.pm line 75. > > [Fri Mar 16 20:44:50 2001] [error] Can't locate object method > "createAccessLog" via package "Slash::DB" at > /usr/lib/perl5/site_perl/5.6.0/i386-linux/Slash/Apache/Log.pm line 33. > > If I write a little command line script to use Slash::DB and those methods > it seems to locate them just fine. > > Any clues? I'm stumped. > > -n > > -- > Nathan Vonnahme na...@th... > senior web developer third sector technologies > http://enteuxis.org/nathan http://thethirdsector.com > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development -- Back up my hard disk? I can't find the reverse switch! Eric Dannewitz - Adventurer, saxophonist, good-timer (crook? quite possibly), clarinetist, manic self-publicist, part-time flautist(flutist?), macintosher, and often thought to be completely out to lunch. http://www.jazz-sax.com |
From: Nathan V. <na...@th...> - 2001-03-19 18:05:54
|
I upgraded from bender 1.1.4 to 1.1.6, and I think I did everything correctly, but I'm getting these errors on every request: [Fri Mar 16 20:44:50 2001] [error] Can't locate object method "sqlConnect" via package "Slash::DB" at /usr/lib/perl5/site_perl/5.6.0/i386-linux/Slash/Apache/User.pm line 75. [Fri Mar 16 20:44:50 2001] [error] Can't locate object method "createAccessLog" via package "Slash::DB" at /usr/lib/perl5/site_perl/5.6.0/i386-linux/Slash/Apache/Log.pm line 33. If I write a little command line script to use Slash::DB and those methods it seems to locate them just fine. Any clues? I'm stumped. -n -- Nathan Vonnahme na...@th... senior web developer third sector technologies http://enteuxis.org/nathan http://thethirdsector.com |
From: Eric D. <eri...@ja...> - 2001-03-19 18:05:25
|
One thing that I noticed is missing after upgrading my site to Bender is that there is not a books_more template (or something equivalent). Does anyone have a template for that? |
From: Chris N. <pu...@po...> - 2001-03-19 14:06:28
|
At 11:09 -0500 2001.03.17, Blake Day wrote: >The log file is huge, has tons of lines that are normal. I could put it >online, but there are no errors. Still want it? You could just post the last day's worth of log, or something. >By the way, if yours crashes periodically also, maybe I should just set a >crontab to check to see if it's running and restart if not? Atif's suggestions looks reasonable; for Slashdot and some other sites, we do use or have used cron jobs of various kinds to make sure slashd is running. We've not had big problems with it in awhile, though, that I know of. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Chris N. <pu...@po...> - 2001-03-19 14:06:25
|
At 11:35 -0800 2001.03.18, Eric Dannewitz wrote: >ah........ok......... Note that there are some things in CVS which are not in the distribution. These things can be considered unsupported, unless otherwise specified. :) -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Chris N. <pu...@po...> - 2001-03-19 14:01:01
|
At 12:19 -0800 2001.03.17, CertIndex.com Webmaster wrote: >s/IT/open source. fact is, coders don't enjoy doing documentation and so >when you're working on an open source project with noone to 'answer to' docs >get pushed back indefinitely. That is not a fact. I was a writer before I was a programmer, I write a lot, and I enjoy writing documentation. I've written a lot of the documentation for Bender, and will write more. Further, it is not a fact that we have no one to answer to; we have our users, and we have bosses. In other words, your facts not only are not facts, but even as generalizations they do not apply to Slash. Note that some of the issues you raise in this forum, such as ambiguity about defaultdisplaystatus, might not get addressed unless there is a report filed on SourceForge. That creates a record that we need to take action on, so it is not easily forgotten about later. Thanks, -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Patrick G. <cap...@sl...> - 2001-03-19 13:58:50
|
Chris Nandor wrote: > > At 17:23 -0800 2001.03.18, CertIndex.com Webmaster wrote: > >in the db documentation under the stories table it has a column: > > > >aid - varchar(30) - author id, author that created story > > > >yet in the actual table, there is not this column, but rather uid. which is > >incorrect? i assume the former considering the author which approves the > >submission is no longer tracked. > > Which db documentation? Please give a specific file. I cannot find that > text anywhere in Bender. > > -- > Chris Nandor pu...@po... http://pudge.net/ > Open Source Development Network pu...@os... http://osdn.com/ > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development right now, there's two sets of db documents (and this will be cleaned up soon) there's two docs in particular -> slashtables_main.txt slashtables_bender.txt slasherd_main/bender.* my guess is that you're looking in the doc for main (or, you might need to do a cvs update -d -P to delete the old slashtables.txt, which was only one doc, and wasn't reflecting schema changes for bender). |
From: Chris N. <pu...@po...> - 2001-03-19 13:56:00
|
At 10:59 -0500 2001.03.17, shane wrote: >>2. in the vars table, the name field siteowner has a default value of >>nobody. the description is "What user this runs as". what user what runs as? >>slashd? should this be set as nobody or foo? > >ps auxw - that'll show you who it's running as. what user do you >have apache running under? httpd? nobody? apache? www? > >I'd either keep it that same user, or in your case, 'foo'. Actually, this is not what user Apache runs as, but what user slashd should run as. Apache is assumed to run as nobody. slashd is the program actually writing to files, so it is the process we care about for this. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Chris N. <pu...@po...> - 2001-03-19 13:51:03
|
At 16:29 -0500 2001.03.16, daniel j wharton wrote: >"modprobe: Can't locate module binfmt-0000" is showing up in my messages >file when I try to launch /etc/init.d/slash. The script dies right away >and doesn't launch slash. It doesn't print any errors out. > >This is while testing bender out. Does anyone know why it needs this >module? I know there are modules like binfmt-java and binfmt-aout, but I >don't know what binfmt-0000 is, and neither does anyone else I have >spoken to. I have been looking at people ask the same question about this >module causing the same error, but with other things such as ppp. There >are never any answers to this question. > >I have greped through most of the slashcode for modprobe, and binfmt, but >haven't found where it is calling it from. My guess is that it tries to >access something else that calls it. I do not know; I can only confirm that these things are not called directly from Slash. Try running, instead: /usr/local/slash/sbin/slashd VIRTUAL_USER_NAME See if that works. If so, then I imagine the problem is somewhere in the /etc/init.d/slash script, but I don't know what that problem would be. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Chris N. <pu...@po...> - 2001-03-19 13:46:05
|
At 21:54 -0800 2001.03.16, CertIndex.com Webmaster wrote: >often i manually change slash settings like sections and vars directly using >sql because i prefer it to the web. i've run into a problem in that by doing >so, slash doesn't recognize the changes i make. is there any way i can make >slash 'refresh' and reread the data from the dbs? sorta like how you can >edit httpd.conf then restart apache to get it to recognize the changes. Note that Slash makes no distinction between making vars table changes directly via your database client, or through Slash. Either way, you need to restart Apache. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Chris N. <pu...@po...> - 2001-03-19 13:46:03
|
At 17:23 -0800 2001.03.18, CertIndex.com Webmaster wrote: >in the db documentation under the stories table it has a column: > >aid - varchar(30) - author id, author that created story > >yet in the actual table, there is not this column, but rather uid. which is >incorrect? i assume the former considering the author which approves the >submission is no longer tracked. Which db documentation? Please give a specific file. I cannot find that text anywhere in Bender. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Chris N. <pu...@po...> - 2001-03-19 13:46:01
|
At 20:41 -0800 2001.03.17, CertIndex.com Webmaster wrote: >why is there a variable in the vars table for defaultdisplaystatus when >every account, including anonymous user, has a default displaystatus >preference setting already? (and if i remember correctly, every story and/or >section has one as well, which i also don't exactly understand.) Many questions like this can be found by grepping the source. cpu80:/usr/local/src/slash# grep -r defaultdisplaystatus * plugins/Admin/admin.pl: $storyref->{displaystatus} = $slashdb->getVar('defaultdisplaystatus', 'value'); plugins/Admin/admin.pl: $storyref->{displaystatus} = $slashdb->getVar('defaultdisplaystatus', 'value'); Then if you look more closely around those lines in admin.pl, you see they are in the editStory function. defaultdisplaystatus, as shown there, is used for the default displaystatus of new stories. There is no displaystatus for users, so I am not sure what you are referring to there. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: Chris N. <pu...@po...> - 2001-03-19 13:36:09
|
At 07:23 -0500 2001.03.19, shane wrote: >At 04:10 PM 3/17/2001 -0800, you wrote: >>a long time ago someone told me stories aren't ever archived in bender, but >>looking through vars table i see archive_delay. i was just wondering why >>that exists if stories are no longer archived. > > >it's just a left-over. i asked the same thing in IRC >a week ago. bender still "doesn't archive" archive_delay is still used for the newstories table, for now. -- Chris Nandor pu...@po... http://pudge.net/ Open Source Development Network pu...@os... http://osdn.com/ |
From: shane <sh...@lo...> - 2001-03-19 12:15:35
|
At 04:10 PM 3/17/2001 -0800, you wrote: >a long time ago someone told me stories aren't ever archived in bender, but >looking through vars table i see archive_delay. i was just wondering why >that exists if stories are no longer archived. it's just a left-over. i asked the same thing in IRC a week ago. bender still "doesn't archive" |
From: CertIndex.com W. <web...@ce...> - 2001-03-19 01:18:17
|
in the db documentation under the stories table it has a column: aid - varchar(30) - author id, author that created story yet in the actual table, there is not this column, but rather uid. which is incorrect? i assume the former considering the author which approves the submission is no longer tracked. regards |
From: Eric D. <eri...@ja...> - 2001-03-18 19:31:19
|
ah........ok......... Brian Aker wrote: > Eric Dannewitz wrote: > > > > I tried installing a Bender site with a Simple Story and I got this. > Simple Story is unfinished. It is just a sample theme I put > together to show off a concept. It hasn't been updated in > quite sometime. > > -Brian > -- > _______________________________________________________ > Brian Aker, br...@ta... > Slashdot Senior Developer > Seattle, Washington > http://tangent.org/~brian/ > http://slashdot.org/ > _______________________________________________________ > You can't grep a dead tree. > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development -- Back up my hard disk? I can't find the reverse switch! Eric Dannewitz - Adventurer, saxophonist, good-timer (crook? quite possibly), clarinetist, manic self-publicist, part-time flautist(flutist?), macintosher, and often thought to be completely out to lunch. http://www.jazz-sax.com |
From: Brian A. <br...@ta...> - 2001-03-18 19:28:55
|
Eric Dannewitz wrote: > > I tried installing a Bender site with a Simple Story and I got this. Simple Story is unfinished. It is just a sample theme I put together to show off a concept. It hasn't been updated in quite sometime. -Brian -- _______________________________________________________ Brian Aker, br...@ta... Slashdot Senior Developer Seattle, Washington http://tangent.org/~brian/ http://slashdot.org/ _______________________________________________________ You can't grep a dead tree. |
From: Eric D. <eri...@ja...> - 2001-03-18 19:17:53
|
I tried installing a Bender site with a Simple Story and I got this. Seems that the templates are wrong? What is the email address of the account? [ad...@ww...] er...@te... DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('featurebox','[% USE Slash %]\n<TABLE BGCOLOR=\"#000000\" BORDER=0 WIDTH=\"100%\" CELLPADDING=0 CELLSPACING=1>\n <TR>\n <TD>\n\n <TABLE WIDTH=\"100%\" CELLSPACING=1 BORDER=0 CELLPADDING=2 BGCOLOR=\"#000000\">\n <TR>\n <TD BGCOLOR=\"#000000\">\n <FONT COLOR=\"#ffffff\"><B> [% story.title %] </B></FONT>\n </TD>\n </TR>\n </TABLE>\n\n <TABLE WIDTH=\"100%\" CELLSPACING=1 BORDER=0 CELLPADDING=7 BGCOLOR=\"#fefefe\">\n<TR>\n <TD VALIGN=\"TOP\">\n <P><I>by [% author %]</I></P>\n <FONT SIZE=\"-1\"> [% story.introtext %] </font>\n <P><I><A HREF=\"/article.pl?sid=[% story.sid %]\">more</A></I></P>\n </TD>\n <TD BGCOLOR=\"#e6e6e6\"> \n <IMG ALIGN=\"RIGHT\" SRC=\"[% story.picture %]\"> \n </TD>\n </TR>\n </TABLE>\n\n </TD>\n </TR>\n</TABLE>\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('footer',' </TD>\n <TD>\n <IMG SRC=\"shim.gif\" WIDTH=\"1\" HEIGHT=\"797\" BORDER=\"0\">\n </TD>\n </TR>\n </TABLE>\n\n</BODY>\n\n</HTML>\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('header','<BODY BGCOLOR=\"#ffffff\">\n<TABLE BORDER=\"0\" CELLPADDING=\"0\" CELLSPACING=\"0\" WIDTH=\"800\">\n <TR>\n <TD colspan=\"2\">\n <IMG NAME=\"frontpage_r1_c1\" SRC=\"frontpage_r1_c1.gif\" WIDTH=\"800\" HEIGHT=\"159\" BORDER=\"0\">\n </TD>\n</TR>\n\n <TR VALIGN=TOP>\n <TD rowspan=\"2\" VALIGN=\"TOP\" ALIGN=\"LEFT\" BACKGROUND=\"frontpage_r4_c1.gif\">\n <IMG SRC=\"shim.gif\" WIDTH=\"108\" BORDER=\"0\">\n </TD>\n <TD VALIGN=\"TOP\">\n <IMG name=\"frontpage_r4_c3\" SRC=\"frontpage_r4_c3.gif\" WIDTH=\"692\" HEIGHT=\"47\" BORDER=\"0\">\n </TD>\n </TR>\n\n <TR>\n <TD ALIGN=LEFT VALIGN=TOP>\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('html-header','<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 3.2 Final//EN\">\r\n<HTML><HEAD><TITLE>[% title %]</TITLE>\r\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('storybox','[% USE Slash %]\n<TABLE WIDTH=\"100%\">\n <TR VALIGN=\"TOP\">\n <TD> <HR noshade width=\"100%\" size=\"1\" color=\"#FFFFFF\"> </TD>\n </TR>\n <TR VALIGN=\"TOP\">\n\n <TD ALIGN=LEFT> {[% story.title %]} </TD>\n <TD ALIGN=RIGHT> [% Slash.timeCalc(story.time) %] </TD>\n </TR>\n <TR VALIGN=\"TOP\">\n <TD> <I>by [% author %]</I> </TD>\n </TR>\n <TR VALIGN=\"TOP\">\n <TD> \n [% story.introtext %]\n [% IF story.text %]\n <P><I><A HREF=\"/article.pl?sid=[% story.sid %]\">more</A></I></P>\n [% END %]\n </TD>\n </TR>\n</TABLE>\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('storypage','[% USE Slash %]\n<TABLE WIDTH=\"100%\">\n <TR VALIGN=\"TOP\">\n <TD ALIGN=LEFT> [% story.title %] </TD>\n <TD ALIGN=RIGHT> [% Slash.timeCalc(story.time) %] </TD>\n </TR>\n <TR VALIGN=\"TOP\">\n <TD> <I>by [% author %]</I> </TD>\n </TR>\n <TR VALIGN=\"TOP\">\n <TD> \n <IMG SRC=\"[% story.picture %]\" ALIGN=\"RIGHT\"> \n [% story.introtext %] \n [% story.text %] \n </TD>\n </TR>\n</TABLE>\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('infobox','[% USE Slash %]\n<TABLE BGCOLOR=\"#000000\" BORDER=0 WIDTH=\"100%\" CELLPADDING=0 CELLSPACING=1>\n <TR>\n <TD>\n\n <TABLE WIDTH=\"100%\" CELLSPACING=1 BORDER=0 CELLPADDING=2 BGCOLOR=\"#000000\">\n <TR>\n <TD BGCOLOR=\"#000000\">\n <FONT COLOR=\"#ffffff\"><B> [% boxtitle %] </B></FONT>\n </TD>\n </TR>\n </TABLE>\n\n <TABLE WIDTH=\"100%\" CELLSPACING=1 BORDER=0 CELLPADDING=7 BGCOLOR=\"#fefefe\">\n<TR>\n <TD VALIGN=\"TOP\">\n [% boxinfo %]\n </TD>\n </TR>\n </TABLE>\n\n </TD>\n </TR>\n</TABLE>\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('storycontainer','[% USE Slash %]\n<TABLE>\n <TR>\n <TD>\n [% FOREACH article = stories %]\n [% story = Slash.db.getStory(article.0) %]\n [% writer = Slash.db.getAuthor(story.uid, \'nickname\') %]\n [% INCLUDE storybox story=story author=writer %]\n [% END %]\n </TD>\n <TD VALIGN=\"TOP\">\n [% INCLUDE infobox %]\n </TD>\n </TR>\n</TABLE>\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO templates VALUES ('about','This is where you would put information about your site.\n',100,NULL,NULL,'misc');: DBD::mysql::db do failed: Column count doesn't match value count at row 1 at bin/install-slashsite line 260. Failed on :INSERT INTO users_prefs VALUES (1,1,0,'EST',0,0,'');: Unless any errors reported themself during the install you should now have a slashsite. You will either need to edit your httpd.conf file unless you are have Slash handle it. The correct syntax can be found in: |
From: CertIndex.com W. <web...@ce...> - 2001-03-18 04:37:54
|
greetings, why is there a variable in the vars table for defaultdisplaystatus when every account, including anonymous user, has a default displaystatus preference setting already? (and if i remember correctly, every story and/or section has one as well, which i also don't exactly understand.) thanks a lot |
From: CertIndex.com W. <web...@ce...> - 2001-03-18 00:05:12
|
a long time ago someone told me stories aren't ever archived in bender, but looking through vars table i see archive_delay. i was just wondering why that exists if stories are no longer archived. |
From: Blake D. <bl...@ar...> - 2001-03-18 00:04:29
|
What is "defaultsection" in the vars table? Is the "home page" of slashcode considered to be a section (which would be the defaultsection, since none woul dhave been specified)? Thanks Blake Day |
From: CertIndex.com W. <web...@ce...> - 2001-03-17 20:14:48
|
----- Original Message ----- From: "shane" <sh...@lo...> To: <sla...@li...> Sent: Saturday, 17 March, 2001 07:59 Subject: Re: [Slashcode-development] questions regarding slashd and the user it runs under. > At 09:48 PM 3/16/2001 -0800, you wrote: > >1. we have an account for our site, foo. should we make slashd run as 'foo' > >then? or as nobody, the uid of the webserver. > >if we should run it as foo, should the files all be owned by foo or nobody? > > I think you're asking about personal preference, with the majority > of what you're asking being answered by "who is maintaining your site for you"? > Will it be shared via SMB to maintain it? Or will you be su'ing/logging in > as that account to do maintenance via a shell, or will no one ever be > loggin in via a shell for the account? we'll be logging into the shell foo to do maintenance. however, since we have root we can also do maintenance on it if we leave it as nobody. > > Personally, when I install a site, I use command lines like the following: > > /usr/local/slash/bin/install-slashsite -u mydotcom -H www.mydotcom.com -o > shane -g nobody -R -a webmaster -e web...@my... -p password -L y > > >2. in the vars table, the name field siteowner has a default value of > >nobody. the description is "What user this runs as". what user what runs as? > >slashd? should this be set as nobody or foo? > > ps auxw - that'll show you who it's running as. what user do you > have apache running under? httpd? nobody? apache? www? as i said up above, apache runs under nobody. ok so that should be set to the user slashd runs as, got it. > > I'd either keep it that same user, or in your case, 'foo'. but you see no problem running slashd under our account name, foo? (i've heard trying to run slashd under a non-default user is bad) > > > >3. in the same vars table, there is the entry siteadmin admin The > >admin for the site. what relevance does this var have? 'the admin for the > >site' is, > > I think this is primarily used as he return-to email address when email is > sent as coming from the 'site' itself. hmm, can anyone else comment on this with more confidence? i don't want to mess stuff up. > > > like most other slash documentation, ambiguous. > > You get the code for free. Live with it. > > > it should explain > >what the thing is used for and if there is a static set of acceptable > >values, those and what each of them means. > > Maybe, but you're using unfinished, Beta code. that's irrelevant. slash 1.x has been out for over a year and it's documentation is no better. See above. > So unless you're filing a bug report, we are doing this, quite a few of them. a number of them with fixes. writing code/docs for them, offered to do this as well. > submitting a diff, > or submitting a suggestion, done this dozens of times. you're really not helping them > finish the thing. And as with most IT projects, most of the documentation > gets done at the end, if you're even allowed to do it properly. s/IT/open source. fact is, coders don't enjoy doing documentation and so when you're working on an open source project with noone to 'answer to' docs get pushed back indefinitely. > Ymmv, but this is just my $.02. > > > Shane > > > > _______________________________________________ > Slashcode-development mailing list > Sla...@li... > http://lists.sourceforge.net/lists/listinfo/slashcode-development > |