php-general Digest 26 Nov 2008 22:14:27 -0000 Issue 5812

2008-11-26 Thread php-general-digest-help
php-general Digest 26 Nov 2008 22:14:27 - Issue 5812 Topics (messages 283819 through 283835): Re: Enable disable_functions globally and disable for a domain 283819 by: Stan Vassilev | FM 283820 by: sbeam 283831 by: mike Voting methodology 283821 by: tedd

[PHP] Enable disable_functions globally and disable for a domain

2008-11-26 Thread Santi Saez
Hi, Can I enable disable_functions globally and disable for individual domains? According to PHP documentation [1] it can be only set via php.ini.. For shared hosting scenarios, it will be great this feature.. disable insecure functions globally, and enable for certain domains, any

Re: [PHP] Enable disable_functions globally and disable for a domain

2008-11-26 Thread sbeam
On Wednesday 26 November 2008 05:10, Santi Saez wrote: According to PHP documentation [1] it can be only set via php.ini.. For shared hosting scenarios, it will be great this feature.. disable insecure functions globally, and enable for certain domains, any workaround to make this? using

[PHP] Voting methodology

2008-11-26 Thread tedd
Hi gang: What methodology would be the best for online voting? I have a client who is a Union and they want members to vote online, but don't want someone to stuff the voting box. I have some ideas of my own, but would like to hear what you people would recommend. Cheers, tedd --

[PHP] Online Calendars

2008-11-26 Thread tedd
Hi gang: What online calendars would any of you recommend or have experiences with one way or the other? Cheers, tedd -- --- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Voting methodology

2008-11-26 Thread ceo
You have to have them registered and logged in with their Union ID to have any accountability at all... Anything else is just to wide open to ballot stuffing. You will need to provide reassurances of anonimity, presumably, and possibly some

Re: [PHP] Enable disable_functions globally and disable for a domain

2008-11-26 Thread Stan Vassilev | FM
Hi, Blacklists are by definition insecure, so I'd advise you to have two setups, one locked down (whitelist effectively) with only the needed extensions and features, and the other one more relaxed. Regards, Stan Vassilev Hi, Can I enable disable_functions globally and disable for

Re: [PHP] Voting methodology

2008-11-26 Thread Dan Joseph
On Wed, Nov 26, 2008 at 9:23 AM, tedd [EMAIL PROTECTED] wrote: Hi gang: What methodology would be the best for online voting? I have a client who is a Union and they want members to vote online, but don't want someone to stuff the voting box. I have some ideas of my own, but would like to

Re: [PHP] Voting methodology

2008-11-26 Thread Yeti
I once had to implement something similar for a client's intranet page. First we designed it to work without login simply by logging the IPs (static and in the 10.10.*.* range) to avoid people voting twice or more. Then the client wanted to have some statistics like what department voted for what

Re: [PHP] Online Calendars

2008-11-26 Thread Daniel P. Brown
On Wed, Nov 26, 2008 at 9:25 AM, tedd [EMAIL PROTECTED] wrote: Hi gang: What online calendars would any of you recommend or have experiences with one way or the other? Related to the discussion about this last week or the week before? If you're going for an ASP (not the M$ thing, but

Re: [PHP] Voting methodology

2008-11-26 Thread Daniel P. Brown
On Wed, Nov 26, 2008 at 9:23 AM, tedd [EMAIL PROTECTED] wrote: Hi gang: What methodology would be the best for online voting? I have a client who is a Union and they want members to vote online, but don't want someone to stuff the voting box. Because this is going to be a member-only

Re: [PHP] Voting methodology

2008-11-26 Thread ceo
You should probably also wrap a vote in a transaction, so a user is not locked out from voting unless you are 100% sure their vote got counted, nor vice versa. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] pear mail() verses net-smtp()

2008-11-26 Thread Al
Anyone have opinions on these two mail functions for sending smtp emails, pear mail() verses net-smtp()? Which is best, etc. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Voting methodology

2008-11-26 Thread Ashley Sheridan
On Wed, 2008-11-26 at 09:23 -0500, tedd wrote: Hi gang: What methodology would be the best for online voting? I have a client who is a Union and they want members to vote online, but don't want someone to stuff the voting box. I have some ideas of my own, but would like to hear what

Re: [PHP] Enable disable_functions globally and disable for a domain

2008-11-26 Thread mike
php-fpm also allows per pool overrides. in php 5.3, i believe the php.ini can use conditionals such as path as well. On Wed, Nov 26, 2008 at 5:54 AM, sbeam [EMAIL PROTECTED] wrote: On Wednesday 26 November 2008 05:10, Santi Saez wrote: According to PHP documentation [1] it can be only set via

[PHP] Re: Voting methodology

2008-11-26 Thread Nathan Rixham
tedd wrote: Hi gang: What methodology would be the best for online voting? I have a client who is a Union and they want members to vote online, but don't want someone to stuff the voting box. I have some ideas of my own, but would like to hear what you people would recommend. Cheers,

[PHP] Re: Online Calendars

2008-11-26 Thread Nathan Rixham
tedd wrote: Hi gang: What online calendars would any of you recommend or have experiences with one way or the other? Cheers, tedd to integrate in with a system? open or closed source? feature list? (you could mean a massive task manager or a tiny calender widget) -- PHP General Mailing

Re: [PHP] Voting methodology

2008-11-26 Thread tedd
At 9:23 AM -0500 11/26/08, tedd wrote: Hi gang: What methodology would be the best for online voting? I have a client who is a Union and they want members to vote online, but don't want someone to stuff the voting box. I have some ideas of my own, but would like to hear what you people

[PHP] Re: Online Calendars

2008-11-26 Thread tedd
At 9:18 PM + 11/26/08, Nathan Rixham wrote: tedd wrote: Hi gang: What online calendars would any of you recommend or have experiences with one way or the other? Cheers, tedd to integrate in with a system? open or closed source? feature list? (you could mean a massive task manager or

Re: [PHP] pear mail() verses net-smtp()

2008-11-26 Thread Chris
Al wrote: Anyone have opinions on these two mail functions for sending smtp emails, pear mail() verses net-smtp()? Which is best, etc. Pear mail puts everything together and if necessary uses net_smtp to send it. If you want to have to build the emails yourself, you can do it and then use

Re: [PHP] pear mail() verses net-smtp()

2008-11-26 Thread Chris
Al wrote: Anyone have opinions on these two mail functions for sending smtp emails, pear mail() verses net-smtp()? Which is best, etc. Pear mail puts everything together and if necessary uses net_smtp to send it. If you want to have to build the emails yourself, you can do it and then use

Re: [PHP] Re: Online Calendars

2008-11-26 Thread Nathan Rixham
tedd wrote: At 9:18 PM + 11/26/08, Nathan Rixham wrote: tedd wrote: Hi gang: What online calendars would any of you recommend or have experiences with one way or the other? Cheers, tedd to integrate in with a system? open or closed source? feature list? (you could mean a massive

[PHP] RSE in Ganymede + General Dev Talk

2008-11-26 Thread Nathan Rixham
Evening all, Just wondered if anybody else had tranfer problems using the ftp connector of the RSE plugin for eclipse ganymede, I keep getting a no transfer and the export from project dialog telling me to pick a remote folder (Even though I have). Not looking for a fix, just wondered if

[PHP] Re: RSE in Ganymede + General Dev Talk

2008-11-26 Thread Nathan Rixham
Nathan Rixham wrote: Just wondered if anybody else had tranfer problems using the ftp connector of the RSE plugin for eclipse ganymede, confusion, it's fine in ganymede off in europa - sorry! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: Online Calendars

2008-11-26 Thread Michael Leung
Hi, Or you can get PHP webhost and install eGroupWare. http://www.egroupware.org/ I like to use that because I can have more control. -- Regards, Michael Leung http://www.itblogs.info http://www.michaelleung.info On Thu, Nov 27, 2008 at 9:37 AM, Nathan Rixham [EMAIL PROTECTED] wrote: tedd

Re: [PHP] RSE in Ganymede + General Dev Talk

2008-11-26 Thread Jochem Maas
Nathan Rixham schreef: Evening all, Just wondered if anybody else had tranfer problems using the ftp connector of the RSE plugin for eclipse ganymede, I keep getting a no transfer and the export from project dialog telling me to pick a remote folder (Even though I have). Not looking for

Re: [PHP] Netbeans 6.5 WAS: phpDesigner 2008?

2008-11-26 Thread Daevid Vincent
On Tue, 2008-11-18 at 10:32 +, Holografix wrote: Hi I tried PHPDesigner some time ago. It's not bad but now I'm using Netbeans and it's a good editor: http://www.netbeans.org/ (it's free!) I watched the little movie demo and was impressed, so I just installed and tried the Netbeans 6.5