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: Verdon V. <ve...@ve...> - 2006-12-04 03:39:22
|
Hi :) Can anyone help me impliment categories in 1.x? I can't find any examples of categories is use in a mod, except in the miniadmin, and the instructions in /docs/Categories.txt aren't getting me anywhere. It's sounds straight fwd, but I'm just missing something :) I'd like to include a multiple select list, or some such thing, in a typical add/edit item form, made up of available categories. Any pointers? Thanks, verdon |
From: Verdon V. <ve...@ve...> - 2006-12-04 03:06:43
|
Hi :) A couple early observations while writing a mod for the new version. Matt, if you're reading and would like me to put these in a tracker, I will. Let me know where. First, I'm having fun! I also appreciate the documentation that has already been done. It has really helped getting going. 1) Location of settings.php in docs/Settings_Class.txt is wrong, still says to put settings.php in /mod/mymod/conf and it should say / mod/mymod/inc 2) It would be nice if there was a way to have /core/class/Form.php prepend a required indicator to a field label. Maybe something like '<span class="error">*</span> ' could be prepended to a field label if the label was called like... $form->setLabel('email', _('Contact E-mail'), $required) or... $form->setLabel('email', _('Contact E-mail')) $form->setRequired('email') ... at first I tried just adding it to my label string, not realizing the basic label value also gets added as a var to the actual field. Doh! 3) The DHTML Calendar js_calendar, as it currently is, cannot be used on a page that has more than one form, unless your form happens to be the first one on the page. It took me a while to figure out why I couldn't get this to work (couldn't see the forest for the trees) but the fix seems simple enough. What I outline below works fine for me. I don't know if it would cause problems min browsers that I don't have, but I don't think so... i) Add... if (!isset($data['form_name'])) { $data['form_name'] = '0'; } else { $data['form_name'] = $data['form_name']; } ...near the top of /javascript/js_calendar/default.php ii) Then in body.js, and body2.js in /javascript/js_calendar/ change all instances of forms[0] to forms['{form_name}'] iii) Now a mod developer can send $js_vars['form_name'] = 'my_form_name'; $js_vars['date_name'] = 'my_date'; $js_vars['type'] = 'text'; $template['PICK_CAL'] = javascript('js_calendar', $js_vars); 4) Now I have to figure out the best way to work with image uploads. Cheers, verdon |
From: Verdon V. <ve...@ve...> - 2006-12-04 03:06:26
|
Hi :) I am working on my first mod for phpws 1.x. My module has some settings that are text strings. I don't seem to be able to set these to NULL or empty strings. For example, by default, these settings should return NULL. What they are returning is 0. Maybe I'm misunderstanding, but I don't think 0 is the same as NULL in this instance. I have tried in my inc/settings.php setting them as $settings['custom_1_label'] = NULL; and as $settings['custom_1_label'] = ''; In either case, when I bring these values up in a settings edit form in this manner, $form->addText('custom_1_label', PHPWS_Settings::get('ssclassifieds', 'custom_1_label')); $form->setSize('custom_1_label', 40, 255); $form->setLabel('custom_1_label', _('Custom field 1 label')); The form will have a 0 in the field. If I remove the zero, and save the settings, and then bring up the edit screen again, the 0 is back. Is this normal behaviour? If it is, I can likely work with it, but it would be more familiar to me if the setting contained NULL or an empty string. Thanks for any input into this and very best regards, verdon vaillancourt |
From: Shaun M. <sh...@ae...> - 2006-11-18 15:45:20
|
On 17 Nov 2006, at 20:03, Matthew McNaney wrote: > Hi all, > > The newest and truest version has been posted to our home site and > Sourceforge. > > It has been a long three year coming. Thanks for the support. > Big pat on back from over the atlantic. I've even got a project for it that doesn't need a shopping cart or a forum now so I can try it out properly. (forum and cart being the two most important things which stop me using it everywhere) Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk |
From: Don S. <do...@se...> - 2006-11-17 22:18:34
|
zomg. On 11/17/06, Matthew McNaney <ma...@tu...> wrote: > Hi all, > > The newest and truest version has been posted to our home site and > Sourceforge. > > It has been a long three year coming. Thanks for the support. > > Have a good weekend, > Matt > > -- > Matthew McNaney > Electronic Student Services > Appalachian State University > http://phpwebsite.appstate.edu > > > ------------------------------------------------------------------------- > Take Surveys. Earn Cash. Influence the Future of IT > Join SourceForge.net's Techsay panel and you'll get the chance to share your > opinions on IT & business topics through brief surveys - and earn cash > http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > |
From: Matthew M. <ma...@tu...> - 2006-11-17 20:16:32
|
Hi all, The newest and truest version has been posted to our home site and Sourceforge. It has been a long three year coming. Thanks for the support. Have a good weekend, Matt -- Matthew McNaney Electronic Student Services Appalachian State University http://phpwebsite.appstate.edu |
From: Shaun M. <sh...@ae...> - 2006-10-26 06:59:23
|
CAPTCHA for Login perhaps. If you don't allow anon comments, which is = probably a good idea today, then that covers everything. Matt was looking at it for v1.0. |
From: Babul <bab...@ho...> - 2006-10-26 05:57:06
|
Anyone considering using CAPTCHA for comments posting... ? ----- Original Message ----- From: "Shaun Murray" <sh...@ae...> To: "phpwebsite-developers-list" <php...@li...> Sent: Thursday, October 26, 2006 12:03 AM Subject: [Phpwebsite-developers] Please Wait... >I needed a spinner earlier today for an AJAX form submission thing, > like the spinning graphic Apple uses to indicate a program is doing > something. > > Instead of just nicking the Apple one I googled and found http:// > www.ajaxload.info/ which generates animated gifs for you. Fantastic. > > If it's useful for your phpWebSite projects, give it a go. > > > Shaun > aegis design - http://www.aegisdesign.co.uk > aegis hosting - http://www.aegishosting.co.uk > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > |
From: Matthew M. <ma...@tu...> - 2006-10-25 19:27:39
|
Hi all, After much hair pulling and gnashing of teeth, table prefixing has returned to 1.0.0. Branch will also allow table prefixing (albeit in a separate database, I'll fix that later). I would _really_ appreciate it if you folks could pull down a CVS copy and test it. The Database class went through a huge overhaul and there could be problems. Things appear to be fine on my end, but a broader testing base would help me immensely. Thanks, Matt -- Matthew McNaney Electronic Student Services Appalachian State University http://phpwebsite.appstate.edu |
From: Shaun M. <sh...@ae...> - 2006-10-25 18:33:28
|
I needed a spinner earlier today for an AJAX form submission thing, like the spinning graphic Apple uses to indicate a program is doing something. Instead of just nicking the Apple one I googled and found http:// www.ajaxload.info/ which generates animated gifs for you. Fantastic. If it's useful for your phpWebSite projects, give it a go. Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk |
From: Greg M. <drk...@co...> - 2006-10-16 01:05:48
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Babul wrote: > Hi Greg: > > Thanks for your concern. I really appreciate it. > > > > I somehow managed to fix the error with admin login. During the upgradation > of 0.7.9 to 0.8.3, the authors table was not updated!!! So I copied the > authors table form a working version of 0.8.3 (which running in my another > domain) to the trouble database, and thus now admin login/pass is working. > I saw that. Good job! > > > However, I am still stuck with the 'convert' of data from 0.8.3 to 0.9.4 > (0.9.4 comes with convert scripts) .. and all I get headers already sent > error!! may be I have missed something. I looked for blank spaces in all the > php files, at the start and end of the file (which normally gives this > error) but with no luck. (here's the convert files for reference: > http://tmp.nedfi.com/convert.zip) > > > > I really need the convert files working, to upgrade from 0.8.3 .. to 0.9.4 > (then to 0.10.2 ..) > Babul Gogoi, I don't think I am the one to help you at this point. I think I started with phpWebSite around 0.9.3. As such, I never experienced the conversion struggles that you are going through. Perhaps some of the other developers remember these times. I wonder if 0.9.3 may be a better conversion release than 0.9.4. By the time 0.9.4 rolled around as far as I can tell and remember most of the sites that would convert to 9x from 8x had already done so. So that's why I am guessing that 0.9.3 may be a better "conversion release" for you. Do you have millions and millions of pages to convert or just 10 or so? If there are just a few pages, then coping the data from one page to the new 0.10.x page may be a better solution. > > > Thank you for your time. > > > > phpWebsite is a great CMS that I have been enjoying in the last 6/7 years. > > > > With best regards, > > > > Babul Gogoi > > > PS. I have very limited knowledge of php/mysql :-( > Perhaps wendall911 or singletrack would be interested in a $professional$ engagement to help you through your conversion woes. I hope this gets you on your way. Regards, Greg -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iD8DBQFFMtrLxyxe5L6mr7IRAkcUAJ4okEhAjGTa6k94uniw+YUAa2KtgACgmL1K nmcognyVD8ZJZRy/hwyxeMw= =YrwZ -----END PGP SIGNATURE----- |
From: Kevin W. <ke...@tu...> - 2006-10-11 13:51:42
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Shaun Murray wrote: > In MySQL (and MS SQL IIRC) you can create full text indexes on char, =20 > varchar and text fields for faster and more advanced searching =20 > (relevance calcs, boolean operators, stopwords etc). See http://=20 > dev.mysql.com/doc/refman/5.0/en/fulltext-search.html Note the disclaimer: it can only be used with MyISAM tables. > Under Postgres, a quick google threw up this quite nasty module - =20 > http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/ Right, because Postgres has a btree index limit of around 2kb (I think). Tsearch alleviates that problem but its usage, I agree, is a bit nasty as it requires a new data type. > To improve the searching in phpWebSIte I was thinking of going to =20 > full text indexes but it would appear Postgres will throw a spanner =20 > in the works. >=20 > Anyone got any ideas or will I be doing.. >=20 > if Mysql { fancy way } else { old way } I would say "if table type =3D=3D mysql myisam {fancy way} else {old way}= " would be preferred ;-) I think it's great in theory and, if you can check table type, I say go ahead and use it at the module level. As for sticking it in core, I'd have reservations. My humble =A30.02. kw - -- Kevin Wilcox http://ess.appstate.edu http://www.appstate.edu Office: 828.262.6740 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (GNU/Linux) iD8DBQFFLPSKsKMTOtQ3fKERAvnKAKCgcb7wDMCKCM1uKua9wgSPYy9g3ACfYUZD K31HjSGpNTB/rMX6/jQDrvw=3D =3DhyBI -----END PGP SIGNATURE----- |
From: Shaun M. <sh...@ae...> - 2006-10-11 12:30:52
|
In MySQL (and MS SQL IIRC) you can create full text indexes on char, varchar and text fields for faster and more advanced searching (relevance calcs, boolean operators, stopwords etc). See http:// dev.mysql.com/doc/refman/5.0/en/fulltext-search.html Under Postgres, a quick google threw up this quite nasty module - http://www.sai.msu.su/~megera/postgres/gist/tsearch/V2/ Hmmm. To improve the searching in phpWebSIte I was thinking of going to full text indexes but it would appear Postgres will throw a spanner in the works. Anyone got any ideas or will I be doing.. if Mysql { fancy way } else { old way } Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk |
From: Eloi G. <el...@re...> - 2006-10-05 22:06:27
|
Because the Key class stores module items' Title and Summary fields, there's no way to index the alternate versions of the module item's information. The only workaround I can think of is to register each translation as a separate item, but then a listing of Key items would need to differentiate by language, like module item language ==== === ======= article 1 en article 1 es article 1 ru article 2 en article 3 en article 3 ru Is this workable with Category listings? Anyone have a better idea? -Eloi- |
From: Shaun M. <sh...@ae...> - 2006-09-11 13:46:32
|
On 2 Sep 2006, at 23:44, stevy bill wrote: > where is the v0.10.3 url. Unstable cvs daily builds are stored at http:// phpwebsite.appstate.edu/downloads/daily-cvs/ > in v0.10.2 creating a topic can have approval, but editing or > replying to a topic has no option for approval. Is that going to be > addressed in the upcoming version? > There are no plans for that with 0.10.x that I'm aware of. It's beyond the scope of the 0.10.x approval module. Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk |
From: Matthew M. <ma...@tu...> - 2006-09-05 13:30:38
|
Shaun, Sorry but I have to cop out: I don't know. Item and Manager were Steven and Adam's babies. I rarely used them unless I was updating their code. It looks difficult to add item permissions to those classes. They were planning on saving the groups in a serialize array. This means you would have to pull each item from the table, unserialize the allowed groups, then compare them to the current user's group array. If the item was allowed, Manager could display it. If not, then it would keep it hidden. This sounds like a bit of overhead. It also sounds like it would throw-off the pagination in Manager. Imagine if you had a ten thousand items but only one of those should be seen by the user. You may load and process 9999 items before you can print the allowed one. I suppose you could recode it to create a separate group item table to cross-reference. Depends on how fancy you want your shoehorn :) Matt On Sat, 2006-09-02 at 03:15 +0100, Shaun Murray wrote: > Matt, how is the group support supposed to work (or was supposed to > work) in Item/Manager ? > > core/Item.php and core/Manager.php are used across a lot of modules > in phpWebSite but the permission support in them is left half > implemented it seems. > > In Item.php the _groups member var is commented out. > > We do however have addGroup() and removeGroup() funcs that add and > remove groups to/from an Item. > > > In Manager.php we have getItems() and one of the parameters is > $filterGroups which filters out Items if the user doesn't belong to > one of the groups the Item belongs to. We also have the GROUPS column > to show which groups an Item belongs to in a list/row display. > > I'm wondering how much trouble it is to use these features or what > extra needs adding to complete the support. eg. adding filter support > to Manager's getList() function. That could pretty much add view > permission support, easily, to Article, Announce, Documents, phpwsBB, > PhotoAlbum and many more 3rd party mods. It'd stave off a bunch of > hacks at each module level too. > > > Shaun > aegis design - http://www.aegisdesign.co.uk > aegis hosting - http://www.aegishosting.co.uk > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers -- Matthew McNaney Electronic Student Services Appalachian State University http://phpwebsite.appstate.edu |
From: Robert <ro...@wo...> - 2006-09-05 01:52:30
|
Hi Shaun I for one think this is a good idle to update to the newer PEAR classes Robert Shaun Murray wrote: > For the 0.10.3 release we need to update the supplied ASU lib/pear > directory. There's been many bugs fixed since it was last updated > including PHP4.4 support and PHP5 support. > > If anyone has any requests for including PEAR classes in lib/pear, > please suggest now. > > > > > Shaun > aegis design - http://www.aegisdesign.co.uk > aegis hosting - http://www.aegishosting.co.uk > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > > > > > |
From: Shaun M. <sh...@ae...> - 2006-09-04 20:09:49
|
For the 0.10.3 release we need to update the supplied ASU lib/pear directory. There's been many bugs fixed since it was last updated including PHP4.4 support and PHP5 support. If anyone has any requests for including PEAR classes in lib/pear, please suggest now. Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk |
From: Babul <bab...@ho...> - 2006-09-04 06:17:38
|
Hi Greg: Thanks for your concern. I really appreciate it. I somehow managed to fix the error with admin login. During the upgradation of 0.7.9 to 0.8.3, the authors table was not updated!!! So I copied the authors table form a working version of 0.8.3 (which running in my another domain) to the trouble database, and thus now admin login/pass is working. However, I am still stuck with the 'convert' of data from 0.8.3 to 0.9.4 (0.9.4 comes with convert scripts) .. and all I get headers already sent error!! may be I have missed something. I looked for blank spaces in all the php files, at the start and end of the file (which normally gives this error) but with no luck. (here's the convert files for reference: http://tmp.nedfi.com/convert.zip) I really need the convert files working, to upgrade from 0.8.3 .. to 0.9.4 (then to 0.10.2 ..) Thank you for your time. phpWebsite is a great CMS that I have been enjoying in the last 6/7 years. With best regards, Babul Gogoi PS. I have very limited knowledge of php/mysql :-( ----- Original Message ----- From: "Greg Morgan" <drk...@co...> To: <php...@li...> Sent: Saturday, September 02, 2006 6:54 AM Subject: [Phpwebsite-developers] [Fwd: [phpwebsite - Help] upgrade from 0.7.9 to 0.8.3 to o.9.0 to 0.10.] > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Anyone want to try and help this person? > > Greg > > > - -------- Original Message -------- > Subject: [phpwebsite - Help] upgrade from 0.7.9 to 0.8.3 to o.9.0 to 0.10. > Date: Fri, 01 Sep 2006 09:04:46 -0700 > From: SourceForge.net <no...@so...> > To: drk...@co... > > > Read and respond to this message at: > https://sourceforge.net/forum/message.php?msg_id=3894929 > By: babulgogoi > > upgrading an old installation of phpwebsite as below: > > 1st from 0.7.9 to 0.8.3 .. however, after the update (I go successful > mesg), > the admin login doesnot work!!! > > I notice the admin login/pass is in the authors table, and the pass is in > plain text. other user login/pass r in users table. > > Please help. > > > > > ______________________________________________________________________ > You are receiving this email because you elected to monitor this forum. > To stop monitoring this forum, login to SourceForge.net and visit: > https://sourceforge.net/forum/unmonitor.php?forum_id=49349 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.2.2 (GNU/Linux) > Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org > > iD8DBQFE+N1Sxyxe5L6mr7IRAgHdAJ4s+VVH1pfg3/4WVPd6QQSU1B+qwQCfQRNT > 37MQfCm8goke9S5bV2sp9SU= > =IX3d > -----END PGP SIGNATURE----- > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers > |
From: stevy b. <ste...@ya...> - 2006-09-02 22:44:47
|
where is the v0.10.3 url. in v0.10.2 creating a topic can have approval, but editing or replying to a topic has no option for approval. Is that going to be addressed in the upcoming version? Shaun Murray <sh...@ae...> wrote: On 28 Aug 2006, at 18:57, stevy bill wrote: > what we need is more options and a better wysiwyg editor. In 0.10.3 we've a much, much better WYSIWYG Javascript editor which edits at the cursor on all browsers we've tried instead of sticking the code at the end. There's also the XWysiwyg module for installing 3rd party editors like FCK or TinyMCE. In 1.0.0 there's a new plugin architecture for the 3rd party editors. It'd be nice to get the javascript editor from 0.10.3 in there though as it's great. Lightweight, fast and supports everything unlike any of the 3rd Party editors which never work on much past IE and Firefox. Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk ------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Phpwebsite-developers mailing list Php...@li... https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers --------------------------------- Do you Yahoo!? Get on board. You're invited to try the new Yahoo! Mail. --------------------------------- Yahoo! Messenger with Voice. Make PC-to-Phone Calls to the US (and 30+ countries) for 2¢/min or less. |
From: Shaun M. <sh...@ae...> - 2006-09-02 13:16:20
|
Answered. IIRC the method of storing the passwords changed from plain text to MD5. Easiest way to get a login is to delete the password in the database then login with no password. Long time ago though. On 2 Sep 2006, at 02:24, Greg Morgan wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Anyone want to try and help this person? > > Greg > > > - -------- Original Message -------- > Subject: [phpwebsite - Help] upgrade from 0.7.9 to 0.8.3 to o.9.0 > to 0.10. > Date: Fri, 01 Sep 2006 09:04:46 -0700 > From: SourceForge.net <no...@so...> > To: drk...@co... > > > Read and respond to this message at: > https://sourceforge.net/forum/message.php?msg_id=3894929 > By: babulgogoi > > upgrading an old installation of phpwebsite as below: > > 1st from 0.7.9 to 0.8.3 .. however, after the update (I go > successful mesg), > the admin login doesnot work!!! > > I notice the admin login/pass is in the authors table, and the > pass is in > plain text. other user login/pass r in users table. > > Please help. > > > > > ______________________________________________________________________ > You are receiving this email because you elected to monitor this > forum. > To stop monitoring this forum, login to SourceForge.net and visit: > https://sourceforge.net/forum/unmonitor.php?forum_id=49349 > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.2.2 (GNU/Linux) > Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org > > iD8DBQFE+N1Sxyxe5L6mr7IRAgHdAJ4s+VVH1pfg3/4WVPd6QQSU1B+qwQCfQRNT > 37MQfCm8goke9S5bV2sp9SU= > =IX3d > -----END PGP SIGNATURE----- > > ---------------------------------------------------------------------- > --- > Using Tomcat but need to do more? Need to support web services, > security? > Get stuff done quickly with pre-integrated technology to make your > job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > http://sel.as-us.falkag.net/sel? > cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk |
From: Shaun M. <sh...@ae...> - 2006-09-02 02:15:57
|
Matt, how is the group support supposed to work (or was supposed to work) in Item/Manager ? core/Item.php and core/Manager.php are used across a lot of modules in phpWebSite but the permission support in them is left half implemented it seems. In Item.php the _groups member var is commented out. We do however have addGroup() and removeGroup() funcs that add and remove groups to/from an Item. In Manager.php we have getItems() and one of the parameters is $filterGroups which filters out Items if the user doesn't belong to one of the groups the Item belongs to. We also have the GROUPS column to show which groups an Item belongs to in a list/row display. I'm wondering how much trouble it is to use these features or what extra needs adding to complete the support. eg. adding filter support to Manager's getList() function. That could pretty much add view permission support, easily, to Article, Announce, Documents, phpwsBB, PhotoAlbum and many more 3rd party mods. It'd stave off a bunch of hacks at each module level too. Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk |
From: Greg M. <drk...@co...> - 2006-09-02 01:24:49
|
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Anyone want to try and help this person? Greg - -------- Original Message -------- Subject: [phpwebsite - Help] upgrade from 0.7.9 to 0.8.3 to o.9.0 to 0.10. Date: Fri, 01 Sep 2006 09:04:46 -0700 From: SourceForge.net <no...@so...> To: drk...@co... Read and respond to this message at: https://sourceforge.net/forum/message.php?msg_id=3894929 By: babulgogoi upgrading an old installation of phpwebsite as below: 1st from 0.7.9 to 0.8.3 .. however, after the update (I go successful mesg), the admin login doesnot work!!! I notice the admin login/pass is in the authors table, and the pass is in plain text. other user login/pass r in users table. Please help. ______________________________________________________________________ You are receiving this email because you elected to monitor this forum. To stop monitoring this forum, login to SourceForge.net and visit: https://sourceforge.net/forum/unmonitor.php?forum_id=49349 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2.2 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org iD8DBQFE+N1Sxyxe5L6mr7IRAgHdAJ4s+VVH1pfg3/4WVPd6QQSU1B+qwQCfQRNT 37MQfCm8goke9S5bV2sp9SU= =IX3d -----END PGP SIGNATURE----- |
From: Shaun M. <sh...@ae...> - 2006-08-31 23:18:49
|
On 31 Aug 2006, at 13:35, Matthew McNaney wrote: > I have run across these while testing 1.0 as well. I can't remember > where it popped up. Besides Pear, I am returning a contruction in just > one class (Category.php). > > Is it isolated to 4.4 or is carried into versions higher? > Seems to have been carried forward into PHP 5 too. http://www.php.net/manual/en/language.references.return.php "Note: If you try to return a reference from a function with the syntax: return ($found_var); this will not work as you are attempting to return the result of an expression, and not a variable, by reference. You can only return variables by reference from a function - nothing else. E_NOTICE error is issued since PHP 4.4.0 and PHP 5.1.0 if the code tries to return a dynamic expression or a result of the new operator." But it's not consistent. See http://gallery.menalto.com/node/33076 Ugh! > If it could be widespread, we can can fix the calls in 0.10.3. > > More thoughts? > Yep, it's going to have to be fixed for 0.10.3. Shaun aegis design - http://www.aegisdesign.co.uk aegis hosting - http://www.aegishosting.co.uk |
From: Matthew M. <ma...@tu...> - 2006-08-31 17:10:30
|
Yes I would like to. On Thu, 2006-08-31 at 17:55 +0100, Shaun Murray wrote: > On 31 Aug 2006, at 17:18, Matthew McNaney wrote: > > > > >> it is missing a fourm > > A conversion of phpwsbb is expected. > > > > Can we merge comments and phpwsbb at some point? ie. both use the > same class for a message and thread? > > > > Shaun > aegis design - http://www.aegisdesign.co.uk > aegis hosting - http://www.aegishosting.co.uk > > > ------------------------------------------------------------------------- > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Phpwebsite-developers mailing list > Php...@li... > https://lists.sourceforge.net/lists/listinfo/phpwebsite-developers -- Matthew McNaney Electronic Student Services Appalachian State University http://phpwebsite.appstate.edu |