Re: [PHP] Rapid application development

2006-10-04 Thread Manuel Lemos
Hello, I need your feedback in this What is the best RAD (Rapid application development) do you use for PHP to develop an *advance* application in few days or weeks ? I like programming but one this that I hate is the first stage of programming when you start creating the basic code (db

Re: [PHP] Re: Re: Re: Frustrated trying to get help from your site

2006-10-04 Thread Robin Vickery
On 03/10/06, David Robley [EMAIL PROTECTED] wrote: Michelle Konzack wrote: Am 2006-09-27 17:39:25, schrieb David Robley: 88 tons!! Point us to an image of that please. Currently not availlable but it is an ex Pershing II Transporter from the US-Army manufactured by the german Enterprise

[PHP] Re: file to blob

2006-10-04 Thread Manuel Lemos
Hello, on 10/03/2006 04:38 PM Joshua Capy said the following: I am relatively new to php and could use a good pointing in the right direction. I have a soap client in NuSoap that I developed for a webservice that I wrote in another language and I need it to be able to send a file in a

[PHP] Re: file to blob

2006-10-04 Thread Manuel Lemos
Hello, Sorry, I sent the message too soon. The HTTP client class is here: http://www.phpclasses.org/httpclient on 10/03/2006 04:38 PM Joshua Capy said the following: I am relatively new to php and could use a good pointing in the right direction. I have a soap client in NuSoap that I

Re: [PHP] test

2006-10-04 Thread Philipp Schwarz
Stupid? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Strange error in PHP/MySQL

2006-10-04 Thread Ivo F.A.C. Fokkema
On Sun, 01 Oct 2006 19:59:08 +0100, Deckard wrote: Hello, I have this code: // insert new user in mysql user table $sqlInsertUser = INSERT INTO user (Host, User , Password , Select_priv, Insert_priv, Update_priv, Delete_priv) VALUES ('$hostname', '$mysql_username', '$mysql_password',

Re: [PHP] RE:[PHP] Client Computer Registration

2006-10-04 Thread Wesley Acheson
I don't see how its that much of a secuity risk, they create a ssh tunnel. All it does is add an extra layer of authentication. Its not like the password requirements are bypassed. On 10/3/06, Richard Lynch [EMAIL PROTECTED] wrote: On Tue, October 3, 2006 2:33 am, Wesley Acheson wrote: They

[PHP] Re: Understanding persistent connections with oci8

2006-10-04 Thread Manuel Lemos
Hello, on 10/03/2006 07:03 PM Mendonce, Kiran (STSD) said the following: This is a follow up to the bug (#39029) that I reported earlier which has been repeatedly closed as bogus. The oci8.persistent_timeout setting in the php.ini file is documented as : The maximum length of time (in

[PHP] want to create new format for fckeditor's combo box...

2006-10-04 Thread Bipul Dobhal
Hi, How can i create my own formats for fckeditors combo box.. I found the line FCKConfig.FontFormats='p;dic'pre;address;h1;h2;h3;h4;h5;h6'; in fckconfig.js file. I think by setting my own format in this line may handle this problem because when I added any word or letter in this

Re: [PHP] Re: xsl + xml

2006-10-04 Thread José Manuel Peso
Colin Guthrie escribió: José Manuel Peso Echarri wrote: Hi people, I am looking for a library that mix xsl and xml producing output in xhtml at server side. I have readed about sablotron and libxsl, but i am confused. Which is the best alternative in perfomance terms for the versions 4.2,

[PHP] Re: Test

2006-10-04 Thread David Robley
Sheena Mullally wrote: test Sorry, you failed. Cheers -- David Robley This tag is devoid of any humor. Today is Boomtime, the 58th day of Bureaucracy in the YOLD 3172. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PHP-DB] textarea value assignment

2006-10-04 Thread Stut
Bradley, There are words to describe people like you, but this list tends to be quite clean so I'll refrain. Bradley, meet /dev/null, I hope you'll be very happy together! -Stut (I'm thinking this fscker has set up an automated response system - someone at PHP must be able to unsubscribe

[PHP] Re: want to create new format for fckeditor's combo box...

2006-10-04 Thread Kae Verens
Bipul Dobhal wrote: Hi, How can i create my own formats for fckeditors combo box.. I found the line FCKConfig.FontFormats='p;dic'pre;address;h1;h2;h3;h4;h5;h6'; in fckconfig.js file. I think by setting my own format in this line may handle this problem because when I added any

[PHP] Class sqlite2pgsql - Export from sqlite to Import in postgresql

2006-10-04 Thread Jônata Tyska Carvalho
Hi people, Im working in a class that export a database from sqlite to postgresql. I will finish my work soon and my doubt is: This class is useful for the php programers comunnity or is useless because everybody that need to use this, already develop a class like that ? I needed to do this

Re: [PHP] changing the global variables (_SERVER[HTTP_USER_AGENT])

2006-10-04 Thread Richard Lynch
Register Globals will take all the keys/values in $_SERVER/$_POST/$_GET/$_COOKIES and turn each one into a variable in your script. It is equivalent to: extract($_POST); extract($_GET); extract($_COOKIE); . . . The GPC settings in php.ini determine the order of the above statements, in case

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-04 Thread Mendonce, Kiran (STSD)
I understand the performance boost one can get by reusing existing connections. And I did see for myself that with the default settings, oci_pconnect() does reuse all the connections. But what should happen if there are idle connections and the timeout is reached ? That is my question. What is

[PHP] PHP jump to other page

2006-10-04 Thread Groundhog
how can I jump to another page after IF..ELSE statement, for example: IF (statement == TRUE) { stay on this page, index.php } ELSE { jump to index2.php} -- Come and Visit My Blog http://ubuntu-ku.blogspot.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] File Uploads not working over SSL

2006-10-04 Thread Rahul S. Johari
Ave, I have a File Manager application in place for over 2 years now. Everything¹s been working groovy! Until yesterday. Yesterday we purchased and installed an SSL Certificate. And now the uploads are not working anymore! Gets the ³Page cannot be displayed² error. Tried the same application

Re: [PHP] PHP jump to other page

2006-10-04 Thread Jo�o C�ndido de Souza Neto
In other hand, if you sent any character yet, you can use. IF (statement == TRUE) stay on this page, index.php ELSE echo script language=\javascript\window location=\index2.php\;/script; AraDaen [EMAIL PROTECTED] escreveu na mensagem news:[EMAIL PROTECTED] If you have not sent any

Re: [PHP] File Uploads not working over SSL

2006-10-04 Thread Jo�o C�ndido de Souza Neto
Please, show us your code. Rahul S. Johari [EMAIL PROTECTED] escreveu na mensagem news:[EMAIL PROTECTED] Ave, I have a File Manager application in place for over 2 years now. Everything¹s been working groovy! Until yesterday. Yesterday we purchased and installed an SSL Certificate. And now the

Re: [PHP] File Uploads not working over SSL

2006-10-04 Thread Rahul S. Johari
Well, the File Manager application itself is pretty extensive... But if you're looking for the upload code, here it is (sensitive information erased): if($upload_file) { $db = mysql_connect(localhost,usr,pwd);

Re: [PHP] File Uploads not working over SSL

2006-10-04 Thread Rahul S. Johari
Sorry, copied wrong code to you. Actually code has https in it: form method=post action=https://www.myurl.com/imsafm2_main.php; name=upload_form enctype=multipart/form-data On 10/4/06 4:55 PM, Andrew Brampton [EMAIL PROTECTED] wrote: form method=post

[PHP] quick question about preg_replace

2006-10-04 Thread Martin Bach Nielsen
Hi all. I have written a guestbook (I know, there's a ton out there), which until recently did not get any spam, so now I'm trying to remove the spam-ad by using preg_replace: $melding = preg_replace('/(a href=\http:\/\/[^^]+)/i', This message is temporarily cut-off due to spam-suspicion.,

Re: [PHP] WebMail client

2006-10-04 Thread Christopher Weldon
Peter Lauri wrote: Hi, Do you have any suggestion on WebMail clients written in PHP that is good and easy to install? http://hastymail.sourceforge.net/ -- Christopher Weldon -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: file to blob

2006-10-04 Thread Curt Zirzow
On 10/4/06, Manuel Lemos [EMAIL PROTECTED] wrote: Hello, Sorry, I sent the message too soon. The HTTP client class is here: http://www.phpclasses.org/httpclient I'm wondering how soap has to do with this. Curt -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Really strange

2006-10-04 Thread Deckard
Hi, I have this line of code: include_once('../config.inc.php'); I'm 100% sure that the file config.inc.php is a directory up. config.inc.php is in /var/www/html and the file that calls it is in /var/www/html/classes nevertheless, i'm getting the error: Warning: main(../config.inc): failed to

[PHP] Re: Really strange

2006-10-04 Thread Ben Ramsey
On 10/4/06 8:32 PM, Deckard wrote: Hi, I have this line of code: include_once('../config.inc.php'); I'm 100% sure that the file config.inc.php is a directory up. config.inc.php is in /var/www/html and the file that calls it is in /var/www/html/classes nevertheless, i'm getting the error:

Re: [PHP] Re: Really strange / TYPO

2006-10-04 Thread Deckard
Hi, It's a typo. The file is really config.inc.php everywhere Regards, Deckard Ben Ramsey wrote: On 10/4/06 8:32 PM, Deckard wrote: Hi, I have this line of code: include_once('../config.inc.php'); I'm 100% sure that the file config.inc.php is a directory up. config.inc.php is in

Re: [PHP] PHP jump to other page

2006-10-04 Thread Penthexquadium
On Thu, 5 Oct 2006 01:17:41 +0700, Groundhog [EMAIL PROTECTED] wrote: how can I jump to another page after IF..ELSE statement, for example: IF (statement == TRUE) { stay on this page, index.php } ELSE { jump to index2.php} -- Come and Visit My Blog http://ubuntu-ku.blogspot.com

Re: [PHP] WebMail client

2006-10-04 Thread Glenn Richmond
http://www.roundcube.net/ I can't say enough good things about the roundcube project. Ajax-based, like a desktop email client in a browser. Still got some minor bugs, but works pretty well. Note that it's still a Beta at this point. Cheers, Glenn. Christopher Weldon wrote: Peter Lauri wrote:

Re: [PHP] quick question about preg_replace

2006-10-04 Thread Penthexquadium
On Wed, 4 Oct 2006 23:19:58 +0200, Martin Bach Nielsen [EMAIL PROTECTED] wrote: Hi all. I have written a guestbook (I know, there's a ton out there), which until recently did not get any spam, so now I'm trying to remove the spam-ad by using preg_replace: $melding =

Re: [PHP] Re: Really strange / TYPO

2006-10-04 Thread Ben Ramsey
On 10/4/06 9:14 PM, Deckard wrote: It's a typo. The file is really config.inc.php everywhere Check the file permissions. Does the Webserver have permission to read from the /var/www/html (it probably does, but it wouldn't hurt to check)? Does the Web server have permission to read

[PHP] Help on objects

2006-10-04 Thread Deckard
Hi, I'm trying to lay my hands on PHP OOP, but it's not easy :( I've read several examples in the web, but cannot transpose to may case. I'm trying to set a class to make SQL inserts in mysql. I have the class: - ?php class dBInsert {

Re: [PHP] Re: Really strange / TYPO

2006-10-04 Thread Deckard
Yes, permissions are fine :( Ben Ramsey wrote: On 10/4/06 9:14 PM, Deckard wrote: It's a typo. The file is really config.inc.php everywhere Check the file permissions. Does the Webserver have permission to read from the /var/www/html (it probably does, but it wouldn't hurt to check)? Does

Re: [PHP] Help on objects

2006-10-04 Thread Penthexquadium
On Thu, 05 Oct 2006 02:47:59 +0100, Deckard [EMAIL PROTECTED] wrote: Hi, I'm trying to lay my hands on PHP OOP, but it's not easy :( I've read several examples in the web, but cannot transpose to may case. I'm trying to set a class to make SQL inserts in mysql. I have the class:

Re: [PHP] WebMail client

2006-10-04 Thread Google Kreme
On 04 Oct 2006, at 19:28 , Glenn Richmond wrote: http://www.roundcube.net/ I can't say enough good things about the roundcube project. Ajax- based, like a desktop email client in a browser. Still got some minor bugs, but works pretty well. Note that it's still a Beta at this point.

[PHP] Re: OOP Hello World

2006-10-04 Thread Martin Alterisio
Me... again, still boring you to death with meaningless OOP rantings. First I would like to point out that there was a design mistake in what I proposed in the last mail (following afterwards): the Saluter shouldn't be an abstract class, it isn't correct to base your class hierarchy on the

Re: [PHP] Help on objects

2006-10-04 Thread Satyam
I've seen you already had a good answer on the errors in the code so I won't go on that. As for OOP, the one design error you have is that you are asking for an action, not an object. You want to make SQL inserts, that is your purpose, and that is an action, which is solved by a statement,