You can subscribe to this list here.
2001 |
Jan
|
Feb
(1) |
Mar
(265) |
Apr
(166) |
May
(25) |
Jun
(17) |
Jul
(20) |
Aug
(47) |
Sep
(6) |
Oct
(14) |
Nov
(66) |
Dec
(64) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(109) |
Feb
(64) |
Mar
(34) |
Apr
(23) |
May
(64) |
Jun
(9) |
Jul
(13) |
Aug
(6) |
Sep
(33) |
Oct
(272) |
Nov
(67) |
Dec
(75) |
2003 |
Jan
(264) |
Feb
(244) |
Mar
(171) |
Apr
(119) |
May
(54) |
Jun
(93) |
Jul
(51) |
Aug
(48) |
Sep
(14) |
Oct
(49) |
Nov
(47) |
Dec
(15) |
2004 |
Jan
(13) |
Feb
(27) |
Mar
(18) |
Apr
(44) |
May
(35) |
Jun
(24) |
Jul
(39) |
Aug
(142) |
Sep
(35) |
Oct
(34) |
Nov
(49) |
Dec
(24) |
2005 |
Jan
(60) |
Feb
(71) |
Mar
(19) |
Apr
(27) |
May
(68) |
Jun
(4) |
Jul
(30) |
Aug
(10) |
Sep
(23) |
Oct
(24) |
Nov
(13) |
Dec
(6) |
2006 |
Jan
(4) |
Feb
(46) |
Mar
(64) |
Apr
(18) |
May
(16) |
Jun
(37) |
Jul
(7) |
Aug
(19) |
Sep
(9) |
Oct
(8) |
Nov
(3) |
Dec
(23) |
2007 |
Jan
(25) |
Feb
(21) |
Mar
(32) |
Apr
(36) |
May
(12) |
Jun
(1) |
Jul
(7) |
Aug
(15) |
Sep
(13) |
Oct
(1) |
Nov
|
Dec
|
2008 |
Jan
(3) |
Feb
(5) |
Mar
(1) |
Apr
(2) |
May
|
Jun
(1) |
Jul
(2) |
Aug
(7) |
Sep
|
Oct
(5) |
Nov
(1) |
Dec
|
2009 |
Jan
(7) |
Feb
(1) |
Mar
|
Apr
|
May
(1) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
2011 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
|
Dec
|
From: Matthew M. <ma...@tu...> - 2003-11-11 13:48:56
|
Well, Wendall got me to test phpwebsite in Windows so I might as well learn postgres. I am trying to get it to run in my postgres installation. When I get it fixed I'll commit the changes. Also Don (rizzo) suggested these discussions go on in SF. I *suppose* we could start bug tracking and discussion on it but it may be too early. Anyone else have ideas on this? Matt On Mon, 2003-11-10 at 15:28, Brian Ghidinelli wrote: > Matthew McNaney writes: > > > Developers, if you get a chance, please download a copy of phpwebsite094 > > from CVS and try an install. > > I'm trying on Redhat 7.3 with Postgres 7.3. Firstly, the new install > screens/process is much easier to follow than before. That being said, it > seemed to go quite smoothly until installing modules where there were some > problems registering user module to the core. I'm pretty sure this is > caused by the autoincrement/sequence in Postgres not working properly (e.g., > I think it needs to be specified in the insert even though it automatically > increments). The error.log indicates: > > 12:21:32 11/10/03 Error [notice] [-1] INSERT INTO users (created, updated, > active, approved, username, password, deity) VALUES (1068495691, 1068495691, > 1, 1, 'Anonymous', NULL, 0) [nativecode=ERROR: ExecInsert: Fail to add null > value in not null attribute id > ] > 12:21:32 11/10/03 Error [notice] [-1] INSERT INTO users (created, updated, > active, approved, username, password, deity) VALUES (1068495692, 1068495692, > 1, 1, 'xxx', 'xxx', 1) [nativecode=ERROR: ExecInsert: Fail to add null > value in not null attribute id > ] > 12:21:34 11/10/03 Error [notice] [-1] INSERT INTO modules (title, > proper_name, version, active, register) VALUES ('users', 'Users', '2.0', 1, > 1) [nativecode=ERROR: ExecInsert: Fail to add null value in not null > attribute priority > ] > > > The next step generated more of the same errors trying to install the > control panel and layout manager: > > 12:24:41 11/10/03 Error [notice] [-1] INSERT INTO modules (title, > proper_name, version, active, register) VALUES ('layout', 'Layout', '2.0', > 1, 0) [nativecode=ERROR: ExecInsert: Fail to add null value in not null > attribute priority > ] > 12:24:43 11/10/03 Error [notice] [-1] INSERT INTO modules (title, > proper_name, version, active, register) VALUES ('controlpanel', 'Control > Panel', '2.0', 1, 1) [nativecode=ERROR: ExecInsert: Fail to add null value > in not null attribute priority > ] > > I believe the queries for PG need to have id specified in the list of > columns and then nextval() for the value or something to that effect. I > don't have much experience with auto-incrementing columns as I tend to use > UUID/GUIDs for my PKs. > > But, awesome work, I can already see it coming together. I'll be happy to > help hack away on this as much as possible. > > > Brian > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Conor J C. <cj...@fo...> - 2003-11-11 10:41:44
|
hi folks, Can i use the form generator to create a drop down menu where by the elements are links or shortcuts to other parts of the site. If not is there any support for any such thing in phpwebsite? best regards, Conor Conor J Curran Forwind Mobile http://www.forwind.ie |
From: Brian G. <br...@vf...> - 2003-11-10 22:05:28
|
> 12:21:34 11/10/03 Error [notice] [-1] INSERT INTO modules (title, > proper_name, version, active, register) VALUES ('users', 'Users', '2.0', > 1, 1) [nativecode=ERROR: ExecInsert: Fail to add null value in not null > attribute priority > ] I thought I would provide more information here on my previous post. From core/boost/install.sql: CREATE TABLE modules ( title CHAR(40) NOT NULL, proper_name CHAR(40) NOT NULL, priority SMALLINT NOT NULL, active SMALLINT NOT NULL, version CHAR(20) NOT NULL, register SMALLINT NOT NULL ); The query setup uses is like this: INSERT INTO modules (title, proper_name, version, active, register) VALUES ('layout', 'Layout', '2.0', 1, 0) The column "priority", which is not null, is not present but needs to be in order to make it work (or alternatively, don't declare it not null). I manually adjusted the core/boost/install.sql file to have a DEFAULT 0 on the priority line which solved that problem. The users module installed ok although the other SQL errors regarding ID still persist. I manually inserted two users by adding the ID and a corresponding value to the SQL queries. Then I went to the next step, here is the boost.log file: 13:54:12 11/10/03 [notice] Module - users : Copying directory /web/ggc-bmw-cca.org/www/mod/users/img/ to /web/ggc-bmw-cca.org/www/images/mod/users/ 13:58:04 11/10/03 [notice] Module - layout : No installation file found. 13:58:06 11/10/03 [notice] Module - controlpanel : No installation file found. 13:58:10 11/10/03 [notice] Module - controlpanel : Core::getConfigFile() - File not found. [file = config/users /controlpanel.php] 13:58:10 11/10/03 [notice] Module - controlpanel : Core::getConfigFile() - File not found. [file = config/layout /controlpanel.php] 13:58:10 11/10/03 [notice] Module - controlpanel : Core::getConfigFile() - File not found. [file = config/users /controlpanel.php] Those spaces in there between the directory names is how it reads in the logfile... not sure if that is just a display bug or there are really spaces in the path. As an FYI, table prefix naming isn't on right now, but I'm sure that's something to be added later (and not something I'm complaining about :) Brian |
From: Brian G. <br...@vf...> - 2003-11-10 21:32:12
|
I don't know how the phpws team wants to handle ~alpha 0.9.4 stuff, but I'm happy to file it anywhere. Brian Don Seiler writes: > I think we would best serve everyone if these were filed on the sf.net > bug tracker. Thoughts? > > Don. |
From: Don S. <do...@se...> - 2003-11-10 20:36:15
|
I think we would best serve everyone if these were filed on the sf.net bug tracker. Thoughts? Don. On Mon, Nov 10, 2003 at 12:28:03PM -0800, Brian Ghidinelli wrote: > Matthew McNaney writes:=20 >=20 > >Developers, if you get a chance, please download a copy of phpwebsite094 > >from CVS and try an install. >=20 > I'm trying on Redhat 7.3 with Postgres 7.3. Firstly, the new install=20 > screens/process is much easier to follow than before. That being said, i= t=20 > seemed to go quite smoothly until installing modules where there were som= e=20 > problems registering user module to the core. I'm pretty sure this is=20 > caused by the autoincrement/sequence in Postgres not working properly=20 > (e.g., I think it needs to be specified in the insert even though it=20 > automatically increments). The error.log indicates:=20 >=20 > 12:21:32 11/10/03 Error [notice] [-1] INSERT INTO users (created, updated= ,=20 > active, approved, username, password, deity) VALUES (1068495691,=20 > 1068495691, 1, 1, 'Anonymous', NULL, 0) [nativecode=3DERROR: ExecInsert:= =20 > Fail to add null value in not null attribute id > ] > 12:21:32 11/10/03 Error [notice] [-1] INSERT INTO users (created, updated= ,=20 > active, approved, username, password, deity) VALUES (1068495692,=20 > 1068495692, 1, 1, 'xxx', 'xxx', 1) [nativecode=3DERROR: ExecInsert: Fail= to=20 > add null value in not null attribute id > ] > 12:21:34 11/10/03 Error [notice] [-1] INSERT INTO modules (title,=20 > proper_name, version, active, register) VALUES ('users', 'Users', '2.0', = 1,=20 > 1) [nativecode=3DERROR: ExecInsert: Fail to add null value in not null= =20 > attribute priority > ]=20 >=20 >=20 > The next step generated more of the same errors trying to install the=20 > control panel and layout manager:=20 >=20 > 12:24:41 11/10/03 Error [notice] [-1] INSERT INTO modules (title,=20 > proper_name, version, active, register) VALUES ('layout', 'Layout', '2.0'= ,=20 > 1, 0) [nativecode=3DERROR: ExecInsert: Fail to add null value in not nul= l=20 > attribute priority > ] > 12:24:43 11/10/03 Error [notice] [-1] INSERT INTO modules (title,=20 > proper_name, version, active, register) VALUES ('controlpanel', 'Control= =20 > Panel', '2.0', 1, 1) [nativecode=3DERROR: ExecInsert: Fail to add null v= alue=20 > in not null attribute priority > ]=20 >=20 > I believe the queries for PG need to have id specified in the list of=20 > columns and then nextval() for the value or something to that effect. I= =20 > don't have much experience with auto-incrementing columns as I tend to us= e=20 > UUID/GUIDs for my PKs.=20 >=20 > But, awesome work, I can already see it coming together. I'll be happy t= o=20 > help hack away on this as much as possible.=20 >=20 >=20 > Brian=20 >=20 >=20 >=20 > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers >=20 |
From: Brian G. <br...@vf...> - 2003-11-10 20:29:13
|
Matthew McNaney writes: > Developers, if you get a chance, please download a copy of phpwebsite094 > from CVS and try an install. I'm trying on Redhat 7.3 with Postgres 7.3. Firstly, the new install screens/process is much easier to follow than before. That being said, it seemed to go quite smoothly until installing modules where there were some problems registering user module to the core. I'm pretty sure this is caused by the autoincrement/sequence in Postgres not working properly (e.g., I think it needs to be specified in the insert even though it automatically increments). The error.log indicates: 12:21:32 11/10/03 Error [notice] [-1] INSERT INTO users (created, updated, active, approved, username, password, deity) VALUES (1068495691, 1068495691, 1, 1, 'Anonymous', NULL, 0) [nativecode=ERROR: ExecInsert: Fail to add null value in not null attribute id ] 12:21:32 11/10/03 Error [notice] [-1] INSERT INTO users (created, updated, active, approved, username, password, deity) VALUES (1068495692, 1068495692, 1, 1, 'xxx', 'xxx', 1) [nativecode=ERROR: ExecInsert: Fail to add null value in not null attribute id ] 12:21:34 11/10/03 Error [notice] [-1] INSERT INTO modules (title, proper_name, version, active, register) VALUES ('users', 'Users', '2.0', 1, 1) [nativecode=ERROR: ExecInsert: Fail to add null value in not null attribute priority ] The next step generated more of the same errors trying to install the control panel and layout manager: 12:24:41 11/10/03 Error [notice] [-1] INSERT INTO modules (title, proper_name, version, active, register) VALUES ('layout', 'Layout', '2.0', 1, 0) [nativecode=ERROR: ExecInsert: Fail to add null value in not null attribute priority ] 12:24:43 11/10/03 Error [notice] [-1] INSERT INTO modules (title, proper_name, version, active, register) VALUES ('controlpanel', 'Control Panel', '2.0', 1, 1) [nativecode=ERROR: ExecInsert: Fail to add null value in not null attribute priority ] I believe the queries for PG need to have id specified in the list of columns and then nextval() for the value or something to that effect. I don't have much experience with auto-incrementing columns as I tend to use UUID/GUIDs for my PKs. But, awesome work, I can already see it coming together. I'll be happy to help hack away on this as much as possible. Brian |
From: Matthew M. <ma...@tu...> - 2003-11-10 18:46:19
|
I'll leave a copy here for a bit. http://phpwebsite.appstate.edu/downloads/php094.tar.gz Also here are the updated pear libs http://phpwebsite.appstate.edu/downloads/pear/pear-1.3b3+.tar.gz (thanks steven) Matt On Mon, 2003-11-10 at 12:12, Richard Sumilang wrote: > Wow! I'm very anxious to test out the new system but I have a drawback. > Is there a simply way to download all the files? I think there is with > a CVS program but I'm not familiar with using CVS and I don't want to > got file by file to download everything. Is there a zip file or > something located somewhere that I can download to test it out on Mac > OS X Panther with PostgreSQL and MySQL? > > Regards, > > Richard S. -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Richard S. <ri...@ri...> - 2003-11-10 17:12:12
|
Wow! I'm very anxious to test out the new system but I have a drawback. Is there a simply way to download all the files? I think there is with a CVS program but I'm not familiar with using CVS and I don't want to got file by file to download everything. Is there a zip file or something located somewhere that I can download to test it out on Mac OS X Panther with PostgreSQL and MySQL? Regards, Richard S. On Nov 10, 2003, at 7:14 AM, Matthew McNaney wrote: > Greetings, > > Although 0.9.4 is in very early stages of development, we want > compatibility to be tested EARLY. > > Developers, if you get a chance, please download a copy of > phpwebsite094 > from CVS and try an install. > > It has been tested under Linux and (GASP!) Windows with Apache and > MySQL. > > We are curious to know how the install will function under IIS and > other > databases besides MySQL. > > The install will create you config file and perform a quick install of > three modules. You should be able to log in and look at the control > panel. That is about the extent of it for now :) > > Please let us know how it goes. > > Thanks > Matt > > > -- > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Appalachian State University > Phone: 828-262-6493 > http://phpwebsite.appstate.edu > http://ess.appstate.edu > > > > ------------------------------------------------------- > This SF.Net email sponsored by: ApacheCon 2003, > 16-19 November in Las Vegas. Learn firsthand the latest > developments in Apache, PHP, Perl, XML, Java, MySQL, > WebDAV, and more! http://www.apachecon.com/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > |
From: Matthew M. <ma...@tu...> - 2003-11-10 15:26:42
|
I forgot to mention. phpwebsite 0.9.4 requires two new Pear packages. Log - http://pear.php.net/get/Log File - http://pear.php.net/get/File They will be included in an upcoming refresh of our pear.current.tar.gz file but for now you will need to untar them into your phpwebsite094 lib/pear directory. Although setup goes to greater steps to help you install, it may cause some people problems. If you are unexperienced installing phpwebsite, please hold your questions until a beta release. Thanks, Matt -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Matthew M. <ma...@tu...> - 2003-11-10 15:18:21
|
Greetings, Although 0.9.4 is in very early stages of development, we want compatibility to be tested EARLY. Developers, if you get a chance, please download a copy of phpwebsite094 from CVS and try an install. It has been tested under Linux and (GASP!) Windows with Apache and MySQL. We are curious to know how the install will function under IIS and other databases besides MySQL. The install will create you config file and perform a quick install of three modules. You should be able to log in and look at the control panel. That is about the extent of it for now :) Please let us know how it goes. Thanks Matt -- Matthew McNaney Internet Systems Architect Electronic Student Services Appalachian State University Phone: 828-262-6493 http://phpwebsite.appstate.edu http://ess.appstate.edu |
From: Wendall C. <we...@83...> - 2003-11-08 02:16:54
|
Summary: phpwsRSSFeeds 0.1.0 Released phpwsRSSFeeds is a module for the phpWebSite CMS 0.9.3-1 or higher. It gives the ability to display syndicated news feeds. The module is built on the PEAR XML_RSS Parser. Resource Description Framework (RDF) Site Summary (RSS) documents are XML documents, that provide a lightweight multipurpose extensible metadata description and syndication format. RSS files are often used to syndicate news or headlines from portal sites (e.g. Slashdot or freshmeat.net) or weblogs. Current features of phpwsRSSFeeds include the ability to show a list of headlines in a block or the full summaries on any page. phpwsListings supports all existing RSS schemas. phpwsRSSFeeds can be downloaded from the Latest File Releases section at https://sourceforge.net/projects/phpwsrssfeeds/ phpwsRSSFeeds will be distributed with phpWebSite 0.9.3-2 and greater. Enjoy! Wendall |
From: Brian G. <br...@vf...> - 2003-11-07 00:35:32
|
I would like to have a menu that, if the user is logged in and has the proper authentication, would have a Control Panel link. I would like the menu, if they are not logged in, to have a Log In link. Is this possible? I can see a way to add certain module defaults to the menus but control panel isn't available (and it's not exactly what I want to do). Basically I'd like to move the links in the left hand menu when I'm logged in as the admin into another menu. Brian |
From: Don S. <do...@se...> - 2003-11-06 21:29:08
|
phpwsBB is a native bulletin board module for the phpWebSite content manage system, version 0.9.3-1 or later. It features thread monitoring and administration, including marking threads sticky, locking threads, and forking messages off to new threads. phpwsBB 0.6.0 contains the notable addition of the forum level. Should make bulletin board management a little better. IMPORTANT: If you are using this with phpWebSite 0.9.3-1 or lower, you WILL need the supplemental core files found here: http://phpwsbb.sourceforge.net/phpws-0.9.3-1.supplemental.zip If you file bugs or support requests because you didn't do this, I'll cut you. http://phpwsbb.sourceforge.net |
From: Brian G. <br...@vf...> - 2003-11-06 17:36:50
|
David Macbanay writes: > Now I get a error from line 484 where it performs a "show index" query. I rewrote this too, but I don't know how well it will fare on multi-column indexes. It works fine for the default case of a single primary key though: function sqlGetIndex($tableName){ $tablename = $this->tbl_prefix . $tableName; $sql = "SELECT c2.relname, i.indisprimary, i.indisunique, pg_catalog.pg_get_indexdef(i.indexrelid) as column FROM pg_catalog.pg_class c, pg_catalog.pg_class c2, pg_catalog.pg_index i WHERE c.oid = (SELECT c.oid FROM pg_catalog.pg_class c WHERE c.relname ~ '^" . $tablename . "$') AND c.oid = i.indrelid AND i.indexrelid = c2.oid ORDER BY i.indisprimary DESC, i.indisunique DESC, c2.relname"; // echo $sql; if ($tableInfo = $this->getAllAssoc($sql)) { if (strlen($tableInfo[0]["column"]) > 0) { $start = strpos($tableInfo[0]["column"], "(") + 1; $end = strpos($tableInfo[0]["column"], "("); return substr($tableInfo[0]["column"], $start, $end-$start); } } return NULL; } |
From: David M. <dma...@so...> - 2003-11-06 17:28:39
|
On Wed, 2003-11-05 at 14:30, Richard Sumilang wrote: > You forgot the cache_idx. You must name an index in order to create it. > > - Richard Sumilang I finally figured out that the error was occurring from where I had been trying to replace line 769 in core/Database.php with a postgres compatible version. What finally seemed to work is replace the function with foreach ($columns as $item){ $sql = "CREATE INDEX idx on " $this->tbl_prefix . "$table_name ($item)"; if ($this->query($sql)) return TRUE; else return FALSE; } Now I get a error from line 484 where it performs a "show index" query. > > On Nov 4, 2003, at 6:01 PM, David Macbanay wrote: > > >>> biggest problem I've been having is in the "setup/install.sql" file. > >>> I > >>> do not know the equivalent syntax for lines such as > >>> "index(mod_title,id)". Someone has mentioned about removing these > >>> line > >> > >> I used: > >> > >> create index cache_idx on cache (mod_title, id); > >> > > Here is the error that I get when I use that statement > > > > DB Error: syntax error > > CREATE INDEX on cache (mod_title) [nativecode=ERROR: parser: parse > > error > > at or near "on" at character 14 ] > > > > David > > > > > > > > ------------------------------------------------------- > > This SF.net email is sponsored by: SF.net Giveback Program. > > Does SourceForge.net help you be more productive? Does it > > help you create better code? SHARE THE LOVE, and help us help > > YOU! Click Here: http://sourceforge.net/donate/ > > _______________________________________________ > > Phpwebsite-developers mailing list > > Php...@li... > > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > > > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers |
From: Steven L. <st...@tu...> - 2003-11-06 16:57:47
|
On Wed, 2003-11-05 at 17:41, Wendall Cada wrote: > Hi everybody, > > I discovered a small problem, and have a proposed resolution. > > When I implemented the new changes using runtime.php, I realized that > since the function calls are not coming from a class, I had naming > conflicts with other functions of the same name with other mods > runtime.php. Particularly other mods that I work on. > > I didn't want to come up with a new naming scheme, so I just created > class/runtime.php and create a class called MYMOD_runtime, then I can > call functions without naming conflicts from my runtime class. > > If this works, let me know, I'll do it for all the other conversions I > have to do. Wendall, +1 that sounds like a great solution to me. Lets go with it. -- Steven Levin Computer Systems Admin I Electronic Student Services Appalachian State University Phone: 828.262.6740 http://phpwebsite.appstate.edu |
From: Steven L. <st...@tu...> - 2003-11-06 16:56:05
|
On Wed, 2003-11-05 at 17:32, Wendall Cada wrote: > Stephen, > > This still works for me: > // get a list of the categories for this feed from FatCat > $tags["CATEGORY"]$_SESSION['OBJ_fatcat']->fatcatLinks($this->getId(), > "rssfeeds"); > > Should I change this to be consistent with the new changes? Wendall, You can still access the fatcat object through the session like that. There are still several modules which run ALWAYS (ie. layout, users, fatcat) which could not be avoided at this point. So no fatcat calls have to be updated. Mainly just calls to core classes. -- Steven Levin Computer Systems Admin I Electronic Student Services Appalachian State University Phone: 828.262.6740 http://phpwebsite.appstate.edu |
From: Steven L. <st...@tu...> - 2003-11-06 16:52:18
|
On Wed, 2003-11-05 at 17:13, Richard Sumilang wrote: > Does the new 09.3-2 have more generic queries to work across more > databases? Also, approximately when is it expected to be released ;-) Richard, No 0.9.3-2 will have the same database class as it did before. That is the one class I did not split off the core. There is so much work to be done with the database I feel that needs to be done in a different version change maybe -3 or -4. I was already asking for so much this version I did not want to ask for anything else. As for a release schedule I hope to have an RC out tomorrow so people can test over the weekend. We would like to have this new version running our sites ASAP. -- Steven Levin Computer Systems Admin I Electronic Student Services Appalachian State University Phone: 828.262.6740 http://phpwebsite.appstate.edu |
From: Wendall C. <we...@83...> - 2003-11-06 10:54:39
|
Hi everybody, I discovered a small problem, and have a proposed resolution. When I implemented the new changes using runtime.php, I realized that since the function calls are not coming from a class, I had naming conflicts with other functions of the same name with other mods runtime.php. Particularly other mods that I work on. I didn't want to come up with a new naming scheme, so I just created class/runtime.php and create a class called MYMOD_runtime, then I can call functions without naming conflicts from my runtime class. If this works, let me know, I'll do it for all the other conversions I have to do. Thanks, Wendall |
From: Wendall C. <we...@83...> - 2003-11-06 10:46:16
|
Stephen, This still works for me: // get a list of the categories for this feed from FatCat $tags["CATEGORY"]$_SESSION['OBJ_fatcat']->fatcatLinks($this->getId(), "rssfeeds"); Should I change this to be consistent with the new changes? Wendall On Wed, 2003-11-05 at 13:12, Steven Levin wrote: > Hello Everyone, > > There is another necessary change I have recently discovered which was > not covered in the docs that I sent out. If you are the using the > approval or fatcat module you will need add a require_once() in the conf > files for each class that is needed. > > Examples: > announce/conf/approval.php > <?php > > if($_SESSION["OBJ_user"]->allow_access("announce")){ > require_once(PHPWS_SOURCE_DIR.'mod/announce/class/Announcement.php'); > > if ($approvalChoice == "yes"){ > PHPWS_Announcement::approve($id); > } else if ($approvalChoice == "no") { > PHPWS_Announcement::refuse($id); > } else if ($approvalChoice == "view") { > $ann = new PHPWS_Announcement($id); > echo $ann->view("small", TRUE); > } > } > > ?> > > calendar/conf/fatcat.php > <?php > > require_once PHPWS_SOURCE_DIR . "mod/calendar/class/Calendar.php"; > > $className = "PHPWS_Calendar"; > $methodName = "viewFatCatEvent"; > > ?> > > And thats all. |
From: Richard S. <ri...@ri...> - 2003-11-05 22:14:41
|
vCard importing works for me! On Nov 5, 2003, at 12:39 PM, Don Seiler wrote: > No importing other than vCard (yet). Problem with importing is I'd > need > a defined format, or have a mapping interface for csv files to map your > csv fields to my contact fields. Would be sweet but a bit of work. > > Feel free to file an RFE. > > Note that phpwsContacts 0.6.2 is now the latest. 0.6.1 and 0.6.2 fix > bugs in the CSV exporting. > > Thanks, > Don. > > On Wed, Nov 05, 2003 at 12:33:20PM -0800, Richard Sumilang wrote: >> Wow that is awesome! I can create all my contacts in PWS and export >> them to vCard to import them into my Address Book in my powerbook. >> Does >> phpwsContacts support importing as well? >> >> - Richard S. >> >> >> On Oct 30, 2003, at 11:47 AM, Don Seiler wrote: >> >>> phpwsContacts is a module for the phpWebSite CMS 0.9.3-1 or higher. >>> It >>> provides extended user contact information and vCard exporting. >>> Suggested uses are for corporate addressbooks or alumni websites. >>> >>> This release provides the ability to export the entire visible list >>> as >>> a >>> comma-separated value (CSV) text file, and also the ability to import >>> vCard (2.1 or 3.0) files to create new contacts. >>> >>> Also numerous changes were made to get more efficient use of the >>> phpWebSite core, and to bring us in line with what is in the pipe for >>> future versions of phpWebSite. However you'll need to update some >>> core >>> files from: >>> >>> http://phpwscontacts.sourceforge.net/phpws-0.9.3-1.supplemental.zip >>> >>> This includes new Template.php and EZform.php for core, and >>> Display.php >>> for the calendar module. >>> >>> http://phpwscontacts.sourceforge.net >> >> |
From: Richard S. <ri...@ri...> - 2003-11-05 22:13:56
|
Does the new 09.3-2 have more generic queries to work across more databases? Also, approximately when is it expected to be released ;-) - Richard S. On Nov 5, 2003, at 1:12 PM, Steven Levin wrote: > Hello Everyone, > > There is another necessary change I have recently discovered which > was > not covered in the docs that I sent out. If you are the using the > approval or fatcat module you will need add a require_once() in the > conf > files for each class that is needed. > > Examples: > announce/conf/approval.php > <?php > > if($_SESSION["OBJ_user"]->allow_access("announce")){ > require_once(PHPWS_SOURCE_DIR.'mod/announce/class/Announcement.php'); > > if ($approvalChoice == "yes"){ > PHPWS_Announcement::approve($id); > } else if ($approvalChoice == "no") { > PHPWS_Announcement::refuse($id); > } else if ($approvalChoice == "view") { > $ann = new PHPWS_Announcement($id); > echo $ann->view("small", TRUE); > } > } > > ?> > > calendar/conf/fatcat.php > <?php > > require_once PHPWS_SOURCE_DIR . "mod/calendar/class/Calendar.php"; > > $className = "PHPWS_Calendar"; > $methodName = "viewFatCatEvent"; > > ?> > > And thats all. > -- > Steven Levin > Computer Systems Admin I > Electronic Student Services > Appalachian State University > Phone: 828.262.6740 > http://phpwebsite.appstate.edu > > > > ------------------------------------------------------- > This SF.net email is sponsored by: SF.net Giveback Program. > Does SourceForge.net help you be more productive? Does it > help you create better code? SHARE THE LOVE, and help us help > YOU! Click Here: http://sourceforge.net/donate/ > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > |
From: Richard S. <ri...@ri...> - 2003-11-05 21:30:25
|
Wow that is awesome! I can create all my contacts in PWS and export them to vCard to import them into my Address Book in my powerbook. Does phpwsContacts support importing as well? - Richard S. On Oct 30, 2003, at 11:47 AM, Don Seiler wrote: > phpwsContacts is a module for the phpWebSite CMS 0.9.3-1 or higher. It > provides extended user contact information and vCard exporting. > Suggested uses are for corporate addressbooks or alumni websites. > > This release provides the ability to export the entire visible list as > a > comma-separated value (CSV) text file, and also the ability to import > vCard (2.1 or 3.0) files to create new contacts. > > Also numerous changes were made to get more efficient use of the > phpWebSite core, and to bring us in line with what is in the pipe for > future versions of phpWebSite. However you'll need to update some core > files from: > > http://phpwscontacts.sourceforge.net/phpws-0.9.3-1.supplemental.zip > > This includes new Template.php and EZform.php for core, and Display.php > for the calendar module. > > http://phpwscontacts.sourceforge.net |
From: Don S. <do...@se...> - 2003-11-05 21:20:53
|
No importing other than vCard (yet). Problem with importing is I'd need a defined format, or have a mapping interface for csv files to map your csv fields to my contact fields. Would be sweet but a bit of work. Feel free to file an RFE. Note that phpwsContacts 0.6.2 is now the latest. 0.6.1 and 0.6.2 fix bugs in the CSV exporting. Thanks, Don. On Wed, Nov 05, 2003 at 12:33:20PM -0800, Richard Sumilang wrote: > Wow that is awesome! I can create all my contacts in PWS and export=20 > them to vCard to import them into my Address Book in my powerbook. Does= =20 > phpwsContacts support importing as well? >=20 > - Richard S. >=20 >=20 > On Oct 30, 2003, at 11:47 AM, Don Seiler wrote: >=20 > >phpwsContacts is a module for the phpWebSite CMS 0.9.3-1 or higher. It > >provides extended user contact information and vCard exporting. > >Suggested uses are for corporate addressbooks or alumni websites. > > > >This release provides the ability to export the entire visible list as= =20 > >a > >comma-separated value (CSV) text file, and also the ability to import > >vCard (2.1 or 3.0) files to create new contacts. > > > >Also numerous changes were made to get more efficient use of the > >phpWebSite core, and to bring us in line with what is in the pipe for > >future versions of phpWebSite. However you'll need to update some core > >files from: > > > >http://phpwscontacts.sourceforge.net/phpws-0.9.3-1.supplemental.zip > > > >This includes new Template.php and EZform.php for core, and Display.php > >for the calendar module. > > > >http://phpwscontacts.sourceforge.net >=20 >=20 |
From: Steven L. <st...@tu...> - 2003-11-05 21:17:19
|
Hello Everyone, There is another necessary change I have recently discovered which was not covered in the docs that I sent out. If you are the using the approval or fatcat module you will need add a require_once() in the conf files for each class that is needed. Examples: announce/conf/approval.php <?php if($_SESSION["OBJ_user"]->allow_access("announce")){ require_once(PHPWS_SOURCE_DIR.'mod/announce/class/Announcement.php'); if ($approvalChoice == "yes"){ PHPWS_Announcement::approve($id); } else if ($approvalChoice == "no") { PHPWS_Announcement::refuse($id); } else if ($approvalChoice == "view") { $ann = new PHPWS_Announcement($id); echo $ann->view("small", TRUE); } } ?> calendar/conf/fatcat.php <?php require_once PHPWS_SOURCE_DIR . "mod/calendar/class/Calendar.php"; $className = "PHPWS_Calendar"; $methodName = "viewFatCatEvent"; ?> And thats all. -- Steven Levin Computer Systems Admin I Electronic Student Services Appalachian State University Phone: 828.262.6740 http://phpwebsite.appstate.edu |