Re: [PHP] MS SQL extension not loading

2006-04-13 Thread Laszlo Nagy
Tim Huntley írta: Maybe this was already asked, but are you running 64bit Windows Server 2003 on that box? I've heard there's some wonkiness getting PHP and the various extensions to work on 64bit Windows. I'll ask this. c:\windows\system32\logfiles\W3SVC848989038\ Don't ask me why. :-)

Re: [PHP] Re: RADICORE ramework released

2006-04-13 Thread Tony Marston
"Hans Juergen von Lengerke" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] >> From: Tony Marston <[EMAIL PROTECTED]> >> >> Any problems with locale are cased by having the language >> code in your browser set to something which cannot be >> matched up with the contents of the server'

[PHP] Re: RADICORE ramework released

2006-04-13 Thread Barry
Tony Marston wrote: "Barry" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] Tony Marston wrote: What do you mean "it doesn't work"? Do you mean my online demo, or when you try to run it on your machine? What are your settings? What language have you got defined in your browser?

Re: [PHP] Re: RADICORE ramework released

2006-04-13 Thread Hans Juergen von Lengerke
> From: Tony Marston <[EMAIL PROTECTED]> > > Any problems with locale are cased by having the language > code in your browser set to something which cannot be > matched up with the contents of the server's locale file. > If it cannot find a match my software is supposed to keep > the current defau

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Tony Marston
"Kevin Waterson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > This one time, at band camp, "Tony Marston" > <[EMAIL PROTECTED]> wrote: > >> Announcing the first public release of RADICORE, a Rapid Application >> Development toolkit for building administrative web applications wh

[PHP] Re: RADICORE ramework released

2006-04-13 Thread Tony Marston
"Barry" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Tony Marston wrote: >> What do you mean "it doesn't work"? Do you mean my online demo, or when >> you try to run it on your machine? What are your settings? What language >> have you got defined in your browser? Where did you

Re: [PHP] internationalization of web site

2006-04-13 Thread kmh496
i put the files in one place for you. to do what you want. http://www.sirfsup.com/code/php/i18n_php/http_server_encoding 2006-04-12 (수), 16:24 -0300, Martin Alterisio "El Hombre Gris" 쓰시길: > Ussually, the browsers send a header with information about the language > preferences of the user. > This

Re: [PHP] CURLOPT_BINARYTRANSFER

2006-04-13 Thread Ahmed Saad
Hi Richard, On 4/12/06, Richard Lynch <[EMAIL PROTECTED]> wrote: > I need the cookies and all that... There's a PHP implementation of an HTTP client at http://www.phpclasses.org/browse/package/576.html Even if you needed to tweak something, it should be easier to modify and debug good luck /ahm

[PHP] Re: RADICORE ramework released

2006-04-13 Thread Barry
Tony Marston wrote: What do you mean "it doesn't work"? Do you mean my online demo, or when you try to run it on your machine? What are your settings? What language have you got defined in your browser? Where did you see the message "Locale is not defined in string '**UNDEFINED**'" If you can

Re: [PHP] RADICORE ramework released

2006-04-13 Thread Kevin Waterson
This one time, at band camp, "Tony Marston" <[EMAIL PROTECTED]> wrote: > Announcing the first public release of RADICORE, a Rapid Application > Development toolkit for building administrative web applications which **YAWN** -- "Democracy is two wolves and a lamb voting on what to have for

[PHP] Re: RADICORE ramework released

2006-04-13 Thread Tony Marston
What do you mean "it doesn't work"? Do you mean my online demo, or when you try to run it on your machine? What are your settings? What language have you got defined in your browser? Where did you see the message "Locale is not defined in string '**UNDEFINED**'" If you cannot provide more infor

[PHP] Re: RADICORE ramework released

2006-04-13 Thread Barry
Tony Marston wrote: Announcing the first public release of RADICORE, a Rapid Application Development toolkit for building administrative web applications which contains the following: a.. A true rapid application development framework which is based around Transaction Patterns. b.. A dynamic

[PHP] RADICORE ramework released

2006-04-13 Thread Tony Marston
Announcing the first public release of RADICORE, a Rapid Application Development toolkit for building administrative web applications which contains the following: a.. A true rapid application development framework which is based around Transaction Patterns. b.. A dynamic Menu system. c.. A

Re: [PHP] preventing duplicate rows?

2006-04-13 Thread Georgi Ivanov
You have several opportunities here : 1.If you use mysql 4.1.x you can use "insert into .. on duplicate key update" (check the correct syntax) 2.You can make unique key from the two columns and check for error number 1062 (duplicate key) like this : myusql_query($qins) or $errno=mysql_errno();

Re: [PHP] Re: double lines

2006-04-13 Thread Martin Zvarík
Barry wrote: clive wrote: Does the html add in \r. Normally not. But the mailing function might do. Replace every \n with and every \r with with str_replace And probably you see where the problem is It's because of the operation system. Win32 and Linux works different. Linux adds ex

Re: [PHP] Instalation Nightmares For Word Press Please Help

2006-04-13 Thread Anthony Ettinger
wtf is your username = localhost, and your password = root? that's probably where you messed up ;-) On 4/12/06, Jochem Maas <[EMAIL PROTECTED]> wrote: > > marvin hunkin wrote: > > Hi. > > yes did put the wp-Config.php file in the www folder in easy php 1-8, > > wp-config.php NOT wp-Config.php ?

Re: [PHP] PHP Framework alternative ...

2006-04-13 Thread Jochem Maas
Robert Cummings wrote: On Wed, 2006-04-12 at 19:23, Jochem Maas wrote: Robert Cummings wrote: I must say that I have questions regarding the 'real' reasons behind The most plausible real reason is to give Zend's name to a framework that will possibly rally interest behind a single framework

Re: [PHP] PHP Framework alternative ...

2006-04-13 Thread Jochem Maas
Chris Shiflett wrote: Jochem Maas wrote: a. php will actually implement static late binding b. Zend Framework's 'DataObject' class will make use of said late binding to do cool things like Person::findAll( $myFilter ) with out having to actually implement a findAll method in the Person class

Re: [PHP] preventing duplicate rows?

2006-04-13 Thread nicolas figaro
William Stokes a écrit : Hello, I'm updating a table with following SQL statement $sql = "INSERT INTO x_ikaluokat (ryhma, ikaluokka) VALUES ('$ryhma','$ikaluokka')"; What would be the best way to test that similar rows doesn't get created to the table? I can't make both columns unique.

Re: [PHP] preventing duplicate rows?

2006-04-13 Thread Chris
William Stokes wrote: Hello, I'm updating a table with following SQL statement $sql = "INSERT INTO x_ikaluokat (ryhma, ikaluokka) VALUES ('$ryhma','$ikaluokka')"; What would be the best way to test that similar rows doesn't get created to the table? I can't make both columns unique. You

Re: [PHP] Instalation Nightmares For Word Press Please Help

2006-04-13 Thread Jochem Maas
marvin hunkin wrote: Hi. yes did put the wp-Config.php file in the www folder in easy php 1-8, wp-config.php NOT wp-Config.php ?? but still get this error when trying to use the http://localhost/instal.php so how do i get round this one? ask the guys at wordpress I guess. we don't support

<    1   2