[PHP] Disable Soap Client and Soap Server in php5

2007-05-09 Thread Don Don
How can i disable soap client and server for php5, reason is that i've got NuSOAP (which i must use) and its classes clash with that of PHP5. My php configuration (when using phpinfo() displays soap client and server enabled for php5. I need to disable if ..amd looking into the configs..to

RE: [PHP] Disable Soap Client and Soap Server in php5

2007-05-09 Thread Brad Fuller
Don Don wrote: How can i disable soap client and server for php5, reason is that i've got NuSOAP (which i must use) and its classes clash with that of PHP5. My php configuration (when using phpinfo() displays soap client and server enabled for php5. I need to disable if ..amd looking into

RE: [PHP] Disable Soap Client and Soap Server in php5

2007-05-09 Thread Richard Lynch
On Wed, May 9, 2007 8:27 am, Brad Fuller wrote: Don Don wrote: How can i disable soap client and server for php5, reason is that i've got NuSOAP (which i must use) and its classes clash with that of PHP5. My php configuration (when using phpinfo() displays soap client and server enabled

Re: [PHP] Disable all caching

2006-10-11 Thread tedd
At 11:17 AM -0400 10/10/06, Benjamin Adams wrote: I have a php (ver 4.x) script that is being cached. I have placed: META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE but the page is still being cached. I'm not sure if its apache or the php. How can I disable all caching? is there something I

[PHP] Disable all caching

2006-10-10 Thread Benjamin Adams
I have a php (ver 4.x) script that is being cached. I have placed: META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE but the page is still being cached. I'm not sure if its apache or the php. How can I disable all caching? is there something I can set in php.ini? (Mac OS X Server) Thanks Ben

Re: [PHP] Disable all caching

2006-10-10 Thread Andrew Brampton
://uk2.php.net/header and googling for no cache will help. Andrew - Original Message - From: Benjamin Adams [EMAIL PROTECTED] To: php php php-general@lists.php.net Sent: Tuesday, October 10, 2006 4:17 PM Subject: [PHP] Disable all caching I have a php (ver 4.x) script that is being

RE: [PHP] Disable all caching

2006-10-10 Thread Brad Fuller
I have a php (ver 4.x) script that is being cached. I have placed: META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE but the page is still being cached. I'm not sure if its apache or the php. How can I disable all caching? is there something I can set in php.ini? (Mac OS X Server)

Re: [PHP] Disable all caching

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 10:17 am, Benjamin Adams wrote: I have a php (ver 4.x) script that is being cached. I have placed: META HTTP-EQUIV=CACHE-CONTROL CONTENT=NO-CACHE but the page is still being cached. I'm not sure if its apache or the php. How can I disable all caching? is there

RE: [PHP] Disable all caching

2006-10-10 Thread Kristen G. Thorson
-Original Message- From: Brad Fuller [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 12:55 PM To: php-general@lists.php.net Subject: RE: [PHP] Disable all caching I have a php (ver 4.x) script that is being cached. I have placed: META HTTP-EQUIV=CACHE-CONTROL CONTENT

[PHP] disable safe_mode with .htaccess ?

2005-09-05 Thread Wong HoWang
Hello everyone, I have a special question and want to ask here, hope anyone can answer me. My server is Apache/1.3.33 with PHP/4.3.10 I have AllowOverride All in my httpd.conf and safe_mode = On in php.ini , I want to turn off safe_mode in one folder by .htaccess , is it possiable? I don't

Re: [PHP] disable safe_mode with .htaccess ?

2005-09-05 Thread Rory Browne
By the looks of things you can't. safe_mode changability is set to PHP_INI_SYSTEM You may be able to put a Directory ... type setting into the httpd.conf file, and have apache re-read its config file by sending it a USR1 signal. As it is a production server you may want to test this on a dev

Re: [PHP] --disable-url-fopen-wrapper gone?

2004-10-06 Thread Paul Fierro
On 10/05/2004 12:03 PM, Marten Lehmann [EMAIL PROTECTED] wrote: Hello, one account of a user on our webserver was compromised using a feature of fopen to load external sources. As of the documentation, there shall be a configure option called --disable-url-fopen-wrapper. Unfortunately,

[PHP] --disable-url-fopen-wrapper gone?

2004-10-05 Thread Marten Lehmann
Hello, one account of a user on our webserver was compromised using a feature of fopen to load external sources. As of the documentation, there shall be a configure option called --disable-url-fopen-wrapper. Unfortunately, this option doesn't seem to exist in 4.3.9. How can I set a default for

[PHP] disable notice errors

2003-08-29 Thread fatih olcer
how to disable notice error output i have set error_reporting = 2039 (in PHP.ini); but it doesnt work.i still get notice :Undefined index.. RH9,PHP4 thanks for help. fatih. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] disable notice errors

2003-08-29 Thread Pete James
You have two solutions, one of which is better. A. Fix the problem, and define your indexes. B. Set error_reporting = E_ALL ~E_NOTICE I'd strongly recommend doing A before B, as PHP doesn't carp for the sake of carping. fatih olcer wrote: how to disable notice error output i have set

Re: [PHP] disable notice errors

2003-08-29 Thread Ernest E Vogelsinger
At 20:56 29.08.2002, fatih olcer said: [snip] how to disable notice error output i have set error_reporting = 2039 (in PHP.ini); but it doesnt work.i still get notice :Undefined index.. [snip] as a third method,

[PHP] Disable pic copy/save?

2003-01-23 Thread Anthony Rodriguez
Hi! A client wants to test market two versions of an advertising but wants to disable the users' ability to copy/save the ads (right click, copy/save). How can this be done in PHP? Thanks! Anthony F. Rodriguez ([EMAIL PROTECTED]) -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread Jason Wong
On Thursday 23 January 2003 17:52, Anthony Rodriguez wrote: Hi! A client wants to test market two versions of an advertising but wants to disable the users' ability to copy/save the ads (right click, copy/save). How can this be done in PHP? It can't be done, period. You need to get the data

RE: [PHP] Disable pic copy/save?

2003-01-23 Thread Clarkson, Nick
PROTECTED] Subject: [PHP] Disable pic copy/save? Hi! A client wants to test market two versions of an advertising but wants to disable the users' ability to copy/save the ads (right click, copy/save). How can this be done in PHP? Thanks! Anthony F. Rodriguez ([EMAIL PROTECTED]) -- PHP General

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread af
Not true -- you can use JavaScript to catch right-click events and do something creative with them, or disable them entirely. But that, of course, is a client-side scripting issue, which has nothing to do with server-side languages such as PHP. Cheers, Alex On Thursday 23 January 2003

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread Martin Hudec
H it might be done by checking which mouse button is pressed using javascript :) but i think this works only in Iexplore ;)...i used such code on my webpageit shows only copyright etcanyway user does not need to rightclik and save if he knows where is his browser cache located.

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread Negrea Mihai
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There is no client side solution. The only one I see is serverside: to put a text on the image, a bit transparent so that it does not affect very much the image but it can't be used. - -- Negrea Mihai http://www.negrea.net On Thursday 23 January

Re: [PHP] Disable pic copy/save?

2003-01-23 Thread MH
If someone wants your pic, he will take it, even if Alt+Print Screen is the last resort. The best way is to watermark it with text to make it unusable, but even with some patients this can be edited out if they want it badly enough. Mh Jason Wong [EMAIL PROTECTED] wrote in message [EMAIL

RE: [PHP] Disable pic copy/save?

2003-01-23 Thread Uttam
alternate to right click is Shift-F10 in IE which i think can not be handled by javascript. uttam -Original Message- From: Martin Hudec [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 15:47 To: [EMAIL PROTECTED] Subject: Re: [PHP] Disable pic copy/save? H it might

RE: [PHP] Disable session cookies

2002-12-21 Thread ed
I'm guessing then that it's possible to use only server side sessions and use trans_id then if you need to store values throughout a site? Ed On Fri, 20 Dec 2002, John W. Holmes wrote: Is there any way to disable using cookies in sessions? I haven't found a good reason to do this,

RE: [PHP] Disable session cookies

2002-12-21 Thread John W. Holmes
I'm guessing then that it's possible to use only server side sessions and use trans_id then if you need to store values throughout a site? Well, session are always server side, but, yes, basically. PHP must be compiled correctly so you can enable trans_sid. ---John W. Holmes... PHP Architect

[PHP] Disable session cookies

2002-12-20 Thread Evan Nemerson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Is there any way to disable using cookies in sessions? I haven't found a good reason to do this, only my boss's predisposition against cookies ;). Thanks in advance, Evan - -- A leader is the wave pushed ahead by the ship. - -Leo Nikolaevich

Re: [PHP] Disable session cookies

2002-12-20 Thread Evan Nemerson
Sorry about the double post- I got an error message (which i now realize was from a mirror), so i tried again. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Disable session cookies

2002-12-20 Thread John W. Holmes
Is there any way to disable using cookies in sessions? I haven't found a good reason to do this, only my boss's predisposition against cookies ;). Yep, session.use_cookies setting in php.ini. Set it to zero to not use cookies. ---John W. Holmes... PHP Architect - A monthly magazine for PHP

RE: [PHP] Disable refresh?

2002-12-02 Thread Ernest E Vogelsinger
At 02:41 02.12.2002, Martin Towell said: [snip] no, no way to disable and no variable to say a refresh happened one way to get around it is to submit to the page that does the update, then get that page to do a header(location...) to another page. When the

Re: [PHP] Disable refresh?

2002-12-02 Thread phpnew_bocket
you can use a session : - start the session when the form is first sent - destroy the session upon the first valid insert - subsequent upadates will be prevented since the session is destroyed.. usually multiple updates happens when the user hits the submit button several times or upon

Re: [PHP] Disable refresh?

2002-12-02 Thread Marek Kilimajer
Ernest E Vogelsinger wrote: This will not stop the user from hitting the Back button and refreshing the form... If the user wants it he can do it even with your method. My point is he don't do it unintentionally, so I use just the Location method -- PHP General Mailing List

[PHP] Disable refresh?

2002-12-01 Thread Larry Brown
Anyone know of a method of preventing a user from refreshing a page. I get multiple updates with the same information in my database... Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Disable refresh?

2002-12-01 Thread Larry Brown
If not, is there a variable that provides information that a refresh occurred to load the page? Larry S. Brown Dimension Networks, Inc. (727) 723-8388 -Original Message- From: Larry Brown [mailto:[EMAIL PROTECTED]] Sent: Sunday, December 01, 2002 8:23 PM To: PHP List Subject: [PHP

RE: [PHP] Disable refresh?

2002-12-01 Thread Martin Towell
Martin -Original Message- From: Larry Brown [mailto:[EMAIL PROTECTED]] Sent: Monday, December 02, 2002 12:33 PM To: PHP List Subject: RE: [PHP] Disable refresh? If not, is there a variable that provides information that a refresh occurred to load the page? Larry S. Brown Dimension Networks

RE: [PHP] Disable refresh?

2002-12-01 Thread Larry Brown
: [PHP] Disable refresh? Anyone know of a method of preventing a user from refreshing a page. I get multiple updates with the same information in my database... Hello! You can prevent it multiple ways. Two common solution: - When creating form, add a unique id to it in a hidden field. After

[PHP] disable html ?

2002-08-19 Thread Hawk
is there some way to disable html.. if someone posts a msg with /table my entire layout messes up :) I have no idea how to solve this, but it's messing with my brain, I tried the htmlspecialchars, but that didn't help :/ Håkan -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] disable html ?

2002-08-19 Thread Justin French
php.net/striptags Justin French on 20/08/02 11:07 AM, Hawk ([EMAIL PROTECTED]) wrote: is there some way to disable html.. if someone posts a msg with /table my entire layout messes up :) I have no idea how to solve this, but it's messing with my brain, I tried the htmlspecialchars, but

[PHP] disable ability to download image?

2002-06-18 Thread Steph
Is there a way to disable the users ability to download images on public pages. Or is this a Javascript capability? ~Steph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] disable ability to download image?

2002-06-18 Thread Bruce Karstedt
-General Subject: [PHP] disable ability to download image? Is there a way to disable the users ability to download images on public pages. Or is this a Javascript capability? ~Steph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP

Re: [PHP] disable ability to download image?

2002-06-18 Thread Kevin Stone
Mac clients won't be effected at all. Is the a legitimate reason why you need to do this? Maybe there's another way around your problem. -Kevin - Original Message - From: Steph [EMAIL PROTECTED] To: Php-General [EMAIL PROTECTED] Sent: Tuesday, June 18, 2002 3:13 PM Subject: [PHP] disable

RE: [PHP] disable ability to download image?

2002-06-18 Thread John Holmes
to the picture, there are ways to handle that in .htacess and PHP. ---John Holmes... -Original Message- From: Steph [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 5:14 PM To: Php-General Subject: [PHP] disable ability to download image? Is there a way to disable the users ability

RE: [PHP] disable ability to download image?

2002-06-18 Thread César Aracena
PM To: Php-General Subject: [PHP] disable ability to download image? Is there a way to disable the users ability to download images on public pages. Or is this a Javascript capability? ~Steph -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Disable Back Button

2001-10-19 Thread Richard S. Crawford
Can you imagine the trouble you'd get into if you could? At 09:47 PM 10/19/2001, Chip Landwehr wrote: Is there any way to do this in PHP4? Sliante, Richard S. Crawford http://www.mossroot.com mailto:[EMAIL PROTECTED] AIM: Buffalo2K ICQ: 11646404 Y!: rscrawford It is only with the heart

Re: [PHP] Disable Back Button

2001-10-19 Thread Chip Landwehr
lol! True, so true... Richard S. Crawford [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Can you imagine the trouble you'd get into if you could? At 09:47 PM 10/19/2001, Chip Landwehr wrote: Is there any way to do this in PHP4? Sliante, Richard S. Crawford

[PHP] disable?

2001-07-31 Thread Jeremy Morano
Hi, I was wondering if there was any way to dissable something from the mouse right click? ex: When a user visits my site, I don't want them to be able to use the copy shortcut on the right mouse click. How would I do this? -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] disable?

2001-07-31 Thread Daniel Rezny
Hello Jeremy, Tuesday, July 31, 2001, 4:29:22 PM, you wrote: JM Hi, JM I was wondering if there was any way to dissable something from the mouse JM right click? JM ex: When a user visits my site, I don't want them to be able to use the copy JM shortcut on the right mouse click. JM How would I

RE: [PHP] disable?

2001-07-31 Thread Jon Haworth
] Subject: [PHP] disable? Hi, I was wondering if there was any way to dissable something from the mouse right click? ex: When a user visits my site, I don't want them to be able to use the copy shortcut on the right mouse click. How would I do this? -- PHP General Mailing List (http://www.php.net

Re: [PHP] disable compiler flag --enable-trans-sid at runtime

2001-05-14 Thread Holger Bhnke
Message- From: Holger Böhnke [mailto:[EMAIL PROTECTED]] Sent: Monday, May 14, 2001 6:01 AM To: [EMAIL PROTECTED] Subject: [PHP] disable compiler flag --enable-trans-sid at runtime Hi All, is it possible to disable the compiler flag --enable-trans-sid at runtime? -- PHP

[PHP] Disable print button of client browser

2001-01-29 Thread Usman Ghani
Hello Can anybody tell me how to disable the print button of the client browser? If there is any method please let me know. Thanks in advance Usman

Re: [PHP] Disable print button of client browser

2001-01-29 Thread Josh G
- From: "Usman Ghani" [EMAIL PROTECTED] To: "PHP Email List" [EMAIL PROTECTED] Sent: Tuesday, January 30, 2001 3:38 PM Subject: [PHP] Disable print button of client browser Hello Can anybody tell me how to disable the print button of the client browser? If there is any

RE: [PHP] Disable print button of client browser

2001-01-29 Thread Maxim Maletsky
To: PHP Email List Subject: [PHP] Disable print button of client browser Hello Can anybody tell me how to disable the print button of the client browser? If there is any method please let me know. Thanks in advance Usman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail