Re: [PHP] ftp_put and ftp_chmod does not work

2006-10-10 Thread Chris
When safe mode is enabled, PHP checks whether the files or directories you are about to operate on have the same UID (owner) as the script that is being executed. In addition, you cannot set the SUID, SGID and sticky bits. It means that the UID (owner) of the folder ought to be the apache us

Re: [PHP] Apply the hyper link ( javascript functon ) with php

2006-10-10 Thread Andrei
Make sure your $dir variable isn't containing the path to your file from your OS file system. This should be an apache (or whatever) path (an URL). Andy [EMAIL PROTECTED] wrote: > Richard Lynch wrote: > >> On Sun, October 8, 2006 6:53 pm, [EMAIL PROTECTED] wrote: >> >> >>> How to apply the f

Re: [PHP] Re: moving to other web server

2006-10-10 Thread Chris
David Robley wrote: Afan Pasalic wrote: hi to all, we are moving our web server from one to other hosting company. we have chance to request what version of php i want to be installed, 4 or 5. Current web server works on php 4.3.4 we don't use any classes, functions only. as far as I know, in o

[PHP] Re: moving to other web server

2006-10-10 Thread David Robley
Afan Pasalic wrote: > hi to all, > we are moving our web server from one to other hosting company. we have > chance to request what version of php i want to be installed, 4 or 5. > Current web server works on php 4.3.4 we don't use any classes, > functions only. as far as I know, in our case movin

[PHP] moving to other web server

2006-10-10 Thread Afan Pasalic
hi to all, we are moving our web server from one to other hosting company. we have chance to request what version of php i want to be installed, 4 or 5. Current web server works on php 4.3.4 we don't use any classes, functions only. as far as I know, in our case moving from 4 to 5 shouldn't be

Re: [PHP] Stored procs and transactions using Linux/PHP and Windows/MSSQL

2006-10-10 Thread Chris
Rick Emery wrote: Is anyone using PHP5 on Linux to connect to MS SQL Server 2000 on Windows and execute stored procedures with output parameters within a transaction? If so, how? I'm trying to do something like this in the PHP application: begin transaction execute a stored procedure, receivi

[PHP] Re: OOP slow -- am I an idiot?

2006-10-10 Thread Manuel Lemos
Hello, on 10/10/2006 08:14 PM Chris de Vidal said the following: > I think perhaps I'm using classes and OOP incorrectly. The last time I used them, they were slow. Your problem has nothing to do with OOP . It is the number of queries that are making it solow. Creating an object takes microsecon

Re: [PHP] Seperate HTML from PHP

2006-10-10 Thread Chris
Sancar Saran wrote: Hi there, following words are my ideas about that HTML PHP parting. I hope you can understand my broken english and do not take personally. SEPERATING html FROM php ARE USELESS Try customising a CMS (any open source) with html embedded in the php... Good luck and get back

Re: [PHP] Working with overly aggressive anti-spam measures [SOLVED]

2006-10-10 Thread Dave M G
Travis, Richard, Chris, Thank you for your helpful advice. I've managed to set the Return-Path correctly now, and Spamassassin is now only giving me the whitelist error, which I don't think I'm going to get rid of. It took me a little while to realize that the Spamassassin always says that

Re: [PHP] OOP slow -- am I an idiot?

2006-10-10 Thread Johan Martin
On 10 Oct 2006, at 4:14 PM, Chris de Vidal wrote: I think perhaps I'm using classes and OOP incorrectly. The last time I used them, they were slow. I want to create a "customer" class which fetches its attributes from a MySQL database. Something like this pseudocode: class customer

Re: [PHP] OOP slow -- am I an idiot?

2006-10-10 Thread Larry Garfield
For your rudimentary example of object-relational mapping below, yes, performance is going to be atrocious. That's because you're not taking any advantage of the features that using OOP gives you. One could write a dissertation on this problem, but I will just give you some general guidelines

Re: [PHP] OOP slow -- am I an idiot?

2006-10-10 Thread Chris
Chris de Vidal wrote: I think perhaps I'm using classes and OOP incorrectly. The last time I used them, they were slow. The examples you provided shows that it's not OOP that's the problem, it's how your getting the data as you suspected. Doing tons of queries is going to be slow whether y

[PHP] OOP slow -- am I an idiot?

2006-10-10 Thread Chris de Vidal
I think perhaps I'm using classes and OOP incorrectly. The last time I used them, they were slow. I want to create a "customer" class which fetches its attributes from a MySQL database. Something like this pseudocode: class customer { ... getName ($id) { $result =

Re: [PHP] need help to build a query

2006-10-10 Thread John Wells
On 10/10/06, Richard Lynch <[EMAIL PROTECTED]> wrote: This is a lot more subtle problem than it seems at first glance, eh? Yup, sure is. Thanks for the detailed response, so helpful as always. -John W -- Some people have a "gift" link here. Know what I want? I want you to buy a CD from so

Re: [PHP] Using mysql_real_escape_string

2006-10-10 Thread Richard Lynch
On Mon, October 9, 2006 1:53 pm, Alan Milnes wrote: > $filename="input/w2wcheck.txt"; > > echo "$filename"; > > # Open file > $fptr = fopen($filename, "r"); > > # Check if file is open > if($fptr) { > $current_line = fgets($fptr,4096); > > $retval = TRUE; > echo "open"; > > wh

Re: [PHP] Working with overly aggressive anti-spam measures

2006-10-10 Thread Travis Doherty
Dave M G wrote: > 1. Spamassassin says: > > Spam detection software, running on the system "homebase", has > identified this incoming email as possible spam. [...] > > Content analysis details: (0.3 points, 5.0 required) > > pts rule name description > -- >

Re: [PHP] ECHO $variable

2006-10-10 Thread benifactor
thank you for schooling me :) i learn something new everyday! - Original Message - From: "Richard Lynch" <[EMAIL PROTECTED]> To: "benifactor" <[EMAIL PROTECTED]> Cc: Sent: Monday, October 09, 2006 11:02 AM Subject: Re: [PHP] ECHO $variable > On Mon, October 9, 2006 7:45 am, benifactor

Re: [PHP] need help to build a query

2006-10-10 Thread Richard Lynch
In MySQL, you can do "explain $query" to see what MySQL estimates will be the workload. Interpreting that output is more art than science, but with practice, you can at least avoid SOME querie that will drive your server to its knees. I did work on a PostgreSQL search engine once where we did a s

Re: [PHP] Question about Arrays

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 1:04 pm, Alex Major wrote: > I have a table, which contains 'setting' information for my website. > The table has the following columns: setting_id, setting_name and > setting_value. > Now there are currently 30 settings stored in this table, however i am > having trouble p

Re: [PHP] foreach

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 1:14 pm, João Cândido de Souza Neto wrote: > $numbers=array(1,2,3,4,5); > foreach ($numbers as number) { > ... > } > > Inside foreach, could i know if i am in the last element of the array > $numbers? In general, you can't. If the elements are unique, you could do: $

Re: [PHP] PHP Mailer and SMTP = SPAM?

2006-10-10 Thread David Giragosian
-- Forwarded message -- From: Roman Neuhauser <[EMAIL PROTECTED]> Date: Oct 10, 2006 5:11 PM Subject: Re: [PHP] PHP Mailer and SMTP = SPAM? To: David Giragosian <[EMAIL PROTECTED]> # [EMAIL PROTECTED] / 2006-10-10 12:49:11 -0500: Do you realize how many Vietnam war veterans you'r

Re: [PHP] php and mysql date mapping question

2006-10-10 Thread Jochem Maas
Dave Goodchild wrote: > Hi all, I am in the process of creating a national events directory where > people can enter their events (car boot sales, evening classes etc) and > specify whether those events are one-ff events or repeating (daily, weekly > etc) affairs and people can search for those eve

[PHP] [JOB] PHP Book Tech Reviewer

2006-10-10 Thread Larry E. Ullman
I'm currently writing the second edition of my PHP Advanced book and need a technical reviewer. It is a paid job and some people think it's interesting/looks good on a resume/etc. Obviously you'll need to be an expert in PHP and pay close attention to detail. My definition of "advanced" for

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: > > > > but the page is still

Re: [PHP] need help to build a query

2006-10-10 Thread afan
ok. got the point. > > > > On Mon, October 9, 2006 3:09 pm, [EMAIL PROTECTED] wrote: >> But, in this case I will have repeating order_date and order_status >> info? >> >> idorder_datestatusfile_name >> 122006-10-09live file1.jpg >> 122006-10-09live file2.jpg >

Re: [PHP] need help to build a query

2006-10-10 Thread afan
sure it is! ;) > On Mon, October 9, 2006 2:58 pm, John Wells wrote: >> On 10/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >>> but I know there must be much better solution then this one. >> >> You're right: Simply JOIN your queries... >> >> SELECT order_id, order_date, order_status, file_nam

Re: [PHP] need help to build a query

2006-10-10 Thread Richard Lynch
On Mon, October 9, 2006 3:09 pm, [EMAIL PROTECTED] wrote: > But, in this case I will have repeating order_date and order_status > info? > > idorder_datestatusfile_name > 122006-10-09live file1.jpg > 122006-10-09live file2.jpg > 122006-10-09live

Re: [PHP] need help to build a query

2006-10-10 Thread Richard Lynch
On Mon, October 9, 2006 2:58 pm, John Wells wrote: > On 10/9/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: >> but I know there must be much better solution then this one. > > You're right: Simply JOIN your queries... > > SELECT order_id, order_date, order_status, file_name > FROM orders >

Re: [PHP] need help to build a query

2006-10-10 Thread Richard Lynch
On Mon, October 9, 2006 2:44 pm, [EMAIL PROTECTED] wrote: > I have table orders with primary key order_id. I have table > uploaded_files > with primary key ufid and uploaded files are linked to orders by > order_id > column. > > I have to list all orders and uploaded files. this works fine: > > $qu

RE: [PHP] Re: Understanding persistent connections with oci8

2006-10-10 Thread Bauer, Jay W
Hello Richard, First let me introduce myself, I'm Jay Bauer and have been supporting the Apache webserver for the last couple of years and have been doing networking support for over 15 years. I want to thank you for explaining why the folks replying to our lab's enquiries don't think the tests

Re: [PHP] Re: set cookie with non-english

2006-10-10 Thread Richard Lynch
On Mon, October 9, 2006 6:21 pm, Nisse Engström wrote: >No matter. Thanks for the information. By the bye, > are we talking IE in general, or specific versions > thereof? Put it this way: *ANYTHING* you can say about IE at all, is not about IE in general, but only about specific versions the

Re: [PHP] Working with overly aggressive anti-spam measures

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 3:01 am, Dave M G wrote: > Content analysis details: (0.3 points, 5.0 required) > > pts rule name description > -- > -- > 0.3 AWLAWL: From: address is in the auto >

Re: [PHP] Working with overly aggressive anti-spam measures

2006-10-10 Thread Richard Lynch
On Mon, October 9, 2006 9:01 pm, Chris wrote: > You can't change that parameter if safe-mode is on for the server or > if > exim doesn't have the webserver user as a 'trusted-user' (I think only > exim is affected by this particular issue). Almost-for-sure sendmail has the same issue. Or maybe yo

Re: [PHP] Working with overly aggressive anti-spam measures

2006-10-10 Thread Richard Lynch
On Mon, October 9, 2006 8:55 pm, Dave M G wrote: > If possible, can anyone help me with creating the PHP code that will > make an email as legitimate as it can be? I know I can't totally > prevent > my email from being marked as spam (after all, if it were possible, > all > the spammers would do it

Re: [PHP] unexpected T_STRING parse error

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 2:18 am, Ilaria De Marinis wrote: > PHP Parse error: parse error, unexpected T_STRING in > /var/www/html/dummy/typo3conf/ext/direct_mail/locallang_tca.xml on > line 1 > > This is line 1 of locallang_tca.xml file > > > I try to switch "short_open_tag" to off in php.ini, bu

Re: [PHP] Passing JAVASCRIPT variable to PHP Script...

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 5:09 am, Captain wrote: > Hi geeks, Hi, non-listener... You do realize you posted much the same question yesterday, right? Do you think our answer will have changed in 24 hours? Actually, it will change. I have GIVEN UP trying to tell you the RIGHT WAY to do this, and

Re: [PHP] foreach

2006-10-10 Thread Jo�o C�ndido de Souza Neto
You´re right, in my example here i could just use a for loop. But in my real code it´s better to use foreach. Thanks for your tip. -- João Cândido de Souza Neto Curitiba Online [EMAIL PROTECTED] (41) 3324-2294 (41) 9985-6894 http://www.curitibaonline.com.br "Brad Bonkoski" <[EMAIL PROTECTE

Re: [PHP] PHP Mailer and SMTP = SPAM?

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 7:06 am, Peter Lauri wrote: > 1.We have setup an email that do have an inbox and is REAL. We have > an > mailbox connected to it and can send and read emails from it via > webmail and > pop > 2.We have an SMTP server that requires authentication > 3.We are going

Re: [PHP] foreach

2006-10-10 Thread John Nichel
Chris Boget wrote: $last = end ( $numbers ); reset ( $numbers ); I thought foreach() already performed a reset()? Why do it again here? Well, corn my fritters, according to TFM, it does this indeed. Maybe an old dog can learn new tricks. ;) -- John C. Nichel IV Programmer/System Admin

Re: [PHP] Apply the hyper link ( javascript functon ) with php

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 7:57 am, [EMAIL PROTECTED] wrote: > php web page ( test.php ) : > > > > > > Test > > Result : "homepage error" > > Web Server error log : > > [Tue Oct 10 18:07:36 2006] [erro

Re: [PHP] foreach

2006-10-10 Thread Chris Boget
$last = end ( $numbers ); reset ( $numbers ); I thought foreach() already performed a reset()? Why do it again here? thnx, Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] foreach

2006-10-10 Thread John Nichel
João Cândido de Souza Neto wrote: Hello. In the follow code: $numbers=array(1,2,3,4,5); foreach ($numbers as number) { ... } Inside foreach, could i know if i am in the last element of the array $numbers? $last = end ( $numbers ); reset ( $numbers ); foreach ( $numbers as $number ) {

Re: [PHP] foreach

2006-10-10 Thread Brad Bonkoski
João Cândido de Souza Neto wrote: Hello. In the follow code: $numbers=array(1,2,3,4,5); foreach ($numbers as number) { ... } Inside foreach, could i know if i am in the last element of the array $numbers? Sure, maintain a count in the foreach and then compare to count($numbers)..but

[PHP] foreach

2006-10-10 Thread Jo�o C�ndido de Souza Neto
Hello. In the follow code: $numbers=array(1,2,3,4,5); foreach ($numbers as number) { ... } Inside foreach, could i know if i am in the last element of the array $numbers? -- João Cândido de Souza Neto Curitiba Online [EMAIL PROTECTED] (41) 3324-2294 (41) 9985-6894 http://www.curitibaonl

[PHP] Question about Arrays

2006-10-10 Thread Alex Major
Hi List. I have a table, which contains 'setting' information for my website. The table has the following columns: setting_id, setting_name and setting_value. Now there are currently 30 settings stored in this table, however i am having trouble pulling values out on a 'as needed' basis. At the

[PHP] php and mysql date mapping question

2006-10-10 Thread Dave Goodchild
Hi all, I am in the process of creating a national events directory where people can enter their events (car boot sales, evening classes etc) and specify whether those events are one-ff events or repeating (daily, weekly etc) affairs and people can search for those events by postcode, date range,

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: > > 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? All the head

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: > > but the page is still being cached. I'm not sure if its apache or the > php. How can I disable all caching? > is there something I can set in php.ini? > > (Mac OS X Server) > > Thanks > > Ben > > -- > PHP General Maili

Re: [PHP] PHP Mailer and SMTP = SPAM?

2006-10-10 Thread David Giragosian
How many Vietnam vets does it take to screw in a light bulb? You don't know, man. You don't KNOW. Cause you weren't THERE. http://bash.org/?255991 How many Boomer wannabes does it take to pollute a mailing list? Just one, <[EMAIL PROTECTED]>, MAN! David

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: http://uk

Re: [PHP] PHP Mailer and SMTP = SPAM?

2006-10-10 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2006-10-10 19:06:53 +0700: > I am developing a "tell-a-friend" application for one of my customers. We > are going to have it all located on their server, and want to make sure we > take the right decisions on the road so that we don't spam mark our server > and don't end up i

Re: [PHP] ereg_replace with user defined function?

2006-10-10 Thread Roman Neuhauser
# [EMAIL PROTECTED] / 2006-10-09 22:01:34 +0200: > Thank you Ilaria and Roman for your input. I did not know that preg > is able to deal with PCRE patterns. "preg" is obviously short for "Perl REGular expressions", while PCRE positively means Perl-Compatible Regular Expressions. The

[PHP] Disable all caching

2006-10-10 Thread Benjamin Adams
I have a php (ver 4.x) script that is being cached. I have placed: but the page is still being cached. I'm not sure if its apache or the php. How can I disable all caching? is there something I can set in php.ini? (Mac OS X Server) Thanks Ben -- PHP General Mailing List (http://www.php.n

Re: [PHP] Apply the hyper link ( javascript functon ) with php

2006-10-10 Thread edwardspl
clive wrote: > >> Hello to you, >> >> php web page ( test.php ) : >> >> >> >> >> >> Test >> >> Result : "homepage error" >> >> Web Server error log : >> >> [Tue Oct 10 18:07:36 2006] [error] [c

Re: [PHP] Passing JAVASCRIPT variable to PHP Script...

2006-10-10 Thread tedd
At 3:09 AM -0700 10/10/06, Captain wrote: If it is not possible, plz give any other solution. Expecting ur reply. It's possible, but why not do it in php -- it's simpler -- like: '; $html_output .= 'File Name: '.$HTTP_POST_FILES['userfile']['name'].''; $html_output .= 'File Size: '.$HTTP_POS

Re: [PHP] Passing JAVASCRIPT variable to PHP Script...

2006-10-10 Thread David Tulloh
Captain wrote: > Hi geeks, > i am uploading a file to server. Uploading part is working fine. i > am struggle with minor part. actually before uploading file, i am checking > for existance of a file. If it is not exists, directly i am uploading that > file. If it exists, i sud ask user th

Re: [PHP] Apply the hyper link ( javascript functon ) with php

2006-10-10 Thread clive
Hello to you, php web page ( test.php ) : Test Result : "homepage error" Web Server error log : [Tue Oct 10 18:07:36 2006] [error] [client 202.108.22.70] File does not exist: /home/web/index.htm [Tue

Re: [PHP] Apply the hyper link ( javascript functon ) with php

2006-10-10 Thread edwardspl
Richard Lynch wrote: >On Sun, October 8, 2006 6:53 pm, [EMAIL PROTECTED] wrote: > > >>How to apply the following function with php ? >> Test >> >> > >If you're new to PHP, be a minimalist, and pull out PHP only when you >absolutely have to: > > Test > >Since $dir is the ONLY part you want

Re: [PHP] ftp_put and ftp_chmod does not work

2006-10-10 Thread Jo�o C�ndido de Souza Neto
"Chris" <[EMAIL PROTECTED]> escreveu na mensagem news:[EMAIL PROTECTED] > João Cândido de Souza Neto wrote: >> Hello everyone. >> >> I have got some parts of my system where some files are sent and i use >> ftp functions to save suche files. >> >> When i run it in my local machine, it works fi

Re: [PHP] Using mysql_real_escape_string

2006-10-10 Thread Alan Milnes
Thanks everyone. Alan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP Mailer and SMTP = SPAM?

2006-10-10 Thread Peter Lauri
Hi, I am developing a "tell-a-friend" application for one of my customers. We are going to have it all located on their server, and want to make sure we take the right decisions on the road so that we don't spam mark our server and don't end up in the SPAM inbox of the recipients. This is how I

RE: [PHP] Seperate HTML from PHP

2006-10-10 Thread Peter Lauri
Have you tried Smarty (smarty.php.net)? -Original Message- From: Sancar Saran [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 3:43 PM To: php-general@lists.php.net Subject: [PHP] Seperate HTML from PHP Hi there, following words are my ideas about that HTML PHP parting. I hope y

Re: [PHP] Passing JAVASCRIPT variable to PHP Script...

2006-10-10 Thread Penthexquadium
On Tue, 10 Oct 2006 03:09:42 -0700 (PDT), Captain <[EMAIL PROTECTED]> wrote: > > Hi geeks, > i am uploading a file to server. Uploading part is working fine. i > am struggle with minor part. actually before uploading file, i am checking > for existance of a file. If it is not exists, dir

[PHP] Passing JAVASCRIPT variable to PHP Script...

2006-10-10 Thread Captain
Hi geeks, i am uploading a file to server. Uploading part is working fine. i am struggle with minor part. actually before uploading file, i am checking for existance of a file. If it is not exists, directly i am uploading that file. If it exists, i sud ask user that "This file is exits.

Re: [PHP] unexpected T_STRING parse error

2006-10-10 Thread Ilaria De Marinis
It's impossible for me to make this change. xml files are packaged in external modules. I can't manipulate them! Penthexquadium wrote: On Tue, 10 Oct 2006 09:18:18 +0200, Ilaria De Marinis <[EMAIL PROTECTED]> wrote: Hi list, I got a php error in my apache log: PHP Parse error: parse erro

Re: [PHP] If array()

2006-10-10 Thread Jochem Maas
Philipp Schwarz wrote: > Try this: > > if (is_array($array) && count($array)) { given that your not interested in the actual count of the array, only that is is not empty, save yourself a couple of CPU cycles and use empty() instead ... if (is_array($array) && !empty($array)) { foreach

[PHP] Seperate HTML from PHP

2006-10-10 Thread Sancar Saran
Hi there, following words are my ideas about that HTML PHP parting. I hope you can understand my broken english and do not take personally. SEPERATING html FROM php ARE USELESS For years, some php users try to show php to look like other programming languages like C or JAVA. I believe they try

Re: [PHP] If array()

2006-10-10 Thread Chris
John Taylor-Johnston wrote: How can I use "if" to see an array contains something? php.net/in_array -- Postgresql & php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] If array()

2006-10-10 Thread Philipp Schwarz
Try this: if (is_array($array) && count($array)) { ... } John Taylor-Johnston schrieb: How can I use "if" to see an array contains something? if ($array()) does not work, of course. John -- Mit freundlichen Grüßen Philipp Schwarz - comtr

[PHP] If array()

2006-10-10 Thread John Taylor-Johnston
How can I use "if" to see an array contains something? if ($array()) does not work, of course. John -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] unexpected T_STRING parse error

2006-10-10 Thread Penthexquadium
On Tue, 10 Oct 2006 09:18:18 +0200, Ilaria De Marinis <[EMAIL PROTECTED]> wrote: > Hi list, > I got a php error in my apache log: > > PHP Parse error: parse error, unexpected T_STRING in > /var/www/html/dummy/typo3conf/ext/direct_mail/locallang_tca.xml on line 1 > > This is line 1 of locallang_

Re: [PHP] Working with overly aggressive anti-spam measures

2006-10-10 Thread Chris
Dave M G wrote: Travis, Chris, Thank you for your advice. I've installed spamassassin and I'm using it to monitor how well my PHP generated emails rate as spam. So far, I'm not doing well. I have two main issues so far: 1. Spamassassin says: Spam detection software, running on the system "

Re: [PHP] Working with overly aggressive anti-spam measures

2006-10-10 Thread Dave M G
Travis, Chris, Thank you for your advice. I've installed spamassassin and I'm using it to monitor how well my PHP generated emails rate as spam. So far, I'm not doing well. I have two main issues so far: 1. Spamassassin says: Spam detection software, running on the system "homebase", has id

[PHP] unexpected T_STRING parse error

2006-10-10 Thread Ilaria De Marinis
Hi list, I got a php error in my apache log: PHP Parse error: parse error, unexpected T_STRING in /var/www/html/dummy/typo3conf/ext/direct_mail/locallang_tca.xml on line 1 This is line 1 of locallang_tca.xml file I try to switch "short_open_tag" to off in php.ini, but I got a bad page visu

[PHP] Removing quotes

2006-10-10 Thread John Taylor-Johnston
Someone kindly gave me this once. I now need to reverse engineer it to remove the quotes and plus signs from $searchenquiry. Is it as simple as this? // FINAL RESULT: [+"john" +"johnston"] $sEnquiry = preg_replace("/\s+/", "+", $sEnquiry); // RESULT: ["john" "johnston"] $sEnquiry