[PHP] W3C and Open Source battles

2001-10-02 Thread Wolfgang Ebneter
Hallo all, might be a bit OT but nevertheless quite important. See http://lwn.net/daily/#t33 -- Wolfgang Ebneter M.Sc. Data Engineering Medienzentrum Osnabrück [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Upload problem

2001-10-02 Thread Gede Gilijk
Dear PHPmania, I am new to PHP and I start to write some script. $folder = USER_ENV(ID_user); // echo $folder; $destination = /home/gilijk/data/.$folder; // echo $destination; if ($filename1!=none) { copy($filename1,$destination./.$filename1_name); echo $filename1_name telah

[PHP] Re: Array Elements While Loops

2001-10-02 Thread TURPIN Jean Max
Hi. Don't forget to increment j : //loop to check for bad email addresses: $j = 0; $flag = 0; while ($j count($User)){ if (($User[$j]!=)!eregi(^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*$, $User[$j])) { $flag = 1; $errorNo = $j + 1; } $j++; } --

[PHP] named anchors and query strings

2001-10-02 Thread Scott Mebberson
Hi Guys, How do you reference both a named anchor and a query string in a link? i.e. a href=page.php?location=01#bottomlink text/a I am not sure if this is even possible? thanks Scott -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

[PHP] Dated/Timed actions

2001-10-02 Thread Stephane Besnard
Hi, Does anybody know how to generate 'dated/timed actions' with PHP? By this I mean, for instance, automatically sending an email to a group of people when a specific date and time is reached: sending a happy birthday message to a users. Thanks, Stephane.

RE: [PHP] Dated/Timed actions

2001-10-02 Thread Lawrence . Sheed
cron job. Probably something along the lines of small php code interfacing with a db with dates etc in, and another php script which checks the dates and emails details on that day. A Cron job which runs the script daily would probably do the job. do a search in google for cron job

[PHP] looking for pluggable bb/forum

2001-10-02 Thread Ben Peter
Hi all, does anyone know of good php forum software that does not take the approach that customizable headers/footers are used (like with phorum), but one that is plugged in the middle of a page, say by calling a function that displays the forum in it's current status, or by including a file? I

[PHP] Re: Dated/Timed actions

2001-10-02 Thread Lukas
Stephane, One possibilety is to have a script which does the sending - checking against a db to see what to send out, having it called periodically from a cron job. I have built a (very) simple little daemon for doing jobs like this, it works similarly to cron except it is easier to

[PHP] Re: Dated/Timed actions

2001-10-02 Thread Henrik Hansen
[EMAIL PROTECTED] (Stephane Besnard) wrote: Hi, Does anybody know how to generate 'dated/timed actions' with PHP? By this I mean, for instance, automatically sending an email to a group of people when a specific date and time is reached: sending a happy birthday message to a

Re: [PHP] Re: Dated/Timed actions

2001-10-02 Thread paharito
But what if your server can't give you cron perms? It would be useful if I could send an e·mail every monday... but can I do this without the cron? Thanks... and Hi!! to the group. I'm the New from Spain... ;) - Original Message - From: Henrik Hansen [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] Re: Dated/Timed actions

2001-10-02 Thread Duncan Hill
On Tue, 2 Oct 2001, paharito wrote: But what if your server can't give you cron perms? It would be useful if I could send an e·mail every monday... but can I do this without the cron? Try at instead. -- Sapere aude My mind not only wanders, it sometimes leaves completely. -- PHP

[PHP] WebMail Client

2001-10-02 Thread Rosen
Hi, Can someone recommend me some free php script for WebMail client (like Squerriemail) ? Thanks, Rosen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail:

Re: [PHP] Re: Dated/Timed actions

2001-10-02 Thread Henrik Hansen
[EMAIL PROTECTED] (Duncan Hill) wrote: On Tue, 2 Oct 2001, paharito wrote: But what if your server can't give you cron perms? It would be useful if I could send an e·mail every monday... but can I do this without the cron? Try at instead. if you dont have cron access I dont

Re: [PHP] Re: Dated/Timed actions

2001-10-02 Thread paharito
Well, it maybe posibble... but how can be it done by a php script? I mean: - The job is to send a mail to the mail-list of my web every monday, but I cannot use the crontab I think I can do this script: - At every visit at my index page, I check the system date, and if it is equal to 0:00am

[PHP] image upload

2001-10-02 Thread AJDIN BRANDIC
Hi I have a problem uploading images on my server. I have foung#d similar question in the archive u no answer to it. If a file is uploaded to the server through a form it stores it in the right place with the right name but the file size is incorrect and it is not visible (though a

[PHP] do you like asian pussy?

2001-10-02 Thread
Below is the result of your feedback form. It was submitted by ([EMAIL PROTECTED]) on Tuesday, October 2, 2001 at 09:00:06 --- : bplease visit these following sites if you want access to THOUSANDS OF RARE PHOTOS :and LIVE

[PHP] Re: named anchors and query strings

2001-10-02 Thread bill
a href=page.php#bottom?location=01link text/a Scott Mebberson wrote: Hi Guys, How do you reference both a named anchor and a query string in a link? i.e. a href=page.php?location=01#bottomlink text/a I am not sure if this is even possible? thanks Scott -- PHP General Mailing List

[PHP] Detecting user logout.

2001-10-02 Thread Alexander Deruwe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hey all, I keep track of my users using PHP4 sessions, with verification against a PostgreSQL database. How can I detect when a user logs out / is logged out? I provide a hyperlink 'Logout' which users are supposed to click, so I can obviously

Re: [PHP] Re: Dated/Timed actions

2001-10-02 Thread Henrik Hansen
[EMAIL PROTECTED] (Paharito) wrote: Well, it maybe posibble... but how can be it done by a php script? I mean: - The job is to send a mail to the mail-list of my web every monday, but I cannot use the crontab I think I can do this script: - At every visit at my index

[PHP] Re: Detecting user logout.

2001-10-02 Thread Henrik Hansen
[EMAIL PROTECTED] (Alexander Deruwe) wrote: Hey all, I keep track of my users using PHP4 sessions, with verification against a PostgreSQL database. How can I detect when a user logs out / is logged out? I provide a hyperlink 'Logout' which users are supposed to click, so I can

Re: [PHP] eregi

2001-10-02 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Mike Cullerton) wrote: eregi(^[a-z0-9_\-]+$,$string) notice that i had to escape the dash with a backslash Are you sure? 'Cuz AFAIK, escaping shouldn't be necessary on a hyphen which is the last char (or, IIRC, the first) of a character

RE: [PHP] PHP - Nuke 5.2

2001-10-02 Thread Kurt Lieber
Actaully, I recommend you take a look at PostNuke. It's a fork of PHP-Nuke 5.0 that's designed to be more open, better architected, less buggy and just an all-around more mature, stable product. http://www.postnuke.com and the vision:

[PHP] how to decrease serverload easily?

2001-10-02 Thread Martin Lindhe
We're developing a web platform based on PHP, running under Apache. We have realized that we need a way of split up the serverload to multiple machines if it gets too high. We've come up with PHP solutions to the problem but are looking for better ones, especially in Apache configuration. Is

Re: [PHP] WebMail Client

2001-10-02 Thread Michael A. Peters
Basilix. I'm using it right now- configured to use Apple's imap server (iTools) Anyway, Basilix is incredibly good, allows for https if user wishes, easy to configure. Requires imap functionallity in your php, and only works with imap servers. The imap server it connects to need not be on the

Re: [PHP] how to decrease serverload easily?

2001-10-02 Thread Rasmus Lerdorf
We're developing a web platform based on PHP, running under Apache. We have realized that we need a way of split up the serverload to multiple machines if it gets too high. We've come up with PHP solutions to the problem but are looking for better ones, especially in Apache configuration. Is

Re: [PHP] how to decrease serverload easily?

2001-10-02 Thread paharito
Can you think a site with 250.000 visitis (uniques ip) each day? We have very troubles with the mysql server... The, because there is only 1 mysql server... I'm interesting in the solution you pourpose... Where can I get more information about that? thanks - Original Message - From:

[PHP] newbie - some simple questions

2001-10-02 Thread John A. Grant
I'm just getting started with php 4.03. Yes I've read the FAQ and lots of documentation. I have setup my pages so they all look more or less like this: ?php require(mylib.php); ? html head ?php myheader(this is the title); ? meta name=keywords content=apples, oranges

[PHP] Sockets on FreeBSD Mac OS X

2001-10-02 Thread Devon Weller
Has anyone successfully gotten socket functions to work with FreeBSD? More specifically, Mac OS X? I always get the following error: Can't bind to port 12345, exiting. The script works fine on Linux machines. Is there a patch in the works for FreeBSD? If so, I would be very happy. -- Devon

Re: [PHP] newbie - some simple questions

2001-10-02 Thread Rasmus Lerdorf
?php require(mylib.php); ? html head ?php myheader(this is the title); ? meta name=keywords content=apples, oranges ... /head ?php mybody(this is the title); ? phere is the body of the page/p ?php myfooter(); ? /html My questions are: 1.

[PHP] what directory should put the php.ini?

2001-10-02 Thread Caleb Carvalho
Hi all, I have just rename the php.ini-dist to php.ini from the installation directoy but am not sure where to place it in order for php to rea,, any help?? thanks Caleb Carvalho Application Engineer LoadRunner/APM

RE: [PHP] what directory should put the php.ini?

2001-10-02 Thread Martin Lindhe
Hi all, I have just rename the php.ini-dist to php.ini from the installation directoy but am not sure where to place it in order for php to rea,, any help?? thanks What OS are you running PHP on? /Martin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] what directory should put the php.ini?

2001-10-02 Thread Rasmus Lerdorf
phpinfo() tells you On Tue, 2 Oct 2001, Caleb Carvalho wrote: Hi all, I have just rename the php.ini-dist to php.ini from the installation directoy but am not sure where to place it in order for php to rea,, any help?? thanks Caleb Carvalho Application Engineer LoadRunner/APM

[PHP] Sessions Variables and refresh pages

2001-10-02 Thread Karina Gómez Salgado
Hello, this is the fourth time i wrote expecting some answer from somebody with more experience than me. I have a protected page , i ask for user and pass and save these variables as session variables, with session_register. When the user submit this page.. this variables are registered, in the

Re: [PHP] how to decrease serverload easily?

2001-10-02 Thread ReDucTor
http://conf.php.net/pres/slides/intro/tshirt.php?si=30text=php That doesn't work, Its in the imlib2 section :D and i wanted to see a pic with php logo on it :D - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: Martin Lindhe [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent:

Re: [PHP] Sessions Variables and refresh pages

2001-10-02 Thread Rasmus Lerdorf
And I have read your question 4 times. I still don't understand it. I don't see how you can get a post data missing on a form post. -Rasmus On Tue, 2 Oct 2001, Karina [iso-8859-1] Gómez Salgado wrote: Hello, this is the fourth time i wrote expecting some answer from somebody with more

Re: [PHP] how to decrease serverload easily?

2001-10-02 Thread Rasmus Lerdorf
Yes, some of the slides don't work on conf.php.net. One of these days I will get around to fixing that. Everything works fine on my laptop, so come to one of my talks. ;) -Rasmus On Wed, 3 Oct 2001, ReDucTor wrote: http://conf.php.net/pres/slides/intro/tshirt.php?si=30text=php That

Re: [PHP] newbie - some simple questions

2001-10-02 Thread NoWayMan
SNIP I tend to put anything that controls the overall style of my pages in a separate include file so when I need to change the style I just have to change it in one place. And yes, for me that includes the html and /html tags. 5. I see there is a php.template newsgroup, but I couldn't

Re: [PHP] how to decrease serverload easily?

2001-10-02 Thread ReDucTor
Would be nice and fun to goto one of them, but I live in Australia and I doubt, thats where you go :D hehe - Original Message - From: Rasmus Lerdorf [EMAIL PROTECTED] To: ReDucTor [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, October 03, 2001 2:09 AM Subject: Re: [PHP] how to

Re: [PHP] how to decrease serverload easily?

2001-10-02 Thread Rasmus Lerdorf
Would be nice and fun to goto one of them, but I live in Australia and I doubt, thats where you go :D hehe I have given talks in Australia. Both in Sydney and Canberra. And I will be at linux.conf.au in Brisbane in February. -Rasmus -- PHP General Mailing List (http://www.php.net/) To

RE: [PHP] how to decrease serverload easily?

2001-10-02 Thread Maxim Maletsky \(PHPBeginner.com\)
What about in Europe and Japan. I live between Italy and Tokyo. I only met Zeev Suraski and Doron (the CEO of Zend) representing my company on a meeting in Tokyo this June. What about you? Are there any speeches you do in my locations? Maxim Maletsky www.PHPBeginner.com -Original

RE: [PHP] how to decrease serverload easily?

2001-10-02 Thread Rasmus Lerdorf
Nothing planned for Italy or Japan right now. Frankfurt, Paris, Birmingham, Bucaramanga (Columbia) and Brisbane are on the schedule for the next 6 months. -Rasmus On Tue, 2 Oct 2001, Maxim Maletsky (PHPBeginner.com) wrote: What about in Europe and Japan. I live between Italy and Tokyo. I

Re: [PHP] how to decrease serverload easily?

2001-10-02 Thread paharito
hehehe... are you going to travel to Spain? You can title like: the Rasmus World Tour ;) - Original Message - From: Maxim Maletsky (PHPBeginner.com) [EMAIL PROTECTED] To: 'Rasmus Lerdorf' [EMAIL PROTECTED]; 'ReDucTor' [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, October 02,

Re: [PHP] Sessions Variables and refresh pages

2001-10-02 Thread Karina
Well, I don't understand it too, i don't know why with normal variables there are not problem and with session variables i need to refresh the page to see the results after the submit form. The mechanism is this: query 1 with parameter ACCESS FORM --- results only

Re: [PHP] Sessions Variables and refresh pages

2001-10-02 Thread Rasmus Lerdorf
You are going to have to explain your problem in more detail. Write a simple little 5-line example program that illustrates the problem and post it here. As it is right now, I don't think anybody understands what the heck you are talking about. -Rasmus On Tue, 2 Oct 2001, Karina wrote:

Re: [PHP] newbie - some simple questions

2001-10-02 Thread Brian Clark
Hi NoWayMan, @ 12:19:01 PM on 10/2/2001, NoWayMan wrote: On another note, is there something in PHP similar to the FuseBox paradigm of ColdFusion? phpadvertisements.com, *cough*, I mean, phpbuilder.com had an article about this quiet a while ago. Check it out here:

RE: [PHP] how to decrease serverload easily?

2001-10-02 Thread Maxim Maletsky \(PHPBeginner.com\)
Yey! Let's do a little party on Ibiza! :-) Though, Spain is OK too :-) Maxim Maletsky www.PHPBeginner.com -Original Message- From: paharito [mailto:[EMAIL PROTECTED]] Sent: martedì 2 ottobre 2001 18.39 To: [EMAIL PROTECTED] Subject: Re: [PHP] how to decrease serverload easily?

RE: [PHP] how to decrease serverload easily?

2001-10-02 Thread Maxim Maletsky \(PHPBeginner.com\)
What's in Paris? I know that PHP international Conference will take place in Frankfurt, I saw your name there as well. But what is it going to be in Paris? Where could I get some info about it? Maxim Maletsky www.PHPBeginner.com -Original Message- From: Rasmus Lerdorf [mailto:[EMAIL

Re: [PHP] Sessions Variables and refresh pages

2001-10-02 Thread Karina
Ok. First i have a result-select-page displaying the id's of my items and other values. id1(link) -- item 1 bla bla bla id2(link) -- item 2 bla bla bla when the user selects an id link appears the accesscontrol page: ?php session_start(); if (!isset($uid2)) { ? ... form

Re: [PHP] Sessions Variables and refresh pages

2001-10-02 Thread Rasmus Lerdorf
I have no idea what is wrong. Like I suggested before, if you reduce this problem down to a simple reproducable simple script someone can probably pick out what you did wrong. -Rasmus On Tue, 2 Oct 2001, Karina wrote: Ok. First i have a result-select-page displaying the id's of my items

[PHP] Re: MySQL Ability

2001-10-02 Thread John Lim
Depends on what you want to do. For pumping out large amounts of data, it's a great tool. For forums and simple content management, it works fine for most web sites. For handling complex database transactions, not really. Devin Pittman [EMAIL PROTECTED] wrote in message [EMAIL

[PHP] Rebuild PHP

2001-10-02 Thread Eric G.
If I rebuild PHP, do I need to rebuild my apache??? _ Descargue GRATUITAMENTE MSN Explorer en http://explorer.msn.es/intl.asp -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: [PHP] Rebuild PHP

2001-10-02 Thread Joseph Bannon
Yes. I've had to do this a few times to upgrade to 4.0.6. It is a pain, but the only way I know of. Joseph iWebsiteSoftware.com -Original Message- If I rebuild PHP, do I need to rebuild my apache??? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail:

Re: [PHP] Rebuild PHP

2001-10-02 Thread Duncan Hill
On Tue, 2 Oct 2001, Eric G. wrote: If I rebuild PHP, do I need to rebuild my apache??? I_think_ that this is dependent on whether you use the DSO feature of Apache. IIRC, I've been able to do an upgrade on PHP and just reloaded apache to take advantage of the new library module. -- Sapere

Re: [PHP] Rebuild PHP

2001-10-02 Thread Matt Williams
Once upon a time, Duncan Hill wrote: I_think_ that this is dependent on whether you use the DSO feature of Apache. IIRC, I've been able to do an upgrade on PHP and just reloaded apache to take advantage of the new library module. Correct the manual explains have to compile with DSO. It makes

[PHP] How can I suppress my variables from showing up in the address bar?

2001-10-02 Thread Salty Marine
Greetings to All of You on the List: How can I suppress my variables from showing up in the address bar? I have a form that's passing information to a script of mine, via the address bar. http://foobar.com/EmailList.php3?Newsletter_ID=4732Subscription_Action=Remo ve[EMAIL PROTECTED] How can

RE: [PHP] How can I suppress my variables from showing up in the address bar?

2001-10-02 Thread Jack Dempsey
use METHOD=POST in your form -Original Message- From: Salty Marine [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 02, 2001 1:57 PM To: [EMAIL PROTECTED] Subject: [PHP] How can I suppress my variables from showing up in the address bar? Greetings to All of You on the List: How can

Re: [PHP] How can I suppress my variables from showing up in the address bar?

2001-10-02 Thread paharito
Like this: FORM METHOD=post Whit post, the variables are not shown. You maybe use this: INPUT TYPE=hidden NAME=the_name VALUE=? echo $var; ? ;) - Original Message - From: Salty Marine [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, October 02, 2001 7:57 PM Subject: [PHP] How

Re: [PHP] HTTP Authentication / Logging Out

2001-10-02 Thread tonyz
how secure is either method? the form method would be more secure if it was done over https correct? tonyz Martín marqués wrote: On Lun 01 Oct 2001 19:36, you wrote: I used a pretty basic system to check HTTP authentication values against database values, but I can't seem to find a way

[PHP] Re: Detecting user logout.

2001-10-02 Thread tonyz
why bother charting logouts. use cookies that expires so you know that they will eventually lose access and need to login again. just a thought tonyz Henrik Hansen wrote: [EMAIL PROTECTED] (Alexander Deruwe) wrote: Hey all, I keep track of my users using PHP4 sessions, with

[PHP] PHP MySQL

2001-10-02 Thread Brian Lee
OK, I am working on my first shopping cart using PHP and MySQL and I am having a few problems. The first problems is I need to bring out of a database a group of Jam flavors. I can do that but when certain items come up there needs to be the same flavors but repeated mutiple times and I am

RE: [PHP] PHP MySQL

2001-10-02 Thread Alfredeen, Johan
I'm a little confused over why you would display the same flavor more than once for a single item. But ok. Have you thought about populating an array with the flavors and then retrieving flavors from the array however many times you need to in an if statement. Maybe it would be easier to comment

[PHP] Creating mailaccounts

2001-10-02 Thread Bjornie
Hi everybody! I have a problem :/ I just said yes to a project, which includes webmail. I know how to send mail and how to receive mail with imap, but can I in any way create a mailaccount on the server by using PHP? Or should I use any other language like Java/JSP or ASP (with a component)?`

[PHP] Htaccess / regex / php I dont know why it won't work

2001-10-02 Thread affixcom
Hi, I have a website hosted on a cobalt server with my own domain, but not my own IP. I have a full access to my root web, but not higher (means can't change any *.conf files). My domain is wildcarded I want to be able to redirect based on the entry, IE if a user types http://hello.mydomain.com

[PHP] PHP slash Apache question?

2001-10-02 Thread Michael Champagne
Ok, this is semi-related to PHP. I think it may mainly be our Apache configuration. We have our listener listening on . This URL works: http://hostname.capis.com:/ This URL does not: hostname.capis.com:/ Is there anyway to get the bottom one to work? In IE I get 'Invalid syntax

Re: [PHP] eregi

2001-10-02 Thread mike cullerton
on 10/2/01 8:51 AM, CC Zona at [EMAIL PROTECTED] wrote: In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Mike Cullerton) wrote: eregi(^[a-z0-9_\-]+$,$string) notice that i had to escape the dash with a backslash Are you sure? 'Cuz AFAIK, escaping shouldn't be necessary on a hyphen

RE: [PHP] Htaccess / regex / php I dont know why it won't work

2001-10-02 Thread Maxim Maletsky \(PHPBeginner.com\)
I think this was supposed to work: .htaccess RewriteEngine On RewriteRule ^(.*)\.zajfe\.org$ redirect.php?url=$1 [L] Are you sure it doesn't? If it doesn't then meas they 1. don't have mod_rewrite (phphinfo shows you the modules loaded) 2. don't allow .htaccess to override httpd.conf

Re: [PHP] formular multiple select trouble

2001-10-02 Thread Jason G.
Give the select tag an ID. You can then reference the element by its ID. select name=aname[] id=aname javascript alert(aname.value); /javascript -Jason Garber IonZoft.com At 01:25 PM 10/2/2001 +0200, Sebastian wrote: Hi all If i use multiple select fields in a from i use name[] to

[PHP] Re: PHP slash Apache question?

2001-10-02 Thread jimw
Michael Champagne [EMAIL PROTECTED] wrote: Ok, this is semi-related to PHP. I think it may mainly be our Apache configuration. We have our listener listening on . This URL works: http://hostname.capis.com:/ This URL does not: hostname.capis.com:/ Is there anyway to get the

[PHP] Re: How can I suppress my variables from showing up in the address bar?

2001-10-02 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Salty Marine) wrote: How can I suppress my variables from showing up in the address bar? I have a form that's passing information to a script of mine, via the address bar. FORM METHOD=POST ... -- CC -- PHP General Mailing List

[PHP] SOAP Tool Kit for PHP | Solved | PHP-Tomcat-Apache HOWTO

2001-10-02 Thread Dahnke, Eric
Hello, A bit of background. I work at a company that has a web-based staffing software (jobs, candidates, you get the idea). We are about 5 developers (close to 15 w/ all other projects). Jobs and candidates are a perfect example of where XML and web-services are applicable. Use our software

Re: [PHP] Creating mailaccounts

2001-10-02 Thread Jason G.
Take a look at the exec() and system() functions. -Jason Garber www.ionzoft.com At 08:55 PM 10/2/2001 +0200, Bjornie wrote: Hi everybody! I have a problem :/ I just said yes to a project, which includes webmail. I know how to send mail and how to receive mail with imap, but can I in any way

[PHP] Re: SOAP Tool Kit for PHP | Solved | PHP-Tomcat-Apache HOWTO

2001-10-02 Thread Rasmus Lerdorf
Thanks for the step-by-step. I am sure it will come in handy to people. Now if only this fancy system of yours could find me a cool job... ;) -Rasmus A bit of background. I work at a company that has a web-based staffing software (jobs, candidates, you get the idea). We are about 5

[PHP] ftp

2001-10-02 Thread Eduardo Kokubo
Hi, I'm trying to upload some files using PHP, but I'm limited to small files and I don't know why. Could anyone please help me with this?

Re: [PHP] Re: PHP slash Apache question?

2001-10-02 Thread Michael Champagne
Great, thanks for the response Jim. Would there possibly be a way around this using mod_rewrite? Thanks, Mike Michael Champagne [EMAIL PROTECTED] wrote: Ok, this is semi-related to PHP. I think it may mainly be our Apache configuration. We have our listener listening on . This

Re: [PHP] Htaccess / regex / php I dont know why it won't work

2001-10-02 Thread affixcom
Thanks, I spent 2 days trying everything, and since I am not an expert on regex (do that that just for fun), I though my script was bad. I'll check with my hosting company if I can overrule the httpd.conf. I checked on phpinfo() and mod_rewrite is loaded Gab - Original Message - From:

[PHP] FTP

2001-10-02 Thread Eduardo Kokubo
Hi, I'm trying to upload some files using PHP, but I'm limited to small files of 1Mb or a little more and I don't know why. Could anyone please help me with this? This is the message I get: Warning: error opening none in /home/proj/sapens/public_html/f1_material.php on line 51 the same

[PHP] UPLOAD_TMP_DIR

2001-10-02 Thread Henning Støverud
Hi I've made an upload system at my ISP's webserver, but it seems like they have done something with the UPLOAD_TMP_DIR cause I get this error message: PHP Warning: File upload error - unable to create a temporary file in Unknown on line 0 Can I set the UPLOAD_TMP_DIR myself inside a PHP

RE: [PHP] UPLOAD_TMP_DIR

2001-10-02 Thread Joe Kaiping
Hi, You might want to check out http://phpclasses.upperdesign.com. There are a number of useful classes there, including Metabase and HTML Mime Mail. I recently got a notice that the following Upload class is also now available. I haven't tried it yet, though. There are other upload classes

Re: [PHP] Re: PHP slash Apache question?

2001-10-02 Thread jimw
Michael Champagne [EMAIL PROTECTED] wrote: Great, thanks for the response Jim. Would there possibly be a way around this using mod_rewrite? no. if you'll check your logs, you'll see that the request is never even making it to your server. internet explorer simply barfs on urls that include a

Re: [PHP] FTP

2001-10-02 Thread Chesley A Windon
I'm trying to upload some files using PHP, but I'm limited to small files of 1Mb or a little more and I don't know why. Could anyone please help me with this? This is the message I get: Warning: error opening none in /home/proj/sapens/public_html/f1_material.php on line 51 By default

[PHP] RE: WebMail Client

2001-10-02 Thread Andrew Chase
You might want to take a look at Netmania. (http://www.netmania.org) Caveats: I helped install Netmania at a former employer back in February 2001, and with the then-current distribution we had all kinds of trouble setting it up until we realized that it depended on having *all* error handling

Re: [PHP] Sessions Variables and refresh pages

2001-10-02 Thread Karina Gómez Salgado
again with the problem i discovered that the problem is that the reload is needed when i use the session variables in the queries, otherwise there are not problem. Even if i only want to display the session variable in the result page, i need to do a reload. Karina wrote: Well, I don't

Re: [PHP] nimda, etc.

2001-10-02 Thread Ezra Nugroho
This is something you can use to slow down (even possibly to kill) code Red, Nimda scan etc. It's really interesting, good concept. http://www.hackbusters.net/LaBrea/ At 10:03 AM 9/22/2001 +0200, Alexander Skwar wrote: So sprach »Gaylen Fraley« am 2001-09-21 um 18:10:58 -0500 : Are you sure

Re: [PHP] A powerful editor!

2001-10-02 Thread Dean Householder
I used to use TextPad until I found EditPlus. I'm also amazed by it's power. It has more than I could even use including everything TextPad has and nicer colors for the different styles. You can find it at http://www.editplus.com. Dean Householder Daylight Creations

[PHP] Passing files from A to B

2001-10-02 Thread Dirk Maetens
Hello PHP-list, I am not an expert, so explaining the problem might be somewhat tricky. Please bare with me... Server A: PHP 4.01pl2 Safe Mode On Not configured with ftp functions Server B: ftp access, no PHP (shame) On Server A I use output buffering to generate some simple HTML files. So

[PHP] Best way to duplicate tables to another DB using PHP

2001-10-02 Thread David Yee
Hi guys. What do you suggest is the best (fastest, most efficient) way to duplicate a table from one database to another using PHP? I have a windows machine setup with ODBC for this old school DB (Pervasive SQL 7) and I would like to duplicate some of the tables into a Linux box with MySQL for

Re: [PHP] A powerful editor!

2001-10-02 Thread Sheridan Saint-Michel
I just have to ask what EXACTLY you mean by nicer colors as Textpad Allows you to set any element of a Syntax Definition to any color between (0,0,0) and (255,255,255). Last I checked 16.7M colors was plenty =P Sheridan Saint-Michel Website Administrator FoxJet, an ITW Company www.foxjet.com

[PHP] Restrict where PHP is Usable?

2001-10-02 Thread Matthew Walker
I've seen this done before on servers, but I'm not sure how to do it. Is there a way to restrict PHP to certain directories, so that it can only be used by files within those directories? For example: I'm starting a web page hosting service, and I'd like to make it so that most users can't

[PHP] Re: Passing files from A to B

2001-10-02 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dirk Maetens) wrote: Server A: PHP 4.01pl2 Safe Mode On Not configured with ftp functions Server B: ftp access, no PHP (shame) On Server A I use output buffering to generate some simple HTML files. So far so good. My problem starts

RE: [PHP] A powerful editor!

2001-10-02 Thread Maxim Maletsky \(PHPBeginner.com\)
EditPlus is the best. Many nice functions and, I think, it is more adapted for HTML/PHP development that TextPad. What I can't live without when developing on windows are those drag drop customs of EditPlus. I find it pretty handy. on VIM is great as well. Hey, look into archives. There are

[PHP] Re: Passing files from A to B

2001-10-02 Thread CC Zona
In article [EMAIL PROTECTED], [EMAIL PROTECTED] (Dirk Maetens) wrote: Server A: PHP 4.01pl2 Safe Mode On Not configured with ftp functions Server B: ftp access, no PHP (shame) On Server A I use output buffering to generate some simple HTML files. So far so good. My problem starts

[PHP] Problems with virtual() = request execution failed

2001-10-02 Thread Paulo Parola
Hi, I am having trouble porting an application to another server. I have to call an external Perl script through the use of the function 'virtual()' but on the new server I get the following error: Warning: Unable to include './cgi-bin/banners/ads_business.pl' - request execution failed in

[PHP] floating point format

2001-10-02 Thread Bill Rausch
I've notice that I can read floating point format like: 1.932E+12 Is there any way to output such a number. The %f format string in printf just prints 19320.00. Then I tried %e and got very strange results. The 1.932 was printed with nothing after it. -- Bill Rausch,

[PHP] fprintf

2001-10-02 Thread Bill Rausch
There doesn't appear to be an fprintf function. I'm using: fputs( $fp, sprintf( $format, ... ) ); Is this the recommended workaround? I was wondering why fprintf was left out since so many other standard C library routines are present? -- Bill Rausch, Software Development, Unix, Mac,

RE: [PHP] fprintf

2001-10-02 Thread Matthew Loff
The lack of fprintf() has been discussed on this list before, but I'm not sure what the status is on the PHP development side... http://bugs.php.net/bug.php?id=1027 -Original Message- From: Bill Rausch [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 02, 2001 7:08 PM To: [EMAIL

Re: [PHP] Re: Detecting user logout.

2001-10-02 Thread Alexander Deruwe
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Tuesday 02 October 2001 18:11, tonyz wrote: why bother charting logouts. use cookies that expires so you know that they will eventually lose access and need to login again. Yes, but then I can't show a list of logged in users (for

[PHP] php+apache 2

2001-10-02 Thread Jiri Mikulas
Hi. I have this problem with compiling PHP 4.0.6 for Apache-2.0.16_1 instaled from port on FreeBSD 4.4-release --- Making all in apache2filter ... ad -c sapi_apache2.c sapi_apache2.c: In function `php_input_filter': sapi_apache2.c:248:

[PHP] need help with safe mode

2001-10-02 Thread Richard Kurth
Can I add php_admin_flag safe_mode off to the httpd.conf file to turn safe mode off for just one site. And leave it on for the rest of the server. According to the manual this can be done but when I try it. It does not work. Is there something else I have to do to make this work properly.

Re: [PHP] formular multiple select trouble

2001-10-02 Thread Iván Milanez Castellanos
Sebastian: if I remember correctly if you use a multiple selection field on a page when you submit the form the contents of the selected items on the field are sent via a comma delimited string, so you would just have to do $Array=split(,, $String) to retrieve all of the selected values of the

[PHP] Re: Problème

2001-10-02 Thread Iván Milanez Castellanos
Monsieur: vous pouvèz trouver les instructions que vous recherchèz dans ce page Web. http://www.php.net/manual/fr/ Au revoir. Abdelghani Mekhoukh [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Monsieur, Premièrement et avant tout je vous souhaite une bonne

  1   2   >