Re: [PHP] POST headers empty when using SSLProxyEngine

2005-11-20 Thread Florian Effenberger
Hi Mirco, > I had a simmalar problem myself and didn't find a solutions. > As far as I fond out the ssl_proxy module simply does not route POST. It > just routes the link, wich means GET should work. thanks for your reply! That sounds logical, indeed. I have posted my help request to the Apache u

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Łukasz Hejnak
Hello again, here's some more extra info on my case that came out while Suhas Pharkute was helping me find a resolution: So the safe-mode is off, that's for sure, I turned it off at compile stage. I delete the file after each run of the script, the folder where the script is located has 777 pe

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Brian V Bonini
On Sun, 2005-11-20 at 05:44, Łukasz Hejnak wrote: > Hello again, here's some more extra info on my case that came out while > Suhas Pharkute was helping me find a resolution: > So the safe-mode is off, that's for sure, I turned it off at compile stage. > > I delete the file after each run of the

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Łukasz Hejnak
Brian V Bonini napisał(a): You are saying: From the CLI you can write to a file all day long, no prob. Yes, the shell command "php test.php" works fine when executed as root (any other user has the same problem as from the web) From the web, if the file does not exist it is created, however, no

Re: [PHP] Server Client Architecture, best parctice

2005-11-20 Thread ahmed
> On 11/20/05, ahmed <[EMAIL PROTECTED]> wrote: >> BSD-style sockets > how secure are sockets?? This is very flexible. Practically, you'll need a "protocol" for client/server communication. So how secure depends on how secure is your protocol design and implementation. You might opt to work atop

RE: [PHP] Re: [PHP-DB] Drag and Drop with PHP and MySQL

2005-11-20 Thread Jason Karns
I've used this (radlinks upload) on one of my sites and it works great. Drag and drop, even multiple files. Jason Karns ~~~ Web Designer & Applications Programmer 3AM Productions - Things look different @3AM -Original Message- From: Joe Harman [mailto:[EMAIL PROTECTED] Sent:

Re: [PHP] Re: PHP 4.4.1 on Apache 2.0.x issue

2005-11-20 Thread Geert Booster
On Thu, Nov 17, 2005 at 09:34:08PM +0100, Max Belushkin wrote: > Does anyone have any information/updates on this issue perhaps? The thread > on http://lists.freebsd.org/pipermail/freebsd-ports/2005-November/027056.html > hasn't had anything new (since Nov 6), and on > http://bugs.php.net/bug.

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Curt Zirzow
On Sun, Nov 20, 2005 at 03:38:56PM +0100, ukasz Hejnak wrote: > Brian V Bonini napisa�(a): > >You are saying: > >From the CLI you can write to a file all day long, no prob. > Yes, the shell command "php test.php" works fine when executed as root > (any other user has the same problem as from the we

[PHP] imagecopyresized just copies

2005-11-20 Thread Andy Pieters
Hi all I wanted to make a simple script to make a resized image from an uploaded one. I used the example found on the php.net website list($width,$height,$type)=getimagesize($newfile);

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Suhas
This is not a disk usage as it works when script is run from terminal as su\ Suhas On 11/20/05, Curt Zirzow <[EMAIL PROTECTED]> wrote: > On Sun, Nov 20, 2005 at 03:38:56PM +0100, ukasz Hejnak wrote: > > Brian V Bonini napisa�(a): > > >You are saying: > > >From the CLI you can write to a file all d

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Curt Zirzow
On Sun, Nov 20, 2005 at 09:26:15AM -0700, Suhas wrote: > This is not a disk usage as it works when script is run from terminal as su\ root can break the 100% barrier, it usually can get around 110%. [EMAIL PROTECTED]:/tmp> df -h /tmp Filesystem SizeUsed Avail Capacity Mounted on /dev/

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Suhas
thanks, never thought about that. Suhas On 11/20/05, Curt Zirzow <[EMAIL PROTECTED]> wrote: > On Sun, Nov 20, 2005 at 09:26:15AM -0700, Suhas wrote: > > This is not a disk usage as it works when script is run from terminal as su\ > > root can break the 100% barrier, it usually can get around 110

Re: [PHP] imagecopyresized just copies

2005-11-20 Thread Andy Pieters
On Sunday 20 November 2005 17:14, Andy Pieters wrote: > {case 1: > imagegif($main,$thumbname); > > break; >

Re: [PHP] imagecopyresized just copies

2005-11-20 Thread Curt Zirzow
On Sun, Nov 20, 2005 at 05:14:08PM +0100, Andy Pieters wrote: > Hi all > > I wanted to make a simple script to make a resized image from an uploaded one. > > I used the example found on the php.net website > > ... >{imagecopyresized($thumb,$main,0,0,0,0,$newwidth,$newheight,$width, > $height

Re: AW: [PHP] how can I CALL a PHP script from different TEXT LINKS with differentPARAMETERS?

2005-11-20 Thread Curt Zirzow
On Sun, Nov 20, 2005 at 04:12:05PM +1300, Jasper Bryant-Greene wrote: > xkorakidis wrote: > >Webmaster, thanks very much but I think it would be safer to do that by > >post, not by get. Furthermore, if I use indivudual files > > The difference between POST and GET lies in the semantics -- POST >

[PHP] Re: imagecopyresized just copies

2005-11-20 Thread zerof
Andy Pieters escreveu: Hi all I wanted to make a simple script to make a resized image from an uploaded one. See this page and... http://www.educar.pro.br/abc/mathgd/index.php?xyz=18 zerof -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/u

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Brian V Bonini
On Sun, 2005-11-20 at 09:38, Łukasz Hejnak wrote: > Brian V Bonini napisał(a): > > You are saying: > > From the CLI you can write to a file all day long, no prob. > Yes, the shell command "php test.php" works fine when executed as root > (any other user has the same problem as from the web) > > Fro

[PHP] Local PEAR install confusion

2005-11-20 Thread Colin Andrews
about 3 months ago I set up a local install of pear on my web host account (a cpanel system). A couple days ago, my hosting company upgraded us to php 4.4.2-dev. I started seeing a lot of warnings coming out my PEAR includes: "Notice: Only variable references should be returned by reference in /ho

Re: [PHP] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Łukasz Hejnak
Brian V Bonini napisał(a): > What does 'df -h' say on your system? !!! The simplest of all is the most unforseen.. Wow. that's it ;) I NEVER EVEN Imagined to check for that, in fact that _IS_ the thing. I feel so totaly stupid right now, I checked everything except this, although I think the fw

[PHP] Re: Local PEAR install confusion

2005-11-20 Thread Greg Beaver
Colin Andrews wrote: about 3 months ago I set up a local install of pear on my web host account (a cpanel system). A couple days ago, my hosting company upgraded us to php 4.4.2-dev. I started seeing a lot of warnings coming out my PEAR includes: "Notice: Only variable references should be retur

Re: AW: [PHP] how can I CALL a PHP script from different TEXT LINKS with differentPARAMETERS?

2005-11-20 Thread xkorakidis
That's right Curt, this is the reason I characterised sending parameters via url not safe! But in case of selecting data, I think there is no problem to send data via url, right? anyway, I found more simple using POST in any case because I have already used that and works, so I prefer POST... Thank

[PHP] Re: Local PEAR install confusion

2005-11-20 Thread Colin Andrews
Thanks a ton- So then that means that the only way to get rid of the warnings is to change the error reporting level? Quoting Greg Beaver <[EMAIL PROTECTED]>: Colin Andrews wrote: about 3 months ago I set up a local install of pear on my web host account (a ... Any suggestions? Enlightenme

[PHP] Re: Local PEAR install confusion

2005-11-20 Thread Greg Beaver
Colin Andrews wrote: Thanks a ton- So then that means that the only way to get rid of the warnings is to change the error reporting level? No, report the warnings as a bug at pear.php.net/bugs You can also hand-fix the source in the mean time, it's only 5-10 lines of code, right? Greg -

Re: [PHP] Problems with PHP5 & phpMyAdmin

2005-11-20 Thread Curt Zirzow
On Fri, Nov 18, 2005 at 12:07:00PM -0800, Russ F wrote: > I've reinstalled Apache2, PHP5, phpMyAdmin and MYSQl several times. I still > get the same error when i try to use phpmyadmin Can not load mysql > extensions. I checked the path it is correct, the extensions exist > in /etc/php5/extensions b

[PHP] Some good framework for new website

2005-11-20 Thread 赵光
i am new to php,i want to write a website contain blog(mutil-user),forum and album. who can tell me some good framework can accelerate developing.and any exist web site implement the fuction i wanted,please tell me some for reference. thanks for all. -- /

[PHP] new to sessions, but learning

2005-11-20 Thread matt VanDeWalle
hello, I am writing basically what is hopefully going to turn out eventually to be a penpal website. There are millions out there i know but some are to slow and only load half the page whenever it feels like it + has a bazillion ads and well, other things..so I decided to write my own

[PHP] Re: new to sessions, but learning

2005-11-20 Thread Roman Ivanov
matt VanDeWalle wrote: hello, I know session vars work between two pages but will sessions work across 3 and 4 pages or not? Yes. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: new to sessions, but learning

2005-11-20 Thread Roman Ivanov
I mean, yes they will work across multiple pages. Thy store data locally and re-load it, identifying necessary information by session ID which is stored in cookie on the client side. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Can't execute external program

2005-11-20 Thread Voip tech
Hello, I cannot get exec(), system() or passthru() to run an extenal program. >From the command line it runs perfectly: [EMAIL PROTECTED] html]# /var/www/html/myprog -E 123456789098.dat sample1.txt sample1.new (no output, it just creates the file .new) Here is the php I've created, fairly simple:

[PHP] Re: Some good framework for new website

2005-11-20 Thread Roman Ivanov
赵光 wrote: i am new to php,i want to write a website contain blog(mutil-user),forum and album. This is pretty basic stuff. Why don't you try some CMS first? http://www.xaraya.com/ http://www.joomla.org/ http://www.drupal.org/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, vi

[PHP] Deployment and maintenance of php software

2005-11-20 Thread Andy Pieters
Hi all I am a php developer and develop huge packages. Those packages are then installed by my clients or clients of my resellers on a score of webservers. As with all applications, bugfixes, and updates are issued on an almost weekly bases. I developed an application that runs on the php c