Tommy Pham wrote:
Hi,
I'm just wondering if anyone on this list using some type of
UID/UUID/GUID in any of the DB? If so, what DBMS/RDBMS are you using
and how many rows do you have for the table(s) using it? What data
type are you using for that column?
Firebird is currently improving suppo
On Wed, Mar 31, 2010 at 1:12 AM, Nathan Rixham wrote:
> Anshul Agrawal wrote:
> > On Tue, Mar 30, 2010 at 8:41 PM, Jan G.B.
> wrote:
> >
> >> 2010/3/30 Nathan Rixham :
> >>> Jan G.B. wrote:
> 2010/3/29 Nathan Rixham
>
> > Jan G.B. wrote:
> >> 2010/3/29 Nathan Rixham
> >>
On 31 March 2010 05:45, Matty Sarro wrote:
> That explains it perfectly, thanks you!
>
> On Wed, Mar 31, 2010 at 12:40 AM, Tommy Pham wrote:
>
>> On Tue, Mar 30, 2010 at 9:22 PM, Matty Sarro wrote:
>> > Hey all!
>> > This is probably my second post on the list, so please be gentle. Right
>> now
On Wed, Mar 31, 2010 at 12:37 AM, Lester Caine wrote:
> Tommy Pham wrote:
>>
>> Hi,
>>
>> I'm just wondering if anyone on this list using some type of
>> UID/UUID/GUID in any of the DB? If so, what DBMS/RDBMS are you using
>> and how many rows do you have for the table(s) using it? What data
>>
On Wed, Mar 31, 2010 at 12:43 AM, Anshul Agrawal wrote:
> On Wed, Mar 31, 2010 at 1:12 AM, Nathan Rixham wrote:
>
>> Anshul Agrawal wrote:
>> > On Tue, Mar 30, 2010 at 8:41 PM, Jan G.B.
>> wrote:
>> >
>> >> 2010/3/30 Nathan Rixham :
>> >>> Jan G.B. wrote:
>> 2010/3/29 Nathan Rixham
>>
Tommy Pham wrote:
Storage wise it is just a 128 bit number, so twice as big as a simple 64 bit
'generator' that would normally be used in a single database system. The
improvement is to use a raw number rather than a 16 character string.
Don't you mean raw number as 16 byte, which is what I in
Good day all,
since I am driving 2 hrs each day listening to either my radio or the songs
on my USB drive, I was wondering whether there are some web dev related
audio books for download out there.
I have been searching the big G for this stuff, but haven't found anything.
Do you guys know of an
On Wed, Mar 31, 2010 at 2:29 AM, Lester Caine wrote:
> Tommy Pham wrote:
>>>
>>> Storage wise it is just a 128 bit number, so twice as big as a simple 64
>>> bit
>>> 'generator' that would normally be used in a single database system. The
>>> improvement is to use a raw number rather than a 16 cha
Tommy Pham wrote:
> On Tue, Mar 30, 2010 at 2:27 PM, Nathan Rixham wrote:
>
>> nope never been able to find any significant advantage; and thus ended
>> up using http uri's in my own domain space(s) which are always
>> guaranteed to be unique as I'm issuing them. bonus is that they can be
>> dere
On Wed, Mar 31, 2010 at 2:41 AM, Auto-Deppe C. Hänsel
wrote:
> Good day all,
>
> since I am driving 2 hrs each day listening to either my radio or the songs
> on my USB drive, I was wondering whether there are some web dev related
> audio books for download out there.
>
> I have been searching the
Tommy Pham wrote:
> On Wed, Mar 31, 2010 at 2:41 AM, Auto-Deppe C. Hänsel
> wrote:
>> Good day all,
>>
>> since I am driving 2 hrs each day listening to either my radio or the songs
>> on my USB drive, I was wondering whether there are some web dev related
>> audio books for download out there.
>>
Any replies I send to PHP-INSTALL list, I get the follow response:
Any ideas why this is happening ?
Original Message
Subject:Re: [PHP-INSTALL] installation problem with php and Apache
[Incident:100331-000506]
Date: Wed, 31 Mar 2010 06:48:44 -0400 (EDT)
From: Abuse D
On Wed, Mar 31, 2010 at 2:57 AM, Nathan Rixham wrote:
> Tommy Pham wrote:
>> On Tue, Mar 30, 2010 at 2:27 PM, Nathan Rixham wrote:
>>
>>> nope never been able to find any significant advantage; and thus ended
>>> up using http uri's in my own domain space(s) which are always
>>> guaranteed to be
Tommy Pham wrote:
>
> As for spatial data types, I've never find much use for non scientific
> related. (example) If using point as a PK, if MySQL stores it the
> same way as PostgreSQL which is 16 bytes, how is that any different -
> performance wise - than using UUID and storing it as binary(16
>Have you consider getting an ebook (preferably PDF as Windows'
>Narrator, if you're using Windows, works really well with Acrobat) on
>the subject you're interested then use a TTS, like Windows' Narrator,
>and record it on your system as an alternative solution? Using this
>approach would be more
Hi there,
Here is a snippet of code... that doesn't work for some reason. Please note
that I have put some
@mysql_query($query) or die(mysql_error());
statements, to see if MySQL gives an error. I receive nothing other than the
file starting to download. This is supposed to be a file download c
On Wed, 2010-03-31 at 16:20 +0430, Parham Doustdar wrote:
> Hi there,
> Here is a snippet of code... that doesn't work for some reason. Please note
> that I have put some
>
> @mysql_query($query) or die(mysql_error());
>
> statements, to see if MySQL gives an error. I receive nothing other than
Hello Parham,
Adding to Ash's question, why to use the @ operator before
mysql_query?
--
With best regards from Ukraine,
Andre
Skype: Francophile; Wlm&MSN: arthaelon @ yandex.ru; Jabber: arthaelon @
jabber.org
Yahoo! messenger: andre.polykanine; ICQ: 191749952
Twitter: m_elensule
- Original
Andre,
The @ operator is used for error catching statements. When you put:
@mysql_connect('localhost', 'username', 'password') or die('Could not
connect.');
If PHP fails to make a connection, the script execution is stopped, and the
error message between the apostrophes is given.
And, I fou
Hi!
To view error:
you must use mysql_query(). @ before mysql - error supression.
next
you can use the following:
$result=..
if($result){
if(mysql_num_rows($result)){
/* you have record in table */
}else{
/* you haven't */
On Wed, Mar 31, 2010 at 4:11 PM, Andre Polykanine wrote:
> Hel
Hello Parham,
I know what the @ operator does (it stops PHP from reporting errors
and makes it ignore error_reporting() or any INI directives) but I
don't understand why to use it here, with mysql_query() function.
--
With best regards from Ukraine,
Andre
Skype: Francophile; Wlm&MSN: arthaelon @
On Sun, Mar 28, 2010 at 4:22 AM, Gary wrote:
> Perfect, thank you very much for your help!
>
> Gary
>
>
> "Yousif Masoud" wrote in message
> news:x2tbffe24ad1003271548l65cb6e65qd8f35ae0636e...@mail.gmail.com...
> > On Sat, Mar 27, 2010 at 10:26 PM, Gary wrote:
> >
> >> [...]
> >>
> >
> > $end_d
Hello Jorge,
Hm... that seems quite fine) If I don't manage to deal with JotBug,
will try Flyspray, thanks!
--
With best regards from Ukraine,
Andre
Skype: Francophile; Wlm&MSN: arthaelon @ yandex.ru; Jabber: arthaelon @
jabber.org
Yahoo! messenger: andre.polykanine; ICQ: 191749952
Twitter: m_el
On Wed, 2010-03-31 at 16:50 +0430, Parham Doustdar wrote:
> Andre,
> The @ operator is used for error catching statements. When you put:
>
> @mysql_connect('localhost', 'username', 'password') or die('Could not
> connect.');
>
> If PHP fails to make a connection, the script execution is stopped
From: Auto-Deppe C. Hänsel
> since I am driving 2 hrs each day listening to either my
> radio or the songs
> on my USB drive, I was wondering whether there are some
> web dev related
> audio books for download out there.
I have only one recommendation. DON'T DO IT!
Driving a vehicle on public hi
Yes ash.. me too think the same... @ will supress any error which would have
lead to die()... so die() wont come ever
Midhun Girish
On Wed, Mar 31, 2010 at 6:16 PM, Ashley Sheridan
wrote:
> On Wed, 2010-03-31 at 16:50 +0430, Parham Doustdar wrote:
>
> > Andre,
> > The @ operator is used fo
> -Original Message-
> From: Bob McConnell [mailto:r...@cbord.com]
> Sent: Wednesday, March 31, 2010 2:52 PM
> To: php-general@lists.php.net
> Subject: RE: [PHP] Audiobooks for Developers
>
> From: Auto-Deppe C. Hänsel
>
> > since I am driving 2 hrs each day listening to either my
> > rad
On Wed, 2010-03-31 at 15:01 +0200, Auto-Deppe C. Hänsel wrote:
> > -Original Message-
> > From: Bob McConnell [mailto:r...@cbord.com]
> > Sent: Wednesday, March 31, 2010 2:52 PM
> > To: php-general@lists.php.net
> > Subject: RE: [PHP] Audiobooks for Developers
> >
> > From: Auto-Deppe C.
On Wed, Mar 31, 2010 at 8:46 AM, Ashley Sheridan
wrote:
> On Wed, 2010-03-31 at 16:50 +0430, Parham Doustdar wrote:
>
>> Andre,
>> The @ operator is used for error catching statements. When you put:
>>
>> @mysql_connect('localhost', 'username', 'password') or die('Could not
>> connect.');
>>
>> If
hey Andrew ,
you are correct thanks for pointing tht.. i should have checked it
before so @ just prevents the warnings and errors from showing up
Midhun Girish
On Wed, Mar 31, 2010 at 6:38 PM, Andrew Ballard wrote:
> On Wed, Mar 31, 2010 at 8:46 AM, Ashley Sheridan
> wrote:
> > On
On Wed, Mar 31, 2010 at 3:50 AM, Nilesh Govindarajan wrote:
> Any replies I send to PHP-INSTALL list, I get the follow response:
> Any ideas why this is happening ?
>
> Original Message
> Subject: Re: [PHP-INSTALL] installation problem with php and Apache
> [Incident:10033
On Wed, Mar 31, 2010 at 9:08 AM, Andrew Ballard wrote:
> Nope. All it does is suppress the error message. Just try it:
>
>
> @mysql_connect('localhost', 'baduser', 'badpassword') or die('Could
> not connect');
>
> ?>
>
> Output:
> Could not connect
>
> @mysql_connect('localhost', 'baduser', 'bad
On Wed, Mar 31, 2010 at 6:02 AM, Ashley Sheridan
wrote:
> On Wed, 2010-03-31 at 15:01 +0200, Auto-Deppe C. Hänsel wrote:
>
>> > -Original Message-
>> > From: Bob McConnell [mailto:r...@cbord.com]
>> > Sent: Wednesday, March 31, 2010 2:52 PM
>> > To: php-general@lists.php.net
>> > Subject:
On Wed, 2010-03-31 at 06:54 -0700, Tommy Pham wrote:
> > There is also the learning technique of listening to audio books whilst
> > sleeping. Not sure if I hold too much truck with that, but it's an
> > option!
In the past while we were on the road there were no telephone calls and
we could enjoy
Hi All,
I have a web project built in PHP which we want to break out part of into a
stand-alone GUI program. The architecture is fine - display nicely separated
from logic, so coding is not a problem.
What I can't work out is what to use for the GUI part. I looked at phpqt but I
can't (yet) ge
On Wed, 2010-03-31 at 15:30 +0100, Pete Ford wrote:
> Hi All,
>
> I have a web project built in PHP which we want to break out part of into a
> stand-alone GUI program. The architecture is fine - display nicely separated
> from logic, so coding is not a problem.
> What I can't work out is what
On 31/03/10 15:30, Ashley Sheridan wrote:
On Wed, 2010-03-31 at 15:30 +0100, Pete Ford wrote:
Hi All,
I have a web project built in PHP which we want to break out part of into a
stand-alone GUI program. The architecture is fine - display nicely separated
from logic, so coding is not a problem.
On 31 March 2010 15:48, Pete Ford wrote:
> Two pints at lunchtime, mainly :)
Excellent reason to not do any coding today.
Makes tomorrow less of a "revert commit" day.
--
-
Richard Quadling
"Standing on the shoulders of some very clever giants!"
EE : http://www.experts-exchange.com/M_248
On 31/03/10 15:30, Ashley Sheridan wrote:
On Wed, 2010-03-31 at 15:30 +0100, Pete Ford wrote:
Hi All,
I have a web project built in PHP which we want to break out part of into
a stand-alone GUI program. The architecture is fine - display nicely
separated from logic, so coding is not a problem.
On Wed, 2010-03-31 at 16:48 +0100, Pete Ford wrote:
> On 31/03/10 15:30, Ashley Sheridan wrote:
> > On Wed, 2010-03-31 at 15:30 +0100, Pete Ford wrote:
> >
> >> Hi All,
> >>
> >> I have a web project built in PHP which we want to break out part of into
> >> a stand-alone GUI program. The architect
At 4:20 PM +0430 3/31/10, Parham Doustdar wrote:
Hi there,
Here is a snippet of code... that doesn't work for some reason. Please note
that I have put some
@mysql_query($query) or die(mysql_error());
statements, to see if MySQL gives an error. I receive nothing other than the
file starting to d
On Wed, Mar 31, 2010 at 06:50, Nilesh Govindarajan wrote:
> Any replies I send to PHP-INSTALL list, I get the follow response:
> Any ideas why this is happening ?
>
> Original Message
> Subject: Re: [PHP-INSTALL] installation problem with php and Apache
> [Incident:100331-
At 4:45 PM +0100 3/31/10, Ashley Sheridan wrote:
On Wed, 2010-03-31 at 16:48 +0100, Pete Ford wrote:
-snip-
> If you have any light to shed, then let me know. The php-qt
mailing list seems a
bit empty at the moment...
Cheers
Pete
Sorry, about the closest I've got to QT is probably to u
Hi,
I ran the following code snippet on Windows IIS 7, in my index.php file and
it worked fine. But when run it on Linux, the "die" code is executed.
Is there an include file or something else I need to to process this on a
linux server?
Redirecting... Please Wait';
/*
redirect('wel
Check your php.ini , look for output_buffering
2010/3/31 King Coffee :
> Hi,
>
> I ran the following code snippet on Windows IIS 7, in my index.php file and
> it worked fine. But when run it on Linux, the "die" code is executed.
>
> Is there an include file or something else I need to to process t
On Wed, 2010-03-31 at 11:32 -0500, King Coffee wrote:
> Hi,
>
> I ran the following code snippet on Windows IIS 7, in my index.php file and
> it worked fine. But when run it on Linux, the "die" code is executed.
>
> Is there an include file or something else I need to to process this on a
> li
Hello people!
A time before I had issues with my php 5.2.3 that would not fork anything,
neither in shell or via apache, and I figured out that commenting out the
snmp.so extension from php.ini made it fork commands passed to php cli with
an unprivileged user (www) fine, however apache still w
Hi!
I am having this issue on my Apache 2.2.13 webserver running PHP 5.2.3 on a
Kernel 2.6.30.4 Linux Box.
error_log:
[Sat Mar 20 23:41:34 2010] [error] [client 127.0.0.1] PHP Warning: exec()
[function.exec]: Unable to fork [cat
/proc/loadavg] in /server/apache/htdocs/test.php on line 3
The co
On Wed, 2010-03-31 at 12:23 -0400, tedd wrote:
> I work on a Mac and I would very much like to create a "stand-alone"
> application from my php scripts, but I am clueless as to how to do
> this.
>
> If anyone has done this on a Mac, I would be very interested in
> knowing how you did it.
There
Ashley Sheridan wrote:
> On Wed, 2010-03-31 at 11:32 -0500, King Coffee wrote:
>
>> Hi,
>>
>> I ran the following code snippet on Windows IIS 7, in my index.php file and
>> it worked fine. But when run it on Linux, the "die" code is executed.
>>
>> Is there an include file or something else I nee
After looking up the === operator, I see exactly what you mean. Thanks for
your help everyone. I think the confusion was that I was always under the
impression that assignment is either true or false; I would never have
guessed it was equal to the value assigned. Your examples really helped to
soli
Matty Sarro wrote:
> Hey all!
> This is probably my second post on the list, so please be gentle. Right now
> I am running through the "Heads First PHP and MySQL" book from O'Reilly.
> It's been quite enjoyable so far, but I have some questions about some of
> the code they're using in one of the c
On 03/31/10 19:14, Tommy Pham wrote:
On Wed, Mar 31, 2010 at 3:50 AM, Nilesh Govindarajan wrote:
Any replies I send to PHP-INSTALL list, I get the follow response:
Any ideas why this is happening ?
Original Message
Subject:Re: [PHP-INSTALL] installation problem with p
On 03/31/10 21:43, Daniel Brown wrote:
On Wed, Mar 31, 2010 at 06:50, Nilesh Govindarajan wrote:
Any replies I send to PHP-INSTALL list, I get the follow response:
Any ideas why this is happening ?
Original Message
Subject:Re: [PHP-INSTALL] installation problem with p
At 5:56 PM -0700 3/30/10, Tommy Pham wrote:
On Tue, Mar 30, 2010 at 2:27 PM, Nathan Rixham wrote:
nope never been able to find any significant advantage; and thus ended
up using http uri's in my own domain space(s) which are always
guaranteed to be unique as I'm issuing them. bonus is that
On Wed, Mar 31, 2010 at 4:06 AM, Nathan Rixham wrote:
> Tommy Pham wrote:
>>
>> As for spatial data types, I've never find much use for non scientific
>> related. (example) If using point as a PK, if MySQL stores it the
>> same way as PostgreSQL which is 16 bytes, how is that any different -
>> p
On Wed, Mar 31, 2010 at 10:24 AM, Nilesh Govindarajan wrote:
> No I don't have any problems. I was replying to one's problem.
>
My mistake :)
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Tommy Pham wrote:
> On Wed, Mar 31, 2010 at 4:06 AM, Nathan Rixham wrote:
>> Tommy Pham wrote:
>>> As for spatial data types, I've never find much use for non scientific
>>> related. (example) If using point as a PK, if MySQL stores it the
>>> same way as PostgreSQL which is 16 bytes, how is that
On Wed, Mar 31, 2010 at 10:23 AM, tedd wrote:
> At 5:56 PM -0700 3/30/10, Tommy Pham wrote:
>>
>> On Tue, Mar 30, 2010 at 2:27 PM, Nathan Rixham wrote:
>>
>>> nope never been able to find any significant advantage; and thus ended
>>> up using http uri's in my own domain space(s) which are alway
At 11:08 AM -0700 3/31/10, Tommy Pham wrote:
On Wed, Mar 31, 2010 at 10:23 AM, tedd wrote:
At 5:56 PM -0700 3/30/10, Tommy Pham wrote:
On Tue, Mar 30, 2010 at 2:27 PM, Nathan Rixham wrote:
nope never been able to find any significant advantage; and thus ended
up using http uri's in m
On Wed, Mar 31, 2010 at 11:01 AM, Nathan Rixham wrote:
> Tommy Pham wrote:
>> On Wed, Mar 31, 2010 at 4:06 AM, Nathan Rixham wrote:
>>> Tommy Pham wrote:
As for spatial data types, I've never find much use for non scientific
related. (example) If using point as a PK, if MySQL stores it
Thanks,
I think Output_Buffering may be the difference on the two servers. I had a
default php.ini on the Linux server but not on the Windows server. But for
now, I remove the echo statement.
Thank,
King
"jose javier parra sanchez" wrote in message
news:r2j99f1636c1003310941xdc809603l774b40
On Wed, Mar 31, 2010 at 11:16 AM, tedd wrote:
>
> I didn't say otherwise.
>
> At some point, you asked how others solve the unique problem and I provided
> my solution.
>
> Cheers,
>
> tedd
>
Sorry, I misread that.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://
Thanks you Nathan.
That worked.
Sincerely,
King
"Nathan Rixham" wrote in message
news:4bb37e7e.5040...@gmail.com...
Ashley Sheridan wrote:
On Wed, 2010-03-31 at 11:32 -0500, King Coffee wrote:
Hi,
I ran the following code snippet on Windows IIS 7, in my index.php file
and
it worked fine.
On Wed, Mar 31, 2010 at 11:25 AM, King Coffee wrote:
> Thanks,
> I think Output_Buffering may be the difference on the two servers. I had a
> default php.ini on the Linux server but not on the Windows server. But for
> now, I remove the echo statement.
>
> Thank,
> King
>
> "jose javier parra sanc
Tommy Pham wrote:
> On Wed, Mar 31, 2010 at 11:01 AM, Nathan Rixham wrote:
>> Tommy Pham wrote:
>>> On Wed, Mar 31, 2010 at 4:06 AM, Nathan Rixham wrote:
Tommy Pham wrote:
> As for spatial data types, I've never find much use for non scientific
> related. (example) If using point as
Compiling without mysql support, the cli "php -r 'echo shell_exec("echo
Test!");' works fine even as the apache unprivileged user. However when
running the test.php script with apache the error log still shows the error
Unable to execute / Unable to fork ...
""Eduardo Nunes"" escreveu na men
Eduardo Nunes wrote:
> Compiling without mysql support, the cli "php -r 'echo shell_exec("echo
> Test!");' works fine even as the apache unprivileged user. However when
> running the test.php script with apache the error log still shows the
> error Unable to execute / Unable to fork ...
back in 5.
On 04/01/10 02:21, Eduardo Nunes wrote:
Compiling without mysql support, the cli "php -r 'echo shell_exec("echo
Test!");' works fine even as the apache unprivileged user. However when
running the test.php script with apache the error log still shows the
error Unable to execute / Unable to fork ..
69 matches
Mail list logo