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...> - 2002-11-07 12:49:02
|
This bug was posted to sourceforge. ------------------------------------------------------- When using sqlInsert to insert a row into the database if the insert fails then the sequence table still gets incremented. ------------------------------------------------------- I didn't know the best way to fix it so I sent a question to the php news board. ------------------------------------------------------- Hello, I am using nextId in an insert function. I run $id = $db->nextId; $db->query("insert into foo (id_column_name, something) values ($id, $somethingValue)"); Works great. But if there is an error, say there isn't a 'something' column, my sequence table still gets incremented. I don't recall if MySQL auto_increment had the same behavior. My questions are: Should I even worry about it? If I should, is there a $db->prevId() or do I have to decrement it myself on the query error? Thanks, Matt ------------------------------------------------------------------ I was wondering if anyone else had any ideas. If we create our own prevId function, we might have to change the way some of the functions access query. When any of the sql functions call query, it will, by default, exit if there is an error. Now at one point I thought this could be a problem, so there is a tag that lets the function continue and just return a FALSE instead. To utilize a prevId function, the query would always need to told not to exit on an error. It would instead return FALSE to sqlInsert which would then, in turn, decrement the sequence. Why I am going over all this if it is just a one parameter change? Well, maybe the query function should NEVER exit. Instead, maybe the sql functions should handle the errors personally. We could, if we wanted, have the sql function report simple error messages to standard users (Contact your administrator) and detailed messages to admins (Here is the sql error and here is all the data I received and here is what module was running). Please talk amongst yourselves. I will let you know if I hear anything from the news list. Matt Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: policejobs.net <mi...@po...> - 2002-11-02 17:38:11
|
PoliceJobs.Net Job Vacancy Announcement. |
From: Matthew M. <ma...@tu...> - 2002-11-01 18:11:33
|
> > Since banners functionnalities had been so much improved in 0.8.2.... > with the target and so on... > > Just wondering if banners will still be supported in the final Fallout > release? Would be nice if two different formats would be supported (ex.: > vertical and horizontal). This would probably request a special table > for the vertical ones and another special table for the horizontal ones. We aren't writing a module for it, but I imagine it would be an easy hack. If someone really wanted to put some time into it, the module should allow uploading images with links, which images should display the most often, etc. All you would need to do for the template is create a theme variable just for banners and you'd be golden. Matt Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Projet/Objet <li...@pr...> - 2002-11-01 16:34:28
|
Since banners functionnalities had been so much improved in 0.8.2.... with the target and so on... Just wondering if banners will still be supported in the final Fallout release? Would be nice if two different formats would be supported (ex.: vertical and horizontal). This would probably request a special table for the vertical ones and another special table for the horizontal ones. Keep up the great work !!!!! Yves Malouin |
From: Don S. <do...@se...> - 2002-11-01 15:46:12
|
Can we almost taste the final? Don. On Fri, 1 Nov 2002, Matthew McNaney wrote: > .. this week and counting. > > Keep em coming! > > Have a good weekend everyone. > > Matt > > > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Email: ma...@tu... > URL: http://phpwebsite.appstate.edu > Phone: 828-262-6493 > ICQ: 141057403 > > > > > ------------------------------------------------------- > This sf.net email is sponsored by: See the NEW Palm > Tungsten T handheld. Power & Color in a compact size! > http://ads.sourceforge.net/cgi-bin/redirect.pl?palm0001en > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > > |
From: Matthew M. <ma...@tu...> - 2002-11-01 15:41:21
|
.. this week and counting. Keep em coming! Have a good weekend everyone. Matt Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Steven L. <st...@tu...> - 2002-10-31 17:03:12
|
Hello Team, Just a reminder to everyone. We all have bugs located a Source Forge that need to be looked at. Ok thats it for now. -- Steven Levin Electronic Student Services Appalachian State University Phone: 828.262.2431 PhpWebsite Development Team URL: http://phpwebsite.appstate.edu Email: st...@NO... |
From: Matthew M. <ma...@tu...> - 2002-10-31 15:35:04
|
w00t! thanks for the link. Matt > All, > > Sorry. Here is the link. > > > http://public.yahoo.com/~radwin/talks/yahoo-phpcon2002.htm > > Scott Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Scott R. <sc...@sc...> - 2002-10-31 15:20:18
|
All, Sorry. Here is the link. http://public.yahoo.com/~radwin/talks/yahoo-phpcon2002.htm Scott |
From: Scott R. <sc...@sc...> - 2002-10-31 15:15:33
|
I thought the people on this might appreciate the slide show. I apologize for the spam. Scott Rogers |
From: SafeFamilyNet.com <sf...@sa...> - 2002-10-31 15:14:20
|
Where can I find a list of mod's/themes to install/download for phpWebSite 0.8.3? I am new to phpWebSite and really enjoy it so far. Where can I find a list of Mod's and Themes for phpWebSite 0.8.3? Is it true that plug-ins are for earlier versions than 0.8.x? Thanks. Doug Renz |
From: Matthew M. <ma...@tu...> - 2002-10-31 15:09:54
|
> +1 for me (if it counts) It does :) Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: <cog...@tu...> - 2002-10-31 14:43:01
|
> To vote: > > A Getting Started Module. > > It would install by default. It would be the first module someone > installing for the first time would see. It would contain a button to > get some help and another to uninstall itself. > > The help would consist of a persistant box in the top spot telling the > user how to get started (create a user, boost pagemaster, boost > announcements). This would put a friendly face on the install. I'm not exactly sure if I've got rights to voting, but this is the first idea I'v run across that I think I have enough knowledge to comment on. Coming from a new user's view point, I think this would be a great transistion for someone who's new to PHPWS and anything other than viewing a website. Though there is a user manual in the making, a module such as this could make setup faster. +1 for me (if it counts) Shalonda |
From: Adam M. <ad...@tu...> - 2002-10-30 16:39:54
|
I like this idea but I'm thinking we should tie up some loose ends in other modules before you dive into this. That's just me though...and you know me :) Adam > Many of you may know that currently you need to create a table to store > your users sub permissions. > > I am thinking it might be a good idea to recode this. > > Users currently has a special table for module rights. > Look under Setting Module Settings (ick, bad title now that I look at > it). > > http://res1.stddev.appstate.edu/horde/chora/co.php/phpws_core/mod/users/docs/devdoc.txt?r=1.3 > > Anyway, I think I could use this table to store the module rights. You > would still need to create your module rights file to tell users what > rights you will hook into. When a user's permissions are modified, Users > would grab this file and show the sub permissions like it always does. > Any permission would be stored in that table and would be loaded with > the user. > > This would eliminate module's having to keep track of users and it would > prevent the module table from having to store this data. > > The downside? I would have to code it meaning some down time. I am not > sure how long it would take to convert. > > Let me know if you think this is the direction we should go. > > Matt > > > Matthew McNaney > Internet Systems Architect > Electronic Student Services > Email: ma...@tu... > URL: http://phpwebsite.appstate.edu > Phone: 828-262-6493 > ICQ: 141057403 > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Electronic Student Services http://phpwebsite.appstate.edu Founder - ASU Linux Users Group http://lug.appstate.edu |
From: Matthew M. <ma...@tu...> - 2002-10-30 14:28:44
|
Many of you may know that currently you need to create a table to store your users sub permissions. I am thinking it might be a good idea to recode this. Users currently has a special table for module rights. Look under Setting Module Settings (ick, bad title now that I look at it). http://res1.stddev.appstate.edu/horde/chora/co.php/phpws_core/mod/users/docs/devdoc.txt?r=1.3 Anyway, I think I could use this table to store the module rights. You would still need to create your module rights file to tell users what rights you will hook into. When a user's permissions are modified, Users would grab this file and show the sub permissions like it always does. Any permission would be stored in that table and would be loaded with the user. This would eliminate module's having to keep track of users and it would prevent the module table from having to store this data. The downside? I would have to code it meaning some down time. I am not sure how long it would take to convert. Let me know if you think this is the direction we should go. Matt Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Matthew M. <ma...@tu...> - 2002-10-30 12:29:07
|
To vote: A Getting Started Module. It would install by default. It would be the first module someone installing for the first time would see. It would contain a button to get some help and another to uninstall itself. The help would consist of a persistant box in the top spot telling the user how to get started (create a user, boost pagemaster, boost announcements). This would put a friendly face on the install. Alternative: Setup asks you which modules you want to install. Descriptions could be included on the ones we know (mod_info.php file?). They just check the ones to be installed. One or both? Ideas? Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Matthew M. <ma...@tu...> - 2002-10-30 12:24:13
|
This is equivalent to a syntax error. Open the file and look for a missing semicolon, parenthesis, etc. Matt > Parse error: parse error in /home/sites/site19/web/mod/faq/faq_setup.php > on line 87 > > > I'm trying to setup the faq mod on phpWebSite and get this parse error. > > I'm new to phpWebSite and learning it. > > what would cause this? > > Thanks. > > Doug Renz > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: SafeFamilyNet.com <sf...@sa...> - 2002-10-30 01:47:01
|
Parse error: parse error in /home/sites/site19/web/mod/faq/faq_setup.php on line 87 I'm trying to setup the faq mod on phpWebSite and get this parse error. I'm new to phpWebSite and learning it. what would cause this? Thanks. Doug Renz |
From: Antonio <ma...@an...> - 2002-10-29 23:47:25
|
Hello all - I want to 1st say that phpwebsite rocks and I appreciate all the time and energy into this app you guys have put in. And I have learned so much by being on this list! I'm in the middle of putting phpwebsite and phpshop together on a site - well not together but living peacefully side by side. Has this been done before? What should I look out for? Is it possible to share the theme somehow? Also - I needed a way of controlling the menu links separately (for color and effect) so I added a style to the href tag in menu.php - is this the only way? easier way? Thanks for any help, Antonio |
From: Adam M. <ad...@tu...> - 2002-10-29 20:45:00
|
Yes, once again all the commits from root today are me...I have a horrible habit of doing that and I'm seeking professional help in the morning :) Good job today everyone! Cheers! Adam --------------------------------- Adam Morton Developer - Electronic Student Services http://phpwebsite.appstate.edu Founder - ASU Linux Users Group http://lug.appstate.edu |
From: Adam M. <ad...@tu...> - 2002-10-29 19:40:50
|
One more thing to add: - When using the showIcon function, if the category for the current item does not have an icon associated with it, I get some really wierd behavior. I showed you the behavior, Matt. This is just to jog your short term memory :) Adam > > I was working with FatCat today and have a couple of suggestions. > Please read over them and add to them if you wish: > > - Need a function I can call as a programmer that will list all the > categories (linkable) that have items from my module it them. Once I > click on one of these categories it should list only the items that > pertain to my module + any sub categories that may contain items from my > module as well. Each item can be linked as they are in the "What's > Related" block. > > - Need a function that will effectively remove all my module items from > all categories. We need to be able to call this when uninstalling via > Boost. > > - Need a user interface for categories where a user can go browse > categories and see all items from all modules in each category. Similar > to the requested function above but it isn't module specific items. (You > could probably setup your "list" function to list ALL items if you don't > pass it a module name. Then a programmer can take advantage of the full > listing and your user interface will essentially be one function call > hehe. > > - Documentation errors I ran into: function name whatRelated = > whatsRelated. Default priority is 5 and not 50. > > Cheers! > Adam > > --------------------------------- > Adam Morton > Developer - Electronic Student Services > http://phpwebsite.appstate.edu > Founder - ASU Linux Users Group > http://lug.appstate.edu > > > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Adam Morton Developer - Electronic Student Services http://phpwebsite.appstate.edu Founder - ASU Linux Users Group http://lug.appstate.edu |
From: Matthew M. <ma...@tu...> - 2002-10-29 19:17:36
|
> Could we add a test inside the current sqlCreateTable function that > tests the first key in the array to see if it's an integer or a string > and act accordingly? Or we could add a third parameter that denotes an > indexed or associative array? Works for me. Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |
From: Adam M. <ad...@tu...> - 2002-10-29 19:07:40
|
I was working with FatCat today and have a couple of suggestions. Please read over them and add to them if you wish: - Need a function I can call as a programmer that will list all the categories (linkable) that have items from my module it them. Once I click on one of these categories it should list only the items that pertain to my module + any sub categories that may contain items from my module as well. Each item can be linked as they are in the "What's Related" block. - Need a function that will effectively remove all my module items from all categories. We need to be able to call this when uninstalling via Boost. - Need a user interface for categories where a user can go browse categories and see all items from all modules in each category. Similar to the requested function above but it isn't module specific items. (You could probably setup your "list" function to list ALL items if you don't pass it a module name. Then a programmer can take advantage of the full listing and your user interface will essentially be one function call hehe. - Documentation errors I ran into: function name whatRelated = whatsRelated. Default priority is 5 and not 50. Cheers! Adam --------------------------------- Adam Morton Developer - Electronic Student Services http://phpwebsite.appstate.edu Founder - ASU Linux Users Group http://lug.appstate.edu |
From: Adam M. <ad...@tu...> - 2002-10-29 19:00:49
|
> I have rewritten the sqlImport function. It now parses the file and then > sends the information to the proper core function. Very cool! > One note: I created a function named newCreateTAble. It is different > from sqlCreateTable in that you pass just an indexed array, not an > associative array. What this allows is that you just enter the text for > the columns, one per row. That way you do not have to plug the index and > primary key information into the array. Could we add a test inside the current sqlCreateTable function that tests the first key in the array to see if it's an integer or a string and act accordingly? Or we could add a third parameter that denotes an indexed or associative array? Adam --------------------------------- Adam Morton Developer - Electronic Student Services http://phpwebsite.appstate.edu Founder - ASU Linux Users Group http://lug.appstate.edu |
From: Matthew M. <ma...@tu...> - 2002-10-29 18:46:18
|
Howdy, I have rewritten the sqlImport function. It now parses the file and then sends the information to the proper core function. The allows those functions to take care of sequencing and table prefixing. I have tested it using prefixing and without. I have only written the CREATE (as in table, never database) and INSERT portions. One note: I created a function named newCreateTAble. It is different from sqlCreateTable in that you pass just an indexed array, not an associative array. What this allows is that you just enter the text for the columns, one per row. That way you do not have to plug the index and primary key information into the array. Example $array["id"] = "int NOT NULL, primary key (id)"; $array["name"] = "varchar(20) NOT NULL default ''"; $array["config"] = "text NOT NULL"; sqlCreateTable ("table_name", $array); Otherway $array[] = "id int NOT NULL"; $array[] = "primary key (id)"; $array[] = "name varchar(20) NOT NULL default ''"; $array[] = "config text NOT NULL"; newCreateTable ("table_name", $array); This made it easier for the sqlImport function to parse the file and, IMHO, is just an easier format. I really would prefer not have to extract the name of the column from each definition. So we can keep both or settle on one. Speak up on the pros and cons of either. I'll be working on the other importable (word?) SQL functions next. Matthew McNaney Internet Systems Architect Electronic Student Services Email: ma...@tu... URL: http://phpwebsite.appstate.edu Phone: 828-262-6493 ICQ: 141057403 |