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

Re: [PHP] Disable all caching

2006-10-10 Thread Andrew Brampton
Caching occurs client side (ie in the webbrowser) not by apache or php unless you have setup something especially to do so... How are you testing that something stays cached? There is also a HTTP header you can make your PHP send to ask the page not to be cached. Looking at this page:

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

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,

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,

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
This cannt be done in PHP. You would have to use something like Flash or Java - which is a lot of effort. The best you can do is disable right click using javascript, but that's easy to circumvent. Because everything's displayed client side, then a user could go into their Temporary Internet

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

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

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

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

RE: [PHP] disable ability to download image?

2002-06-18 Thread Bruce Karstedt
I've generally seen this done in JavaScript, by disabling the right mouse button. Bruce Karstedt President Technology Consulting Associates, Ltd. Tel: 847-735-9488 Fax: 847-735-9474 -Original Message- From: Steph [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 18, 2002 4:14 PM To:

Re: [PHP] disable ability to download image?

2002-06-18 Thread Kevin Stone
No, and no. Once served to the browser the image resides on the user's computer. They can do whatever they want with it. The only thing you can do is use Javascript to disable the user's right mouse button. However the only effect this will have is to piss of your Windows clients, and your

RE: [PHP] disable ability to download image?

2002-06-18 Thread John Holmes
No. Once you show the user the image, they can get it. You can make it harder by disabling right click or whatever, but it's not going to stop most people. The easiest way around all of that is to just click on the image and drag it to the address bar. It gets around almost all of the javascript

RE: [PHP] disable ability to download image?

2002-06-18 Thread César Aracena
The only way I've found of doing this, is using thumbnails. Obviously it doesn't serve all kinds of purposes, but no matter what kind of protection you use, a user can simply Save Web Page and open the image as local in the machine. The things about thumbnails, is that you show the image but in

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

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
Don't bother. Whatever you do (and it's usually a naff Javascript, search javascript.internet.com or equivalents for examples), people can get round it. You are wasting your time trying to stop this. If someone really wants your content they can - write it down - take screenshots - use a safe

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

2001-05-14 Thread Holger Bhnke
php_flag session.use_trans_sid off That may not be the correct syntax, but it should be close. it is correct! works perfectly thanx Kirk Johnson, Kirk [EMAIL PROTECTED] schrieb im Newsbeitrag [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I have not done this, but this is what I would try.

Re: [PHP] Disable print button of client browser

2001-01-29 Thread Josh G
No, no damn way, and besides, I can alt-prtscn and paste it into something else and print from there anyway. Gfunk - http://www.gfunk007.com/ I sense much beer in you. Beer leads to intoxication, intoxication to hangovers, and hangovers to... suffering. - Original Message

RE: [PHP] Disable print button of client browser

2001-01-29 Thread Maxim Maletsky
There's NO METHOD~~!!! any one can just hit print-screen and dump whatever your monitor was showing into PhotoShop (which will print it on request) :-)) Cheers, Maxim Maletsky -Original Message- From: Usman Ghani [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 30, 2001 1:38 PM To: