Re: [PHP] IMPORTANT, wanna know about MY PROJECT SALE !!!

2002-05-25 Thread Liam MacKenzie
Amen - Original Message - From: r [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 25, 2002 8:36 PM Subject: Re: [PHP] IMPORTANT, wanna know about MY PROJECT SALE !!! I would really like to call you scum but I think the scumy people of this world would object. This aint

Re: [PHP] UPLOADING IMAGE

2002-05-25 Thread Liam MacKenzie
http://www.zend.com/zend/spotlight/uploading.php Who's server are you trying this on mate? Yours or mine? - Original Message - From: Dani [EMAIL PROTECTED] To: 1LT John W. Holmes [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, May 26, 2002 10:38 AM Subject: Re: [PHP] UPLOADING

Re: [PHP] HELP!!! QUOTES!

2002-05-24 Thread Liam MacKenzie
echo My dog has \fleas\; - Original Message - From: Shane [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 25, 2002 9:20 AM Subject: [PHP] HELP!!! QUOTES! Question Please. What is the syntax for getting double quotes to appear in an echo statement. EXAMPLE: echo My dog

[PHP] Selective SafeMode {?!}

2002-05-24 Thread Liam MacKenzie
this? Cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Leading zeroes

2002-05-23 Thread Liam Gibbs
Does anybody have a clever and efficient way of getting rid of leading zeroes in a string? __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

RE: [PHP] Leading zeroes

2002-05-23 Thread Liam Gibbs
From version 4.1.0, $str = ltrim($str, '0') This works excellently. Thanks. One problem that I didn't think of, though: If the number is 0 (only 0), then the string ends up being empty. Is there a way around that? I put an if statement in saying if the string is empty, then the string is 0. Any

RE: [PHP] Leading zeroes

2002-05-23 Thread Liam Gibbs
I'm a newbie, but maybe this'll do it: if ($str!='0') { $str = ltrim($str, '0') } Duh. Sometimes I amaze myself at how stupid I can be. Thanks. :) __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience http://launch.yahoo.com -- PHP

Re: [PHP] Bulletin Boards

2002-05-18 Thread Liam MacKenzie
Phorum is nice and simple. phpBB has more features, generally better. Both are very good systems. I'd recommend phpBB for a more 'fun' type of site and phorum for a more serious atmosphere. But both can be configured accordingly. Cheers, Liam - Original Message - From: Richard

Re: [PHP] eregi(mail)

2002-05-16 Thread Liam Gibbs
Thanks to all who helped out with the eregi(mail) stuff. I got my problem solved, and on top of that, there were some bugs that I found in the code. Thanks again to everyone. __ Do You Yahoo!? LAUNCH - Your Yahoo! Music Experience

Re: [PHP] Plz dont hate me for this

2002-05-15 Thread Liam MacKenzie
nononononon www.vectorstar.net EXCELLENT hosting and it's free! - Original Message - From: Salman Ahmed [EMAIL PROTECTED] To: PHP List [EMAIL PROTECTED] Sent: Thursday, May 16, 2002 12:05 PM Subject: [PHP] Plz dont hate me for this Hi, I am also PHP lover plz dont hate me for this

[PHP] GD library problem

2002-05-14 Thread Liam Gibbs
This is funny: I have getimagesize(), but not createimage() and things like that. Is this because getimagesize() is not part of the GD library...? Or is there a problem with my GD library? Also, is there any resolution to this GIF copyright thing going on with Unisys? I want to be able to resize

Re: [PHP] GD library problem

2002-05-14 Thread Liam Gibbs
getimagesize() is not part of GD. You likely didn't add the GD extension correctly to PHP. That's what I figured, but I wasn't sure about it. Dagnabbit. I'm gonna have to try harder with GD. :) The copyright issue really has nothing to do with PHP. Talk to the GD folks. It is not our

[PHP] Use of an array element

2002-05-14 Thread Liam Gibbs
Is there any way of using an array element in the same line as it is filled? For instance, here's what I have: Say I want the image width of a pic, I have to: $f = getimagesize(certainpic.jpg); print($f[0]); After this, I never use $f anymore. There's no reason to have it hanging around. Is

Re: [PHP] Sending Html Pages

2002-05-12 Thread Liam MacKenzie
If you read up about 10 messages you'll get the answer. Also, RTFM. (Don't ask what that means, because if you read up 10 messages you'll find out) http://www.php.net/manual/en/function.mail.php - Original Message - From: Salman Ahmed [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

[PHP] GD (Image generator) {?!}

2002-05-12 Thread Liam MacKenzie
help is appreciated :-) Cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] GD (Image generator) {!?}

2002-05-12 Thread Liam MacKenzie
help is appreciated :-) Cheers, Liam P.S. Resent this cause the first one bounced, I think... -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Send html email

2002-05-11 Thread Liam MacKenzie
RTFM http://www.php.net/manual/en/function.mail.php - Original Message - From: Alex Shi [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, May 12, 2002 10:00 AM Subject: [PHP] Send html email Hi! How can I send a html email with just the build-in function mail()? Is this

[PHP] PHP builds

2002-05-10 Thread Liam MacKenzie
Hi all, I need some opinions, what are some good modules to build into PHP? I'm starting a hosting service (properly) Thanks! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] eregi(mail)

2002-05-10 Thread Liam Gibbs
Does anyone have a decent eregi statement for validating e-mail addresses? I've tried the ones on the site, but there seems to be small bugs with each of them. They tell me that [EMAIL PROTECTED] is an invalid e-mail address. __ Do You Yahoo!?

Re: [PHP] MySQL or FlatFile

2002-05-10 Thread Liam MacKenzie
MySQL - Original Message - From: David Duong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 11, 2002 10:29 AM Subject: [PHP] MySQL or FlatFile To store large values (100k+) and load them as much as 6+ times within the same hour what would be better MySql or Flatfile?

Re: [PHP] Re: Apache is not rendering php pages. Config problem?

2002-05-10 Thread Liam MacKenzie
That's strange.. I always compile in this order... 1. MySQL 2. PHP 3. Apache - Original Message - From: Andy [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, May 11, 2002 9:10 AM Subject: [PHP] Re: Apache is not rendering php pages. Config problem? I did find the prob! So

[PHP] Bandwidth monitoring {!?}

2002-05-09 Thread Liam MacKenzie
that can monitor this? Cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Adding up values

2002-05-09 Thread Liam MacKenzie
I add all the numbers without having those dashes causing a problem? cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Creating mail account on Linux server

2002-05-07 Thread Liam MacKenzie
I don't know, can it be done? http://scripts.operationenigma.net/adduser.php - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, May 08, 2002 12:06 AM Subject: Re: [PHP] Creating mail account on Linux server On Tuesday 07 May 2002 22:02,

Re: [PHP] Who's having a good hosting experience these days? {!?}

2002-05-06 Thread Liam MacKenzie
Free web hoting for PHP developers MySQL database (more if you need more) Subdomain, or I can host your domain Apache /w all the bits and pieces Slackware Linux OS 512/512 Cable connection in Brisbane, Australia Only catch is, I've got a 3 GIG monthly transfer limit, so no big uploads/downloads

[PHP] Free Hosting /w PHP/MySQL {!?}

2002-05-06 Thread Liam MacKenzie
Free hosting for PHP Developers. As many MySQL Databases as you need PHP with all the bits http://scripts.operationenigma.net/phpinfo.php FTP Access Subdomain or Your own Domain Tech Support over MSN if needed 98% Uptime 512/512 Connection based in Brisbane, Australia Only catch is that I

[PHP] Tailing Files

2002-05-05 Thread Liam MacKenzie
Hi guys, just a simple question, how would I go about displaying the last 100 lines of a log file? I know that on the command line it's: tail -n 100 access_log Is there a PHP function to do this? Cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Tailing a log file {!?}

2002-05-05 Thread Liam MacKenzie
OK, I did this and it does nothing but cause a loop and crash my browser... ? exec(tail -n 100 /www/logs/access.log,$result); for ($i=0; $i$result; $i++) { echo $resultBR; } ? What's the problem with that? Cheers, Liam - Original Message - From: Tom Rogers [EMAIL PROTECTED

Re: [PHP] Tailing a log file {!?}

2002-05-05 Thread Liam MacKenzie
It returns nothing It's got me stumped - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, May 05, 2002 5:58 PM Subject: Re: [PHP] Tailing a log file {!?} On Saturday 04 May 2002 15:32, Liam MacKenzie wrote: OK, I did this and it does nothing

Re: [PHP] Tailing a log file {!?}

2002-05-05 Thread Liam MacKenzie
get the expected at the top: Excecuting: tail -n 150 /www/hosting/domains/lanolot/logs/error.log Displaying the last 150 lines of error.log... But there's nothing underneath it. Any help would be greatly appreciated. Cheers, Liam - Original Message - From: Jason Wong [EMAIL PROTECTED

Re: [PHP] Tailing a log file {!?}

2002-05-05 Thread Liam MacKenzie
- From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, May 05, 2002 6:22 PM Subject: Re: [PHP] Tailing a log file {!?} On Saturday 04 May 2002 16:09, Liam MacKenzie wrote: Sorry, I should have included this in the first email... [snip] When I call the page, I get the expected

Re: [PHP] Tailing a log file {!?}

2002-05-05 Thread Liam MacKenzie
? Thanks! Liam - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, May 05, 2002 6:40 PM Subject: Re: [PHP] Tailing a log file {!?} On Saturday 04 May 2002 16:25, Liam MacKenzie wrote: $cmd = exec(tail -n $len /www/hosting/domains/lanolot/logs/$open

Re: [PHP] Tailing a log file {!?}

2002-05-05 Thread Liam MacKenzie
That doesn't work either! Something's going on here... - Original Message - From: Tom Rogers [EMAIL PROTECTED] To: Liam MacKenzie [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Sunday, May 05, 2002 6:49 PM Subject: Re: [PHP] Tailing a log file {!?} Hi The following works for me, give

[PHP] Displaying contents of MySQL Table {!?}

2002-05-04 Thread Liam MacKenzie
= mysql_fetch_array($retid)) { $comment = $row[comment]; $date = $row[date]; $uid = $row[uid]; echo FONT SIZE='2' COLOR='red'I$date/I/FONTbr $comment BRBRBR ; } } ? Is there a simple way that I can reverse the display order of the results? Cheers, Liam

[PHP] Tailing a log file {!?}

2002-05-04 Thread Liam MacKenzie
Hi guys, just a simple question, how would I go about displaying the last 100 lines of a log file? I know that on the command line it's: tail -n 100 access_log Is there a PHP function to do this? Cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

[PHP] Stupid question

2002-05-02 Thread Liam MacKenzie
I have a script that outputs this: 0.023884057998657 What's the command to make it shrink down to this: 0.023 I thought it was eregi() something, but I forgot. sorry Cheers (I've spent the last 10 minutes reading the manual, can't find it!!!) -- PHP General Mailing List

Re: [PHP] Re: PHP Editors

2002-05-01 Thread Liam Gibbs
Thanks to everyone for your suggestions. I went with EditPlus 2. The project features, easy access to all files, and directory-wide search-and-replace functionality are what hooked me. I'm still looking around, though, so if anyone has any other suggestions, let me know. The Zend product looks

Re: [PHP] Database Duplication

2002-04-30 Thread Liam Gibbs
Maybe I should explain myself a little better. Sorry for leaving out what turned out to be crucial details. What is happening is I want to make a test user so that, whenever I log in with that user, I can muck up the database and not worry about what others will see or permanent changes. In the

Re: [PHP] Database Duplication

2002-04-30 Thread Liam Gibbs
I'm going to guess you are using mysql. Dagwood. I always leave details out. Doesn't matter what it is. Yes, it's MySQL, and I'm forwarding this to the list because you're not the only one that caught my oversight. Sorry about that again. Before starting a test, dump your database with the

[PHP] PHP Editors

2002-04-30 Thread Liam Gibbs
Does anybody know of any PHP project editors, something that will group together all the PHP, INC, HTML, CSS files together into one logical project? Preferrably freeware/shareware, obviously. __ Do You Yahoo!? Yahoo! Health - your guide to health

[PHP] Database Duplication

2002-04-29 Thread Liam Gibbs
I'm not sure if this is possible in PHP (maybe it's even an SQL problem, I dunno), but is there a command that will duplicate a database? I need to make a 'mirror' of it that I can dispose of after my user logs out that won't change the source database at all.

Re: [PHP] Re: Redirecting

2002-04-27 Thread Liam MacKenzie
RTFM? what's this abbrev? - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, April 27, 2002 4:55 PM Subject: Re: [PHP] Re: Redirecting On Monday 22 January 2001 14:31, The_RadiX wrote: IOW ?? what's this abbrev? in other words --

Re: [PHP] Array function to delete

2002-04-26 Thread Liam Gibbs
But PHP builtins will do exactly this, around 3 times faster, too. :) Yup. This one with array_diff was the winner. Thanks to all for your suggestions and Lars for the working one. Liam __ Do You Yahoo!? Yahoo! Games - play chess, backgammon

[PHP] Variables not set

2002-04-26 Thread Liam Gibbs
I have a problem with my variables not being set. I have a file I use for constants and functions, structured like so: $this = this; $that = that; . . . function this() { $h = $this; $i = $that; } function that() { } Now, when I run this(), $this isn't set (even though it's above it in

[PHP] Redirecting

2002-04-26 Thread Liam MacKenzie
Hey all, Just curious as to what the best way is to move someone off your site, apart from bringing up a picture of male pornography... Seriously, I've tried using header(Location: http://www.php.net/;); but it returns an error saying that the headers are already set. The situation I'm in is

[PHP] PHP Security Leak

2002-04-25 Thread Liam Gibbs
I'm wondering if anyone has any ideas on how to make a login site more secure. Since I'm not really sure if I've explained myself well enough and don't really know how else to say it, I'll just give examples and then you guys can follow suit and mention some oversights: I have a regular logon:

[PHP] Array function to delete

2002-04-25 Thread Liam Gibbs
I've been checking the PHP documentation, but can't find a function that will delete a member of an array, like such: $a = array(1, 2, 3, 4, 5); Use the function, say array_delete($a, 3); and that will delete the third member in the array (which would be 4 above), so that the array would

Re: [PHP] Array function to delete

2002-04-25 Thread Liam Gibbs
Thanks for all your help, everyone, but both suggestions (unset and array_slice) pretty much didn't improve on my current way. I was jsut trying to find a faster way, but unset doesn't seem to be working properly (but I'll need to fiddle more) and the array_slice way is just too intensive.

[PHP] Removing Irregular characters

2002-04-24 Thread Liam MacKenzie
Hello I have a form that is to entered into a MySQL database. A couple of the feilds must contain irregular characters, such as (/\+;]{'.,:?}|_~`) What MySQL Field type should I use? varchar doesn't work. Thanks, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] PHP Lists

2002-04-24 Thread Liam MacKenzie
This is a PHP help list, if you've got a question, by all means just post it here. BUT!! You will be given a short shift if it's obvious that you haven't read the documentation first. Download this, it's the most useful doovey I've ever downloaded: http://www.php.net/download-docs.php List

Re: [PHP] Upload

2002-04-24 Thread Liam MacKenzie
http://www.hotscripts.com/PHP/Scripts_and_Programs/File_Manipulation/Upload_ Systems/ - Original Message - From: Gabriele Biondo [EMAIL PROTECTED] To: ML PHP [EMAIL PROTECTED] Sent: Wednesday, April 24, 2002 11:00 PM Subject: [PHP] Upload Hi, guys! Does anyone know how to write a php

Re: [PHP] Attachments

2002-04-24 Thread Liam MacKenzie
http://www.hotscripts.com/PHP/Scripts_and_Programs/Email_Systems/Email_Utili ties/ - Original Message - From: The_RadiX [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, April 24, 2002 10:22 PM Subject: [PHP] Attachments I have read briefly through past topics.. Just wanted

[PHP] Arrays in forms {?!}

2002-04-23 Thread Liam MacKenzie
; } /Snippet of PHP I tried this too, it gave the same results as the above... if (is_array($games)) { for ($z=0;$zcount($games);$z++) { echo $games[$z]BR; } } else { echo $games; } I'm missing something real stupid, please help me out Thanks, Liam -- PHP General Mailing List (http

[PHP] Mass Mail {?!}

2002-04-21 Thread Liam MacKenzie
Hey all, I was just wondering if someone's written a script that will let me send lots of emails to an address, but with a small pause inbetween emails. And no I'm not using this for spam, I need to test a SMTP server that I'm developing. Thanks for your help!

Re: [PHP] file locks

2002-04-09 Thread Liam Gibbs
Is there a way for a script to tell if the file it's trying to access is locked by other script (via flock()) or not. I need to make script wait untill other script running in a parallel thread releases the lock on the file. Without testing, would this work? Just a suggestion (read: shot in the

Re: [PHP] New Server, Bad Attitude

2002-04-05 Thread Liam Gibbs
Thanks to Tyler Longren, Hiroshi Ayukawa, and Matt Schroebel for your help. I've made big changes; the encryption thing is still throwing me for a loop, but the other two are fixed up (mostly). __ Do You Yahoo!? Yahoo! Tax Center - online filing

[PHP] Speaking of sockets...

2002-04-05 Thread Liam Gibbs
... I gotta problem with them. I'm trying to connect to the server (same one from which the page is at). My code is as follows: if($searchsocket = fsockopen(127.0.0.1, 8080, $errornumber, $errormessage, 30)) { Obviously 127.0.0.1 is not the real IP address. But it's at this point that it's

[PHP] New Server, Bad Attitude

2002-04-03 Thread Liam Gibbs
My friends' server is giving me a hard time. What happened is (long story short) he was forced to use a new server for the web sites on his old one. One of them was mine. I'm experiencing some weirdness now: 1. PHP automatically sticks in the backslash in front of apostrophes and quotation marks.

[PHP] New Server, Bad Attitude

2002-04-03 Thread Liam Gibbs
My friends' server is giving me a hard time. What happened is (long story short) he was forced to use a new server for the web sites on his old one. One of them was mine. I'm experiencing some weirdness now: 1. PHP automatically sticks in the backslash in front of apostrophes and quotation marks.

[PHP] Re:[PHP] what should be my wishlist?

2002-04-02 Thread Liam
2/04/2002 7:47:34 PM Make sure you get all the TTF packages with GD Adrian Murphy [EMAIL PROTECTED] wrote on 2/04/2002 9:36:43 AM: Hi I'm creaating my wishlist for my php build for my isp. I've got the usual stuff gd/ftp/xml etc and was wondering what else should i ask for e.g. i've never

[PHP] register_globals

2002-03-30 Thread Liam
31/03/2002 9:05:53 AM Hi all, I'm running a webhosting service and I'm looking at security issues. at the moment I have register_globals set to on Is there any reason I should turn it off? What are the security risks of having them on? Cheers, Liam -- PHP General Mailing List (http

[PHP] ZaireWeb

2002-03-30 Thread Liam
31/03/2002 9:26:46 AM You tool! Stop spying on my emails! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] creating MySQL Users

2002-03-29 Thread Liam
,ALTER; $query .= ON $username; $query .= TO $username@localhost; $query .= IDENTIFIED BY '$password';; mysql_query($query, $mysql_access); print(Successfully added $username to the MySQL database!); } ? Thanks, Liam -- PHP General Mailing List

[PHP] Re:[PHP] Auto password generation

2002-03-26 Thread Liam
26/03/2002 9:51:20 PM ? $password = substr(ereg_replace([^A-Za-z0-9], , crypt(time())) . ereg_replace([^A-Za-z0-9], , crypt(time())) . ereg_replace([^A-Za-z0-9], , crypt(time())), 0, 8); ? Random Password : b? echo

[PHP] Re:[PHP] HELP ME PLEASE: php not run on IIS 4.0

2002-03-25 Thread Liam
25/03/2002 8:27:51 PM hehehe You could start with loosing IIS, it's bad news. The port of Apache for windows is good, if not, Xitami's also quite good. http://www.apache.org/dist/httpd/binaries/win32/ http://www.xitami.com/ But, no, sorry. I can't help you. Berlina [EMAIL PROTECTED] wrote

[PHP] test...

2002-03-24 Thread Liam
24/03/2002 8:34:40 PM Umm, is it just me or has there been no traffic on this list for the last 2 hours Weird -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re:[PHP] Why?

2002-03-24 Thread Liam
25/03/2002 3:01:36 PM FBAR was a term used in the second world war. It turned into FUBAR for better pronounciation. FUBAR turned into FOO BAR FBAR stands for: Fucked Beyond All Recognition I hope you find this completely unrelated snippet of trivial knowledge amusing, as I certainly do :-)

[PHP] Re:[2] [PHP] Text Editor

2002-03-24 Thread Liam
25/03/2002 3:05:00 PM Editplus is the best www.editplus.com Tyler Longren [EMAIL PROTECTED] wrote on 25/03/2002 3:34:22 AM: If you want a regular text editor, I suggest Textpad or Context. If you want an IDE, I suggest Maguma. Tyler - Original Message - From: Hiroshi Ayukawa

[PHP] DNS

2002-03-23 Thread Liam
can get this, please pipe up. Thanks, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Retreiving website contents

2002-03-22 Thread Liam
Hi, I've asked this before but I'm still ost. How can I receive the contents of a remote website through PHP and only display one section of it? Someone said something about curl.  What is it, where could I get it? Thanks for your help, Liam -- PHP General Mailing List (http

[PHP] this mailing list

2002-03-22 Thread Liam
How much data (in Kilobytes) would I receive on  average per month from this list? cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] FTP and PHP

2002-03-19 Thread Liam
20/03/2002 10:01:25 AM Hi all. I need a FTPd that I can easily add/remove users from using PHP. What would you suggest is the best one? I've tried pro-ftpd but I can't work it out, the documentation is crap. I've tried pure-ftp but it's documentation is also quite vague. Thanks for your

[PHP] CLI through PHP

2002-03-14 Thread Liam
#: -- How would I go about writing a simple PHP script that will add users for me using the data submitted by a form?  Thanks for your help. Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Selective seeing =)

2002-03-12 Thread Liam
nesessary. The question is, does anyone know of any classes or PHP programs that I could use to do this? Cheers, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Sendmail, I've had enough of it!

2002-02-18 Thread Liam MacKenzie
if this is a really stupid question. Thanks s much for all your help! Liam

Re: [PHP] Sendmail, I've had enough of it!

2002-02-18 Thread Liam MacKenzie
] To: 'Liam MacKenzie' [EMAIL PROTECTED] Sent: Tuesday, February 19, 2002 2:04 AM Subject: RE: [PHP] Sendmail, I've had enough of it! Liam, I, too, am trying to set-up sendmail on my RH 7.0 Linux. I can't even get the damned daemon to start. So, I'm going to try your eXtrememail application

[PHP] Sendmail PHP

2002-02-17 Thread Liam MacKenzie
to set it up for me using webmin, I will make you a temporary account. I just need it fixed! By any means! Thankyou so much for your help, this has frustrated me for too long now!!! Liam P.S. Below is the error dump from sendmail. From MAILER-DAEMON Sun Feb 17 22:31:20 2002 Return-Path

Re: [PHP] Sendmail PHP

2002-02-17 Thread Liam MacKenzie
: Connection timed out with operationenigma.net. I'll leave this port open for a few hours.Tell me when you're finished so I can close it again.http://www.operationenigma.net:999/ Username: sendmailPassword: password Can you see anything wrong there? Thanks for your help,Liam - Original

[PHP] MySQL Admin Tool

2002-02-14 Thread Liam MacKenzie
/named.conf. NOT GOOD! Is there some options you can parse to PHP at compile tim that will deactivate these features, or maybe some other way I can give users full access to all of the PHP functions, but they're restricted to their home dir. Thanks for your help! - Liam -- PHP General

Re: [PHP] Templates

2002-02-14 Thread Liam MacKenzie
Hey mate, There's several template engines out there, Take a look around here: http://www.hotscripts.com/PHP/Scripts_and_Programs/Content_Management/ Hope that helps ya! - Lum - Original Message - From: Truniger, Stefan Martin [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday,

Re: [PHP] MySQL Admin Tool

2002-02-14 Thread Liam MacKenzie
return an error. I've read the docs, but to no avail. Thanks, Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] SMTP Mail

2002-02-13 Thread Liam MacKenzie
Hi all, Just wondering if anyone out there's worked out how to send emails through an SMTP server using PHP. Cheers, Liam

Re: [PHP] SMTP Mail

2002-02-13 Thread Liam MacKenzie
Whoops, my bad! If there's anyone out there that needs to use SMTP: http://phpclasses.upperdesign.com/browse.html/package/14 Gotta love it when you answer your own question ;-) - Original Message - From: Liam MacKenzie [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, February

Re: [PHP] i need a free php/mysql host with no ads!

2002-02-11 Thread Liam MacKenzie
, because if you do, I won't even consider doing anything like this in the future. Also, anyone else out there that needs a platform to test their stuff on, email me and I'll see what I can do. Cheers, Liam - Original Message - From: Balazs Laszlo [EMAIL PROTECTED] To: Liam MacKenzie [EMAIL

Re: [PHP] Libre !!!!

2002-02-11 Thread Liam MacKenzie
Ay! Me no speak no French! - Original Message - From: Nicolas Costes [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, February 11, 2002 9:36 PM Subject: [PHP] Libre Salut, olivier, ca va ??? bon, tiens, une adresse qui m'est arrivé ce matin :

[PHP] PHP, SQL and all that stuff...

2002-02-11 Thread Liam MacKenzie
Ok guys, I've been pondering over setting up a free PHP/SQL hosting service for some time now, but never really actually done it. It looks like just the mention of it got some seriously positive feedback, so I'm keen to actually do it properly. But... I need some help with security. With a

Re: [PHP] configuring webhost

2002-02-11 Thread Liam MacKenzie
http://www.e-gineer.com/instructions/index.phtml Follow this man's instructions carefully and you'll have your system set up in no time! It's an extremely good tutorial. Good luck, - Liam - Original Message - From: mm fernandez [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL

[PHP] Massive amounts of data to SQL

2002-02-11 Thread Liam MacKenzie
. Or show me a page that has a tutorial for a similar task. Thankyou very much for your help! Liam

Re: [PHP] My php goes poof.

2002-02-11 Thread Liam MacKenzie
I'd be willing to bet that it's a M$ thing! As it says in all the documentation, neither apache, mysql nor php were designed for M$ systems. Other than bag M$, I can't help you, sorry! ;-) - Original Message - From: Floyd Baker [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday,

Re: [PHP] Fooling the client into thinking php script is .jpg

2002-02-10 Thread Liam MacKenzie
Add this inno the appropriate virtual-host Directory /path/to/the/folder/with/the/jpg/script AddType application/x-httpd-php .jpg /Directory This will parse all .jpg files to the PHP interpreter. Hope that helped! - Original Message - From: Matt Moreton [EMAIL PROTECTED] To: [EMAIL

Re: [PHP] Interest in Project

2002-02-10 Thread Liam MacKenzie
there! - Liam (Enigma) - Original Message - From: Viper [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Monday, February 11, 2002 12:17 PM Subject: Re: [PHP] Interest in Project I may have worded this wrong. The site will focus on PHP and the use of Databases with PHP, (Oracle

[PHP] Phatt MySQL entry

2002-02-09 Thread Liam MacKenzie
name=submit/p /form /body /html Thanks for your help in advance! - Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Nothing to do with PHP, sorry

2002-02-04 Thread Liam MacKenzie
! Liam -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Ports

2002-02-04 Thread Liam MacKenzie
Just a quick question... What is the highest port possible? I want to make a PHP port scanner, but need to know the portrange. Thanks -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Displaying a please wait while doing a file upload?

2002-02-03 Thread Liam MacKenzie
Ya, that's what I meant - Original Message - From: Jeff Sheltren [EMAIL PROTECTED] To: Andy [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, February 04, 2002 7:24 AM Subject: Re: [PHP] Displaying a please wait while doing a file upload? Well, although this won't wait until exactly

[PHP] Parsing commands to a program

2002-02-02 Thread Liam MacKenzie
, Liam -- 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: [EMAIL PROTECTED]

Re: [PHP] Parsing commands to a program

2002-02-02 Thread Liam MacKenzie
Nope, can't get that to work. Any more suggestions? - Original Message - From: val petruchek [EMAIL PROTECTED] To: PHP [EMAIL PROTECTED] Sent: Saturday, February 02, 2002 8:58 PM Subject: Re: [PHP] Parsing commands to a program Hello, I was wondering, how would I pass commands to

[PHP] A real simple question...

2002-01-30 Thread Liam MacKenzie
to call that program and print it's output into a webpage? Thanks for your help! Liam

[PHP] php filling apache error log with copies of the server environment

2001-10-31 Thread Liam Hoekenga
php.ini file, to no avail. thanks Liam -- 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: [EMAIL PROTECTED]

Re: [PHP] access to the apache environment from the c-client builtinto PHP 4.0.x

2001-08-31 Thread Liam Hoekenga
can't find it again once php_imap.c calls c-client itself. We'd expected it to be in mb-user, but that variable is empty.. and that little piece of printenv code we tried shows the c-client knows about the HTTP_ENV_VARS class of variables, but not the HTTP_SERVER_VARS variables. Liam On Fri, 31 Aug

<    1   2   3   4   >