On Jul 29, 2010, at 1:36 AM, Nathan Rixham wrote:
Hi All,
Hey Nathan!
I find myself wondering about the state of the PHP community (and
related community with a PHP focus), so, here's a bunch of questions
- feel free to answer none to all of them, on list or off, or add
more of your
On 10-07-29 10:18 PM, David McGlone wrote:
On Thu, 2010-07-29 at 22:14 -0400, Robert Cummings wrote:
Early high school I used to program in basic on a TRS-80. Oh how I loved
saving my programs to audio cassette. Later in high school I learned
pascal and then later qbasic. Later still I studied c
On 10-07-29 03:35 PM, Rasmus Lerdorf wrote:
On 7/28/10 11:26 PM, Larry Garfield wrote:
- Those driving PHP development itself (vis, writing the engine) don't seem to
comprehend the idea of someone running a web site who isn't also a C
developer, sysadmin, and performance specialist. "If you don
On Thu, 2010-07-29 at 22:14 -0400, Robert Cummings wrote:
> On 10-07-29 01:36 AM, Nathan Rixham wrote:
> > Hi All,
> >
> > I find myself wondering about the state of the PHP community (and
> > related community with a PHP focus), so, here's a bunch of questions -
> > feel free to answer none to all
On 10-07-29 01:36 AM, Nathan Rixham wrote:
Hi All,
I find myself wondering about the state of the PHP community (and
related community with a PHP focus), so, here's a bunch of questions -
feel free to answer none to all of them, on list or off, or add more of
your own - this isn't for anything s
Yeah like i said site works 95% of the time when navigating. PHP5.2, Mysql
5. The site is completely dynamic so it wouldn't work at all if that was the
case of it not being installed right.
so the other 5% of the time is blank pages and download index.php files. In
Firefox when you get a blank pag
I have the strangest issue with my host. They can't figure it out and I'm
completely perplexed. We have other sites running on the server just fine.
However, this new site is acting very weird. Sometimes we get blank pages,
sometimes we get a blank page and then a dialog pops up asking if we want t
I'm working on the Hamcrest matching library and have been considering the
switch to using namespaces (\Hamcrest\Type\IsInteger) instead of
class-names-as-namespaces (Hamcrest_Type_IsInteger). Coming from the Java
world I'm used to being forced to deploy my applications on versions one or
two behin
Bastien Koert wrote:
On Thu, Jul 29, 2010 at 1:36 AM, Nathan Rixham wrote:
Hi All,
I find myself wondering about the state of the PHP community (and related
community with a PHP focus), so, here's a bunch of questions - feel free to
answer none to all of them, on list or off, or add more of yo
On 07/28/2010 11:29 PM, Rick Dwyer wrote:
> So htmlentities() will work for "Green, Red & Blue"?
>
> Will it work for "htm?color=blue&number=2&letter="?
>
> --Rick
For ampersands yes, for other things no. Use the correct tool for the
job. To output HTML use htmlentities(). To pass in
On 29 July 2010 07:36, Nathan Rixham wrote:
> Hi All,
>
> I find myself wondering about the state of the PHP community (and related
> community with a PHP focus), so, here's a bunch of questions - feel free to
> answer none to all of them, on list or off, or add more of your own - this
> isn't for
On Thu, Jul 29, 2010 at 1:36 AM, Nathan Rixham wrote:
> Hi All,
>
> I find myself wondering about the state of the PHP community (and related
> community with a PHP focus), so, here's a bunch of questions - feel free to
> answer none to all of them, on list or off, or add more of your own - this
>
On 7/28/10 11:26 PM, Larry Garfield wrote:
> - Those driving PHP development itself (vis, writing the engine) don't seem
> to
> comprehend the idea of someone running a web site who isn't also a C
> developer, sysadmin, and performance specialist. "If you don't have root
> then
> we don't car
On 7/27/10 7:04 AM, Ümit CAN wrote:
> I use PHP socket programming and I wish multithreading operation of
the socket .
> When I have many requests on this socket , before the first one request is
> anwered , the second request is not aswered till the first one is finished.
> How can both r
On 7/28/2010 10:36 PM, Nathan Rixham wrote:
Hi All,
I find myself wondering about the state of the PHP community (and
related community with a PHP focus), so, here's a bunch of questions -
feel free to answer none to all of them, on list or off, or add more
of your own - this isn't for anyth
Ümit CAN wrote:
> I use PHP socket programming and I wish multithreading operation of
> the socket .
Don't use PHP, use C - it'll save you a lot of trouble in this context.
--
Per Jessen, Zürich (15.4°C)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.p
At 9:50 AM -0700 7/29/10, Don Wieland wrote:
I am trying to create an UPLOAD form and need to figure a way to
only allow PDF files to be selected.
The short answer is you can't -- not from php. You can create a
standard form and upload it from there, but you don't have control
over file type.
http://www.php.net/manual/en/function.ssh2-scp-send.php
2010/7/29 Scott Teresi :
> I'm attempting to send a file over SFTP in PHP, but all the examples I find
> online do something like this:
--
WBR, Dmitrii
+375 29 60-LINUX, 25-LINUX, 40-LINUX
icq: 193-74-771
www.varvashenia.ru, www.seoder.ru
On Jul 29, 2010, at 12:50 PM, Don Wieland wrote:
> I am trying to create an UPLOAD form and need to figure a way to only allow
> PDF files to be selected. Something like:
>
>
>
>
>accept="application/pdf" />
> Choose a file to upload: type="file" />
>
I'm attempting to send a file over SFTP in PHP, but all the examples I find
online do something like this:
$stream = @fopen("ssh2.sftp://xx";, 'w');
@fwrite($stream, $data_to_send)
This requires "allow_url_fopen" to be enabled on the server, to get a stream
for the remote fi
On 7/29/10 2:32 AM, Nathan Rixham wrote:
What's your previous language/tech trail?
Started with QBasic and realized it was crap. Moved on to Java,
realized object rock but J2EE doesn't. Moved to PHP / Java.
QBasic was crap lol, that was my first language after playing with .bat
files!
Oh b
On Thu, 2010-07-29 at 09:50 -0700, Don Wieland wrote:
> I am trying to create an UPLOAD form and need to figure a way to only
> allow PDF files to be selected. Something like:
>
>
>
>
>accept="application/pdf" />
> Choose a file to upload: type="file" />
I am trying to create an UPLOAD form and need to figure a way to only
allow PDF files to be selected. Something like:
accept="application/pdf" />
Choose a file to upload:
It is documented online that I can pass a parameter ACCEPT="appl
On Jul 29, 2010, at 3:32 AM, Nathan Rixham wrote:
> Hi Josh,
>
> Thanks for taking the time - comments in-line from here :)
>
> Josh Kehn wrote:
>> Java, JS (in the form of Node and MongoDB, +raw client / jQuery stuff) and
>> PHP get used regularly. Python / Ruby infrequently.
>
> With true co
From: Nathan Rixham
> I find myself wondering about the state of the PHP community (and
> related community with a PHP focus), so, here's a bunch of questions -
>
> What other languages and web techs do you currently use other than
PHP?
> - if you include html or css please include version, if
From: João Cândido de Souza Neto
> I´ve got the setting in my /etc/login.defs file as bellow:
>
> # Use MD5 or DES to encrypt password? Red Hat use MD5 by default.
> MD5_CRYPT_ENAB no
>
> ENCRYPT_METHOD SHA512
>
> So, when I try to get this:
>
> echo hash("sha512", $_POST["password"]);
>
>
On Thu, Jul 29, 2010 at 06:36:13AM +0100, Nathan Rixham wrote:
> Hi All,
>
> I find myself wondering about the state of the PHP community (and
> related community with a PHP focus), so, here's a bunch of questions -
> feel free to answer none to all of them, on list or off, or add more of
> your o
I´ve got the setting in my /etc/login.defs file as bellow:
# Use MD5 or DES to encrypt password? Red Hat use MD5 by default.
MD5_CRYPT_ENAB no
ENCRYPT_METHOD SHA512
So, when I try to get this:
echo hash("sha512", $_POST["password"]);
It does not match the password the user´s got in /etc/shad
Nathan:
What other languages and web techs do you currently use other than PHP?
- if you include html or css please include version, if js then
preferred libs, and whether client or server side.
Besides php, I use mysql, javascript (jQuery, ajax, DOM scripting),
css, and html. As for version
On 29 July 2010 15:43, Nathan Rixham wrote:
> have you sent an email to ?
I love how you guys are torturing the poor bastard *after* he made it
clear he's tried *in several ways* to unsubscribe and *really* doesn't
need more advice but a list admin. Made me chuckle :)
Regards
Peter
--
WWW: h
have you sent an email to ?
Mike Roberts wrote:
Hello All. I have been given advice on how to remove myself from this
list, and taken it. I have tried on my own to discover how to remove
myself from this list. I have even ( something I am not proud of) hinted
that I might start irrelevant threa
[snip]
> So IF YOU HAVE THE CAPABILITY TO REMOVE ME "Make it so number one!".
[/snip]
CLICK HERE -> To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
On Thu, 2010-07-29 at 08:32 -0400, Mike Roberts wrote:
> Hello All. I have been given advice on how to remove myself from this
> list, and taken it. I have tried on my own to discover how to remove
> myself from this list. I have even ( something I am not proud of) hinted
> that I might start irre
Hello All. I have been given advice on how to remove myself from this
list, and taken it. I have tried on my own to discover how to remove
myself from this list. I have even ( something I am not proud of) hinted
that I might start irrelevant threads of conversation so you will ban
me. Unfortunately
Adam Richardson wrote:
On Thu, Jul 29, 2010 at 1:36 AM, Nathan Rixham wrote:
Hi All,
I find myself wondering about the state of the PHP community (and related
community with a PHP focus), so, here's a bunch of questions - feel free to
answer none to all of them, on list or off, or add more of
Larry Garfield wrote:
On Thursday 29 July 2010 12:36:13 am Nathan Rixham wrote:
Hi All,
I find myself wondering about the state of the PHP community (and
related community with a PHP focus), so, here's a bunch of questions -
feel free to answer none to all of them, on list or off, or add more o
Larry Garfield wrote:
On Thursday 29 July 2010 02:07:58 am you wrote:
Hi Larry,
Thanks for taking the time to reply, a solid insightful one at that -
kudos +1 for your opensource drupal efforts!
Good of you to mention, and indeed to see, Palinter grasping opensource
with two hands, this is ce
Hi Josh,
Thanks for taking the time - comments in-line from here :)
Josh Kehn wrote:
On Jul 29, 2010, at 1:36 AM, Nathan Rixham wrote:
Hi All,
I find myself wondering about the state of the PHP community (and related
community with a PHP focus), so, here's a bunch of questions - feel free t
On Thursday 29 July 2010 02:07:58 am you wrote:
> Hi Larry,
>
> Thanks for taking the time to reply, a solid insightful one at that -
> kudos +1 for your opensource drupal efforts!
>
> Good of you to mention, and indeed to see, Palinter grasping opensource
> with two hands, this is certainly a v
On Thu, Jul 29, 2010 at 1:36 AM, Nathan Rixham wrote:
> Hi All,
>
> I find myself wondering about the state of the PHP community (and related
> community with a PHP focus), so, here's a bunch of questions - feel free to
> answer none to all of them, on list or off, or add more of your own - this
On Jul 29, 2010, at 1:36 AM, Nathan Rixham wrote:
> Hi All,
>
> I find myself wondering about the state of the PHP community (and related
> community with a PHP focus), so, here's a bunch of questions - feel free to
> answer none to all of them, on list or off, or add more of your own - this
>
41 matches
Mail list logo