Re: [PHP] PHP session replication

2011-03-17 Thread Dan Joseph
On Thu, Mar 17, 2011 at 12:06 AM, Alessandro Ferrucci < alessandroferru...@gmail.com> wrote: > I'm curious, what are the most popular methods to perform session > replication across http servers in PHP? > I personally just use MySQL and the session_set_save_handler() stuff attached to a class. M

Re: [PHP] PHP session replication

2011-03-17 Thread Nick Williams
I have successfully and efficiently used MySQL-based database session storage for years, even on a website with 5,000 (very) active simultaneous users. I would highly recommend it. N On Mar 17, 2011, at 9:44 AM, Dan Joseph wrote: > On Thu, Mar 17, 2011 at 12:06 AM, Alessandro Ferrucci < > ales

Re: [PHP] PHP session replication

2011-03-17 Thread Nathan Nobbe
On Wed, Mar 16, 2011 at 10:06 PM, Alessandro Ferrucci < alessandroferru...@gmail.com> wrote: > Hello, > I'm curious, what are the most popular methods to perform session > replication across http servers in PHP? > I've read about repcache(memcached module) and Mysql. > anything else? is there som

Re: [PHP] PHP session replication

2011-03-17 Thread Joel
Take a look at MCache: http://www.mohawksoft.org/?q=node/8 A drop in distributed replacement for php sessions. Or you could use memcache to do the same thing. On Thu, Mar 17, 2011 at 12:06 AM, Alessandro Ferrucci wrote: > Hello, > I'm curious, what are the most popular methods to perform sessi

Re: [PHP] PHP session replication

2011-03-17 Thread Stuart Dallas
On Thursday, 17 March 2011 at 15:15, Nathan Nobbe wrote: On Wed, Mar 16, 2011 at 10:06 PM, Alessandro Ferrucci < > alessandroferru...@gmail.com> wrote: > > > Hello, > > I'm curious, what are the most popular methods to perform session > > replication across http servers in PHP? > > I've read about

Re: [PHP] PHP session replication

2011-03-17 Thread Richard Quadling
On 17 March 2011 15:18, Stuart Dallas wrote: > On Thursday, 17 March 2011 at 15:15, Nathan Nobbe wrote: > On Wed, Mar 16, 2011 at 10:06 PM, Alessandro Ferrucci < >> alessandroferru...@gmail.com> wrote: >> >> > Hello, >> > I'm curious, what are the most popular methods to perform session >> > repli

[PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
i want 2 design a php web for staff members that can sign in with their accounts n then mail 2 each other i don't know how it really works by using a mail server i'm beginner at it! but i studied alot abt it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.

[PHP] PHP 5.3.6 Released!

2011-03-17 Thread Johannes Schlüter
The PHP development team would like to announce the immediate availability of PHP 5.3.6. This release focuses on improving the stability of the PHP 5.3.x branch with over 60 bug fixes, some of which are security related. Security Enhancements and Fixes in PHP 5.3.6: * Enforce security in the

Re: [PHP] PHP session replication

2011-03-17 Thread Nick Williams
Interesting. When I went to it I got no such 404 error. Came right up. Thought-provoking article, too. N On Mar 17, 2011, at 10:22 AM, Richard Quadling wrote: > On 17 March 2011 15:18, Stuart Dallas wrote: >> On Thursday, 17 March 2011 at 15:15, Nathan Nobbe wrote: >> On Wed, Mar 16, 2011 at 1

Re: [PHP] PHP session replication

2011-03-17 Thread Stuart Dallas
On Thursday, 17 March 2011 at 15:29, Stuart Dallas wrote: On Thursday, 17 March 2011 at 15:22, Richard Quadling wrote: > On 17 March 2011 15:18, Stuart Dallas wrote: > > > On Thursday, 17 March 2011 at 15:15, Nathan Nobbe wrote: > > > On Wed, Mar 16, 2011 at 10:06 PM, Alessandro Ferrucci < > > > >

[PHP] Acentos en tpl

2011-03-17 Thread Lorena Monroy O.
Hola a todos Tengo un formulario que tiene dos paneles (.tpl), el cual maneja variables que vienen de php con la funcion setVariable, pero en el panel del menu me carga las tildes correctamente y a la derecha me las carga como un rombo con interrogación. Manejo Firefox y probe cambiando la confi

Re: [PHP] PHP session replication

2011-03-17 Thread Richard Quadling
On 17 March 2011 15:30, Stuart Dallas wrote: > On Thursday, 17 March 2011 at 15:29, Stuart Dallas wrote: > On Thursday, 17 March 2011 at 15:22, Richard Quadling wrote: >> On 17 March 2011 15:18, Stuart Dallas wrote: >> > > On Thursday, 17 March 2011 at 15:15, Nathan Nobbe wrote: >> > > On Wed, Ma

Re: [PHP] PHP session replication

2011-03-17 Thread Stuart Dallas
On Thursday, 17 March 2011 at 16:02, Richard Quadling wrote: On 17 March 2011 15:30, Stuart Dallas wrote: > > On Thursday, 17 March 2011 at 15:29, Stuart Dallas wrote: > > On Thursday, 17 March 2011 at 15:22, Richard Quadling wrote: > > > On 17 March 2011 15:18, Stuart Dallas wrote: > > > > > On

Re: [PHP] PHP session replication

2011-03-17 Thread Nathan Nobbe
On Thu, Mar 17, 2011 at 9:03 AM, Joel wrote: > Take a look at MCache: http://www.mohawksoft.org/?q=node/8 > > A drop in distributed replacement for php sessions. > One important distinction to draw is that distributed != replicated. Replication is something extra, as the discussion I linked to

Re: [PHP] designing a post fix

2011-03-17 Thread Jason Pruim
So what exactly is the question? Jason Pruim On Mar 17, 2011, at 11:23 AM, Negin Nickparsa wrote: > i want 2 design a php web for staff members that can sign in with > their accounts n then mail 2 each other i don't know how it really > works by using a mail server i'm beginner at it! but i st

Re: [PHP] PHP session replication

2011-03-17 Thread Richard Quadling
On 17 March 2011 16:04, Stuart Dallas wrote: > On Thursday, 17 March 2011 at 16:02, Richard Quadling wrote: > On 17 March 2011 15:30, Stuart Dallas wrote: >> > On Thursday, 17 March 2011 at 15:29, Stuart Dallas wrote: >> > On Thursday, 17 March 2011 at 15:22, Richard Quadling wrote: >> > > On 17

Re: [PHP] designing a post fix

2011-03-17 Thread NetEmp
@Nergin: are you trying to create an application like Squirrel Mail using PHP? On Thu, Mar 17, 2011 at 9:46 PM, Jason Pruim wrote: > So what exactly is the question? > > > Jason Pruim > > On Mar 17, 2011, at 11:23 AM, Negin Nickparsa wrote: > > > i want 2 design a php web for staff members that

Re: [PHP] PHP session replication

2011-03-17 Thread Stuart Dallas
On Thursday, 17 March 2011 at 16:16, Richard Quadling wrote: On 17 March 2011 16:04, Stuart Dallas wrote: > > On Thursday, 17 March 2011 at 16:02, Richard Quadling wrote: > > On 17 March 2011 15:30, Stuart Dallas wrote: > > > > On Thursday, 17 March 2011 at 15:29, Stuart Dallas wrote: > > > > On

Re: [PHP] designing a post fix

2011-03-17 Thread Stuart Dallas
On Thursday, 17 March 2011 at 15:23, Negin Nickparsa wrote: i want 2 design a php web for staff members that can sign in with > their accounts n then mail 2 each other i don't know how it really > works by using a mail server i'm beginner at it! but i studied alot > abt it. Are you talking about i

Re: [PHP] PHP session replication

2011-03-17 Thread Richard Quadling
On 17 March 2011 16:45, Stuart Dallas wrote: > On Thursday, 17 March 2011 at 16:16, Richard Quadling wrote: > On 17 March 2011 16:04, Stuart Dallas wrote: >> > On Thursday, 17 March 2011 at 16:02, Richard Quadling wrote: >> > On 17 March 2011 15:30, Stuart Dallas wrote: >> > > > On Thursday, 17

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
internal messaging system On Thu, Mar 17, 2011 at 8:16 PM, Stuart Dallas wrote: > On Thursday, 17 March 2011 at 15:23, Negin Nickparsa wrote: > i want 2 design a php web for staff members that can sign in with >> their accounts n then mail 2 each other i don't know how it really >> works by using

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
I'm Negin what is Squirrel Mail ? On Thu, Mar 17, 2011 at 7:55 PM, NetEmp wrote: > @Nergin: are you trying to create an application like Squirrel Mail using > PHP? > > On Thu, Mar 17, 2011 at 9:46 PM, Jason Pruim > wrote: >> >> So what exactly is the question? >> >> >> Jason Pruim >> >> On Mar 17

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
can i have an email server? we have 4 example:u...@dpaco.net or not? just we must have an emails like gmail n ymail? if i can have email server how i can code it i can have tables like this: CREATE TABLE domains ( domain varchar(50) NOT NULL, PRIMARY KEY (domain) ) TYPE=MyISAM; CREATE TABLE fo

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
I serached well yeah sort of Squirrel Mail! but it's one part of it not all part of it On Thu, Mar 17, 2011 at 8:00 PM, Negin Nickparsa wrote: > can i have an email server? > we have 4 example:u...@dpaco.net > or not? > just we must have an emails like gmail n ymail? > if i can have email server

Re: [PHP] designing a post fix

2011-03-17 Thread Stuart Dallas
On Thursday, 17 March 2011 at 16:56, Negin Nickparsa wrote: internal messaging system In that case it's simply a matter of creating a table structure to hold the messages and building an interface that will display them and allow new messages to be added, probably with email-based notifications.

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
i'll give all my users user n password will they be under the same domain or not? user1 has the domain gmail n user 2 ymail or i can have all users the same thing like dpaco.net this is our site==>dpaco.net i want to build another part of it with php On Thu, Mar 17, 2011 at 8:30 PM, Stuart Dallas

Re: [PHP] designing a post fix

2011-03-17 Thread Stuart Dallas
You probably don't need a mail server for an internal messaging system, except to handle sending notifications of new messages if that's in your requirements. By the looks of your tables you do seem to be building an MTA (http://en.wikipedia.org/wiki/Message_transfer_agent). If that's what you w

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
u mean i can have localhost mail service or not? On Thu, Mar 17, 2011 at 8:36 PM, Negin Nickparsa wrote: > i'll give all my users user n password will they be under the same > domain or not? > user1 has the domain gmail n user 2 ymail > or i can have all users the same thing like dpaco.net > this

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
when a user will be logged on he/she must have the messages just for him self yeah? then i must have a column for the mails that he recieved 4 example select mail1 from users where user=user1 i got it right? On Thu, Mar 17, 2011 at 8:39 PM, Negin Nickparsa wrote: > u mean i can have localhost ma

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
but yes i need notifications now we use free application named osticket but it doesn't work very well I can change my codes because i have time what is your suggestion for me which one can better support my site? MTA or another free app? On Thu, Mar 17, 2011 at 8:43 PM, Negin Nickparsa wrote: > w

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
Tnx very much Stuart 4 ur great helps. now it's more clear 4 me On Thu, Mar 17, 2011 at 8:55 PM, Negin Nickparsa wrote: > but yes i need notifications > now we use free application named osticket but it doesn't work very well > I can change my codes because i have time > what is your suggestion f

Re: [PHP] designing a post fix

2011-03-17 Thread Stuart Dallas
On Thursday, 17 March 2011 at 17:25, Negin Nickparsa wrote: but yes i need notifications > now we use free application named osticket but it doesn't work very well > I can change my codes because i have time > what is your suggestion for me which one can better support my site? > MTA or another fre

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
ok! stuart plz let me think to exactly tell u what i want! because i must make sentences more clear i know i have bad english sorry! i will tell u in a moment. On Thu, Mar 17, 2011 at 9:16 PM, Stuart Dallas wrote: > On Thursday, 17 March 2011 at 17:25, Negin Nickparsa wrote: > but yes i need noti

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
:( maybe it's ticketing i don't know exactly!!!:"( here are the things that i must do: receiving mails and return of mails showing emails 2 staff when a mail received it can be viewed in a moment(like ajax) drafts and upload and download from mail determine mails due on mails that replied and can

Re: [PHP] designing a post fix

2011-03-17 Thread Negin Nickparsa
i just got it! now! what's the meaning of charge for! lol! plz don't help me! again! because i have no money! tnx very much till now On Thu, Mar 17, 2011 at 9:42 PM, Negin Nickparsa wrote: > :( maybe it's ticketing i don't know exactly!!!:"( > here are the things that i must do: > > receiving mai

Re: [PHP] designing a post fix

2011-03-17 Thread Stuart Dallas
Yup, that's a support ticketing system. Google for it - there are loads of existing solutions, both self-hosted and cloud-based. Unless you have very odd requirements this particular wheel has been invented to death. -Stuart -- Stuart Dallas 3ft9 Ltd http://3ft9.com/ On Thursday, 17 March 201

Re: [PHP] PHP session replication

2011-03-17 Thread Alessandro Ferrucci
Stuart, actually I stumbled upon and read your article right after posing the question to the list, it was definitely a solution I was willing to go with, I still may do that. Thank you. Alessandro On Thu, Mar 17, 2011 at 11:18 AM, Stuart Dallas wrote: > On Thursday, 17 March 2011 at 15:15, Nath