php-general Digest 30 Sep 2011 18:36:14 -0000 Issue 7499

2011-09-30 Thread php-general-digest-help
php-general Digest 30 Sep 2011 18:36:14 - Issue 7499 Topics (messages 315075 through 315087): Re: php5-fpm segfault 315075 by: áÌÅËÓÁÎÄÒ çÏÎÞÁÒÏ× Re: Getting meta data (of any type) for an XML file being from it's URL. 315076 by: Richard Quadling Re: Input variable from

Re: [PHP] php5-fpm segfault

2011-09-30 Thread Laruence
Hi : could you file a bug at https://bugs.php.net/ this is the proper way to report a bug :) thanks -- Laruence  Xinchen Hui http://www.laruence.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php5-fpm segfault

2011-09-30 Thread Александр Гончаров
You think this is PHP's bug? I'm not sure. Because PHP installed not latest version and yesterday i tune memory_limit setting to 256M (was -1) and no segfaults registered since that moment. I think, bad designed script allocate too much memory and php-fpm worker become mad and kill himself. But

Re: [PHP] Getting meta data (of any type) for an XML file being from it's URL.

2011-09-30 Thread Richard Quadling
On 29 September 2011 23:34, Tommy Pham tommy...@gmail.com wrote: On Thu, Sep 29, 2011 at 3:27 PM, Tommy Pham tommy...@gmail.com wrote: On Thu, Sep 29, 2011 at 9:09 AM, Richard Quadling rquadl...@gmail.com wrote: Hi. I'm looking to process very large XML files without the need of first

Re: [PHP] Input variable from form help request

2011-09-30 Thread Richard Quadling
On 29 September 2011 23:28, PHProg php...@speedemessenger.com wrote: Hello Richard, Your suggestion worked perfectly. ... it works beautifully. Now that's what I like to hear! Glad to be of help. -- Richard Quadling Twitter : EE : Zend : PHPDoc @RQuadling : e-e.com/M_248814.html :

[PHP] [Friday] Tokyo / Kyoto.

2011-09-30 Thread Richard Quadling
Tokyo means Eastern Capital Kyoto means Western Capital -- Richard Quadling Twitter : EE : Zend : PHPDoc @RQuadling : e-e.com/M_248814.html : bit.ly/9O8vFY : bit.ly/lFnVea -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] RSS Feed Accented Characters

2011-09-30 Thread Ron Piggott
I am trying to set up an RSS Feed in the Spanish language using a PHP cron job. I am unsure of how to deal with accented letters. An example: This syntax: ?php $rss_content .= description . htmlentities(El Versículo del Día) . /description\r\n; ? Outputs: descriptionEl Versiacute;culo

RE: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Jen Rasmussen
Would this work? $content = El Versiacute;culo del Diacute;a; $rss_content .= description . $content . /description\r\n; Cheers! Jen -Original Message- From: Ron Piggott [mailto:ron@actsministries.org] Sent: Friday, September 30, 2011 11:26 AM To: php-general@lists.php.net

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Richard Quadling
On 30 September 2011 17:41, Jen Rasmussen j...@cetaceasound.com wrote: Would this work? $content = El Versiacute;culo del Diacute;a; $rss_content .= description . $content . /description\r\n; Cheers! Jen The entities are HTML entities. They are not XML entities. If they are displayed as ?

RE: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Jen Rasmussen
Whoops! Forgive my try at it :) -Original Message- From: Richard Quadling [mailto:rquadl...@gmail.com] Sent: Friday, September 30, 2011 11:47 AM To: j...@cetaceasound.com Cc: Ron Piggott; php-general@lists.php.net Subject: Re: [PHP] RSS Feed Accented Characters On 30 September 2011

Re: [PHP] Attached without Attachment

2011-09-30 Thread Sean Greenslade
On Wed, Sep 28, 2011 at 12:15 PM, Gustavo - Emar Plásticos supo...@emar.com.br wrote: Hi all, i made a code in PHP to save in a directory the XML attachments ! All goes well until it comes across an email that has attachment but can not save ! analyzing the source code of this email, i

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Ron Piggott
-Original Message- From: Richard Quadling Sent: Friday, September 30, 2011 12:31 PM To: Ron Piggott Cc: php-general@lists.php.net Subject: Re: [PHP] RSS Feed Accented Characters On 30 September 2011 17:26, Ron Piggott ron@actsministries.org wrote: I am trying to set up an RSS

[PHP] Generate CMS based on database schema

2011-09-30 Thread Marc Guay
Howdy, I'm looking for a FOSS equivalent to PHPMaker, or at least something which comes close to it. For those who don't know the program, it syncs with your database and allows you to generate an entire CMS system based on it. To be clear, I am not looking for a CRUD code generator, I'm

Re: [PHP] Generate CMS based on database schema

2011-09-30 Thread Ashley Sheridan
On Fri, 2011-09-30 at 14:35 -0400, Marc Guay wrote: Howdy, I'm looking for a FOSS equivalent to PHPMaker, or at least something which comes close to it. For those who don't know the program, it syncs with your database and allows you to generate an entire CMS system based on it. To be

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Richard Quadling
On 30 September 2011 18:22, Ron Piggott ron@actsministries.org wrote: -Original Message- From: Richard Quadling Sent: Friday, September 30, 2011 12:31 PM To: Ron Piggott Cc: php-general@lists.php.net Subject: Re: [PHP] RSS Feed Accented Characters On 30 September 2011 17:26,

Re: [PHP] Generate CMS based on database schema

2011-09-30 Thread Marc Guay
Hi Ashley, That's an interesting looking project, but wouldn't it require me to switch to CodeIgniter? I'm not interested in changing my entire working method for this. Marc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] RSS Feed Accented Characters

2011-09-30 Thread Ron Piggott
www.TheVerseOfTheDay.info -Original Message- From: Richard Quadling Sent: Friday, September 30, 2011 2:53 PM To: Ron Piggott Cc: php-general@lists.php.net Subject: Re: [PHP] RSS Feed Accented Characters On 30 September 2011 18:22, Ron Piggott ron@actsministries.org wrote:

Re: [PHP] Generate CMS based on database schema

2011-09-30 Thread Lars Nielsen
If you like Drupal, you should definitely take a look at Drush. Its a shell for Drupal which allows you to install, configure and manage drupal from the commandline. Secondly you could make Drupal installprofiles which is you own custom drupal configuration. Last you can look at Aegir which is a

Re: [PHP] Generate CMS based on database schema

2011-09-30 Thread Ashley Sheridan
On Fri, 2011-09-30 at 15:03 -0400, Marc Guay wrote: Hi Ashley, That's an interesting looking project, but wouldn't it require me to switch to CodeIgniter? I'm not interested in changing my entire working method for this. Marc CodeIgniter is just a framework written in PHP, and

Re: [PHP] Generate CMS based on database schema

2011-09-30 Thread Marc Guay
I assumed that as you'd mentioned trying Drupal that you would be OK with trying out various PHP-based solutions? True enough. Maybe I'll sharpen the focus then and ask if anyone knows of a solution that does not require a reworking of method; a stand-alone CMS generator similar to PHPMaker

Re: [PHP] Generate CMS based on database schema

2011-09-30 Thread Lester Caine
Marc Guay wrote: I assumed that as you'd mentioned trying Drupal that you would be OK with trying out various PHP-based solutions? True enough. Maybe I'll sharpen the focus then and ask if anyone knows of a solution that does not require a reworking of method; a stand-alone CMS generator