Re: [PHP] PHP and curl

2013-09-26 Thread Shawn McKenzie
Unfortunately this isn't anything to do with PHP. I don't have any info on the app, what it's supposed to return or what the parameter passed should be. The PHP soap call is working, but the app isn't returning what you want or expect I guess. On Thu, Sep 26, 2013 at 8:36 AM, Alf Stockton wrot

Re: [PHP] PHP and curl

2013-09-25 Thread Shawn McKenzie
Keep on list. $result = $client->GetSequenceNo( "CIS" ); shouldn't be throwing that error. Maybe you are trying to do something with $result afterwards? Try var_dump($result); On Wed, Sep 25, 2013 at 10:12 AM, Alf Stockton wrote: > > On 25/09/13 16:52, Shawn McKenzie wrote: > > $client->GetS

Re: [PHP] PHP and curl

2013-09-25 Thread Shawn McKenzie
SOAP functions can be called as methods of the SoapClient object. Maybe: $client->GetSequenceNo( $parameters ); -Shawn On Wed, Sep 25, 2013 at 9:17 AM, Alf Stockton wrote: > In an attempt to interface with a webservice on a Windows 7 server I have > started writing the following:- > [code] >

[PHP] PHP and curl

2013-09-25 Thread Alf Stockton
In an attempt to interface with a webservice on a Windows 7 server I have started writing the following:- [code] $client = new SoapClient("http://192.168.0.10/CISWebService/Mediamanager.asmx?WSDL";); var_dump($client->__getFunctions()); $result = $client->__doRequest("GetSequenceNo

RE: [PHP] PHP and Powershell

2013-07-22 Thread Alan Loos
...@gmail.com] Sent: Monday, July 22, 2013 4:09 AM To: Alan Loos Cc: php-general@lists.php.net Subject: Re: [PHP] PHP and Powershell Hi, Thanks for your change. I understand what has happend, from MSDN forums http://social.technet.microsoft.com/Forums/windowsserver/en-US/4b841530-9d8c-4d09-a77c-b89c6e

Re: [PHP] PHP and Powershell

2013-07-22 Thread Serge Fonville
f46c9f15-70b4-496c-a9d6... > NotConnected > > [5] => > > [6] => > > ) > > > > End Of Scene > -- > > > > > > *Alan Loos* > > > > CONFIDENTIALITY NOTICE: This e-mail and the attachment(s)

RE: [PHP] PHP and Powershell

2013-07-19 Thread Alan Loos
ccompanying attachment(s) is strictly prohibited. If you have received this e-mail in error, please immediately notify the sender by return e-mail. From: Serge Fonville [mailto:serge.fonvi...@gmail.com] Sent: Friday, July 19, 2013 12:16 PM To: Alan Loos Cc: php-general@lists.php.net Subject: Re: [P

Re: [PHP] PHP and Powershell

2013-07-19 Thread Tedd Sperling
To all: Sorry for top posting and sorry for sounding like the list-police, but you need to trim the excess from your post. Hitting reply without considering that other have to read through a bunch of old add-on email is not good. So, please just trim your post to what is important. Cheers, te

Re: [PHP] PHP and Powershell

2013-07-19 Thread Serge Fonville
d and intended only for > the addressee(s) hereof. If you are not an intended recipient, you are > hereby notified that any disclosure, copying, distribution or use of this > e-mail and/or the accompanying attachment(s) is strictly prohibited. If you > have received this e-mail in error,

RE: [PHP] PHP and Powershell

2013-07-19 Thread Alan Loos
mailto:serge.fonvi...@gmail.com] Sent: Friday, July 19, 2013 11:13 AM To: Alan Loos Cc: php-general@lists.php.net Subject: Re: [PHP] PHP and Powershell How have you determined that invoke-command requires -computername? Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.

Re: [PHP] PHP and Powershell

2013-07-19 Thread Serge Fonville
mail.com] > *Sent:* Friday, July 19, 2013 3:05 AM > *To:* Alan Loos > *Cc:* php-general@lists.php.net > *Subject:* Re: [PHP] PHP and Powershell > > ** ** > > Hi, > > Although this is more powershell related than PHP... > > When Powershell returns an object, you

RE: [PHP] PHP and Powershell

2013-07-19 Thread Alan Loos
il. From: Serge Fonville [mailto:serge.fonvi...@gmail.com] Sent: Friday, July 19, 2013 3:05 AM To: Alan Loos Cc: php-general@lists.php.net Subject: Re: [PHP] PHP and Powershell Hi, Although this is more powershell related than PHP... When Powershell returns an object, you can pipe the output through

Re: [PHP] PHP and Powershell

2013-07-19 Thread Serge Fonville
Hi, Although this is more powershell related than PHP... When Powershell returns an object, you can pipe the output through Select-Object to get only certain object properties. To better answer your question: First, why do you specify ComputerName as 127.0.0.1 if the credential is already specif

[PHP] PHP and Powershell

2013-07-18 Thread Alan Loos
Good morning everyone, First time posting in here, although I've been listening in for a few weeks now. So this one has got me stumped, I am fairly new to PHP but I cannot seem to Google through this one. I cannot figure out how to 'exclude' PSComputerName and RunspaceId, which is ultimately w

[PHP] Re: Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-15 Thread David Robley
dealTek wrote: > > Thanks for all the help folks, > > > PHP-light-PDO-Class > > ok well I found this... > > https://github.com/poplax/PHP-light-PDO-Class > > But it does not seem to recognize the port - I put the port as 8889 but > keeps saying can't connect port 3306 > > Warning: PDO::__co

[PHP] Re: Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-15 Thread dealTek
Thanks for all the help folks, PHP-light-PDO-Class ok well I found this... https://github.com/poplax/PHP-light-PDO-Class But it does not seem to recognize the port - I put the port as 8889 but keeps saying can't connect port 3306 Warning: PDO::__construct() [pdo.--construct]: [2002] Connect

Re: [PHP] Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-15 Thread dealTek
On Feb 14, 2013, at 11:46 AM, Bastien Koert wrote: > > > The DreamInCode one is good. MySQLi is the recommended option over > MySQL since the mysql one is deprecated. PDO is also a great option > since you can prepare your queries to help sanitize the data > > -- > > Bastien Thanks Basti

Re: [PHP] Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-14 Thread Bastien Koert
On Thu, Feb 14, 2013 at 1:24 PM, Haluk Karamete wrote: > I recommend a third option, that is PDO. > > Start here please. http://net.tutsplus.com/?s=pdo > > On Thu, Feb 14, 2013 at 9:49 AM, dealTek wrote: >> Hi everybody, >> >> Newbie is trying to set up OOP With

Re: [PHP] Re: Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-14 Thread Haluk Karamete
Also worth checking http://justinvincent.com/ezsql Which is the class behind the WordPress' wpdb class. This is a great read too -> http://www.devarticles.com/c/a/MySQL/PHP-and-Databases-for-the-Lazy-Sod/ On Thu, Feb 14, 2013 at 10:30 AM, dealTek wrote: > > > On Feb 14,

[PHP] Re: Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-14 Thread dealTek
On Feb 14, 2013, at 9:49 AM, dealTek wrote: > Hi everybody, > > Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class > (using CRUD) > > Simple story: creating this class database by myself is way over my head. So > it be best for me to find some

Re: [PHP] Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-14 Thread Haluk Karamete
I recommend a third option, that is PDO. Start here please. http://net.tutsplus.com/?s=pdo On Thu, Feb 14, 2013 at 9:49 AM, dealTek wrote: > Hi everybody, > > Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class > (using CRUD) > > Simple story: c

[PHP] Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD)

2013-02-14 Thread dealTek
Hi everybody, Newbie is trying to set up OOP With PHP and MySQL or MySQLi database class (using CRUD) Simple story: creating this class database by myself is way over my head. So it be best for me to find something on the Internet that has already been created and working to pro specs (using

Re: [PHP] Using named Pipes between PHP and ZIP

2012-07-09 Thread Matijn Woudt
On Mon, Jul 9, 2012 at 7:19 PM, Dennis Heck wrote: > > Unfortunately it makes no difference if i use zip with 2 - or if I leave > them ommited. The longer I guess about it, the more I think it might be a > ZIP topic, namely how the stream to stdin needs to be like so zip will know > the name of th

Re: [PHP] Using named Pipes between PHP and ZIP

2012-07-09 Thread Dennis Heck
Unfortunately it makes no difference if i use zip with 2 - or if I leave them ommited. The longer I guess about it, the more I think it might be a ZIP topic, namely how the stream to stdin needs to be like so zip will know the name of the file from it. Regards, Dennis -- PHP General Mail

Re: [PHP] Using named Pipes between PHP and ZIP

2012-07-08 Thread tamouse mailing lists
≈On Sun, Jul 8, 2012 at 11:30 AM, Dennis Heck wrote: > Hello everyone, > > I'm looking for a solution for the following: > 1) collecting data from a simple html form and send them to a php script > 2) take the data and place them in a php-generated excel sheet > 3) zip the excel sheet and password

[PHP] Using named Pipes between PHP and ZIP

2012-07-08 Thread Dennis Heck
Hello everyone, I'm looking for a solution for the following: 1) collecting data from a simple html form and send them to a php script 2) take the data and place them in a php-generated excel sheet 3) zip the excel sheet and password protect the zip file (standard encription will be sufficent, n

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-23 Thread ma...@behnke.biz
rene7705 hat am 23. Mai 2012 um 14:55 geschrieben: > And please explain what you mean by "no log is loaded". No graph? No > $hits under "structure" tab, no $errors under same tab? As I wrote the mail to the list no tab had anything to display. Now it's working. No idea what changed. -- PHP G

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-23 Thread ma...@behnke.biz
rene7705 hat am 23. Mai 2012 um 14:46 geschrieben: > you're right, and i'm putting it on the top of my todo list. > > i take it you were referring to project_hd_root, or anything else as well? Yes. Marco Behnke Dipl. Informatiker (FH), SAE Audio Engineer Diploma Zend Certified Engineer PHP 5

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-23 Thread rene7705
On Wed, May 23, 2012 at 2:17 PM, ma...@behnke.biz wrote: > > > rene7705 hat am 23. Mai 2012 um 13:51 geschrieben: > >> I think I'll leave it untouched for a few days >> (http://mediabeez.ws/stats/ and > > > 404 on > http://mediabeez.ws/stats/code/libraries_rv/rajmvServiceLog-1.0.0/ajax_makeLogEnt

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-23 Thread ma...@behnke.biz
rene7705 hat am 23. Mai 2012 um 13:51 geschrieben: > I think I'll leave it untouched for a few days > (http://mediabeez.ws/stats/ and 404 on http://mediabeez.ws/stats/code/libraries_rv/rajmvServiceLog-1.0.0/ajax_makeLogEntry.php?rajmvServiceLog_initialID=212.48.107.10__1337775183&project_hd_r

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-23 Thread rene7705
On Wed, May 23, 2012 at 10:17 AM, rene7705 wrote: > On Wed, May 23, 2012 at 10:09 AM, ma...@behnke.biz wrote: >> >>> my windowze dev box is completely frozen at startup now, before even >>> mounting the drive that had the slow write rate today. booted into >>> ubuntu which is still responsive, an

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-23 Thread rene7705
On Wed, May 23, 2012 at 10:09 AM, ma...@behnke.biz wrote: > >> my windowze dev box is completely frozen at startup now, before even >> mounting the drive that had the slow write rate today. booted into >> ubuntu which is still responsive, and ran disk utility to see that >> smart status and self-c

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-23 Thread ma...@behnke.biz
> my windowze dev box is completely frozen at startup now, before even > mounting the drive that had the slow write rate today. booted into > ubuntu which is still responsive, and ran disk utility to see that > smart status and self-check for both system drive and the other drive > that i noticed

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-22 Thread rene7705
On Tue, May 22, 2012 at 3:31 PM, ma...@behnke.biz wrote: > > > rene7705 hat am 22. Mai 2012 um 15:23 geschrieben: > >> Seems to be the writing of the html+json data to a file that's causing >> the delay on my dev server. >> >> Doing the totals calculation on my dev server for 3500 records takes >

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-22 Thread ma...@behnke.biz
rene7705 hat am 22. Mai 2012 um 15:23 geschrieben: > Seems to be the writing of the html+json data to a file that's causing > the delay on my dev server. > > Doing the totals calculation on my dev server for 3500 records takes > about 2.5 seconds, with the old code. > Will soon see how long it

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-22 Thread rene7705
On Tue, May 22, 2012 at 2:54 PM, rene7705 wrote: > On Tue, May 22, 2012 at 12:32 PM, rene7705 wrote: >> On Tue, May 22, 2012 at 2:32 AM, tamouse mailing lists >> wrote: >>> On Mon, May 21, 2012 at 7:31 AM, rene7705 wrote: On Mon, May 21, 2012 at 1:17 PM, Simon Schick wrote: > Spe

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-22 Thread rene7705
On Tue, May 22, 2012 at 12:32 PM, rene7705 wrote: > On Tue, May 22, 2012 at 2:32 AM, tamouse mailing lists > wrote: >> On Mon, May 21, 2012 at 7:31 AM, rene7705 wrote: >>> On Mon, May 21, 2012 at 1:17 PM, Simon Schick >>> wrote: Specially the function rajmvServiceLog_graphs_raphael_calcula

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-22 Thread rene7705
On Mon, May 21, 2012 at 4:40 PM, Matijn Woudt wrote: > On Mon, May 21, 2012 at 2:31 PM, rene7705 wrote: >> On Mon, May 21, 2012 at 1:17 PM, Simon Schick >> wrote: >>> Hi, Rene >>> >>> I took a quick look over your code ... >>> >>> I kind-of like the idea having all logging at one place, but the

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-22 Thread rene7705
On Tue, May 22, 2012 at 2:32 AM, tamouse mailing lists wrote: > On Mon, May 21, 2012 at 7:31 AM, rene7705 wrote: >> On Mon, May 21, 2012 at 1:17 PM, Simon Schick >> wrote: >>> Specially the function rajmvServiceLog_graphs_raphael_calculateData() with a >>> code of ca. 280 lines is quite long ...

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-21 Thread tamouse mailing lists
On Mon, May 21, 2012 at 7:31 AM, rene7705 wrote: > On Mon, May 21, 2012 at 1:17 PM, Simon Schick > wrote: >> Specially the function rajmvServiceLog_graphs_raphael_calculateData() with a >> code of ca. 280 lines is quite long ... > > 280 lines is long?! :) In general, yes. 280 lines is long. Too

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-21 Thread rene7705
I see that the sql file didn't come through to the web archive of this list, so I'm posting it in-message here once more, for those interested; drop table if exists rajmvServiceLog; create table rajmvServiceLog ( id integer not null AUTO_INCREMENT, initial_id varchar(250),

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-21 Thread Matijn Woudt
On Mon, May 21, 2012 at 2:31 PM, rene7705 wrote: > On Mon, May 21, 2012 at 1:17 PM, Simon Schick > wrote: >> Hi, Rene >> >> I took a quick look over your code ... >> >> I kind-of like the idea having all logging at one place, but the code is a >> bit too messy if you ask me :) >> If you would hav

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-21 Thread rene7705
a given datetime-range, and do the totals calculations in a >> php loop. >> I'm only keeping 1 row from the db in memory at any given time, but >> I'm building up a large deep array with the totals information in the >> php loop that goes over the rows. >> I&

Re: [PHP] requesting comments on rajmvServiceLog (access + error logging through PHP and JS to MySQL)

2012-05-21 Thread Simon Schick
ondering if this is a good approach, though. Maybe I should let > the totals be calculated by the mysql server instead. > > I was thinking to let the totals calculations stay in php, and be > executed from a cron job every hour. Only for the current month would > you need to re-calcul

[PHP] PHP and webmaster tools

2011-11-02 Thread Rick Dwyer
Hello list. I am looking for someone who knows PHP and has extensive experience with webmaster tools. I have a series of crawl errors I need resolved but cannot find the bad URL's anywhere on the site. Please contact me off list. Thanks, --Rick -- PHP General Mailing List

Re: [PHP] PHP and Windows 7 g6-bit (Solved)

2011-06-15 Thread Byron Como
On 6/15/2011 1:59 PM, Tim Thorburn wrote: On 6/15/2011 11:37 AM, Byron Como wrote: Does the precompiled windows binary work on win 7 64? It does, however if you're using Apache as your webserver, for PHP 5.3+ you won't be able to use the binaries from apache.org for Windows. There is a link

Re: [PHP] PHP and Windows 7 g6-bit

2011-06-15 Thread Tim Thorburn
On 6/15/2011 11:37 AM, Byron Como wrote: Does the precompiled windows binary work on win 7 64? It does, however if you're using Apache as your webserver, for PHP 5.3+ you won't be able to use the binaries from apache.org for Windows. There is a link to Apache Lounge found here: http://window

[PHP] PHP and Windows 7 64-bit

2011-06-15 Thread Byron Como
Does the precompiled windows binary work on win 7 64? I downloaded the apache installer, works with no problems. I got the php5 VC6 x86 Thread Safe version. It says "x86" so I'm guessing that's the problem. I can't find a current 64-bit version. Error message: Faulting application name: httpd

[PHP] PHP and Windows 7 g6-bit

2011-06-15 Thread Byron Como
Does the precompiled windows binary work on win 7 64? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to check if remote machines are running using PHP and Eclipse-Require Urgent Help

2011-04-02 Thread tedd
At 3:10 PM -0400 4/2/11, Bastien wrote: On 2011-04-02, at 12:21 PM, tedd wrote: At 11:30 PM +0100 4/1/11, Stuart Dallas wrote: Also, give your boss a slap. Why is he specifying what editor you use to write a PHP script? I really don't understand most management types! -Stuart Manage

Re: [PHP] How to check if remote machines are running using PHP and Eclipse-Require Urgent Help

2011-04-02 Thread Bastien
On 2011-04-02, at 12:21 PM, tedd wrote: > At 11:30 PM +0100 4/1/11, Stuart Dallas wrote: >> Also, give your boss a slap. Why is he specifying what editor you use to >> write a PHP script? I really don't understand most management types! >> >> -Stuart > > > Management rises to their level of

Re: [PHP] How to check if remote machines are running using PHP and Eclipse-Require Urgent Help

2011-04-02 Thread tedd
At 11:30 PM +0100 4/1/11, Stuart Dallas wrote: Also, give your boss a slap. Why is he specifying what editor you use to write a PHP script? I really don't understand most management types! -Stuart Management rises to their level of competence++. Cheers, tedd -- --- http://sperling.co

Re: [PHP] How to check if remote machines are running using PHP and Eclipse-Require Urgent Help

2011-04-01 Thread Stuart Dallas
On Friday, 1 April 2011 at 17:07, Santosh gunat wrote: Hi, > > I am in a big problem, > > My manager gave a task, > He want a PHP scrip which will check if the remote machines are Powered on > and are running. > He want this to be done using eclipse. > > He also want a log in a HTML or text file

Re: [PHP] How to check if remote machines are running using PHP and Eclipse-Require Urgent Help

2011-04-01 Thread Jim Giner
your boss is asking you to write something in PHP, but it sounds to me like you are not very knowledgable in it, or even in creating a text file. Why is he doing this? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] How to check if remote machines are running using PHP and Eclipse-Require Urgent Help

2011-04-01 Thread Louis Huppenbauer
You could just periodically ping those remote machines with a system()-call, and then write the result to a file. 2011/4/1 Santosh gunat : > Hi, > > I am in a big problem, > > My manager gave a task, > He want a PHP scrip which will check if the remote machines are Powered on > and are running. >

[PHP] How to check if remote machines are running using PHP and Eclipse-Require Urgent Help

2011-04-01 Thread Santosh gunat
Hi, I am in a big problem, My manager gave a task, He want a PHP scrip which will check if the remote machines are Powered on and are running. He want this to be done using eclipse. He also want a log in a HTML or text file that which remote machine is running and which remote machine is down/po

[PHP] Re: [Semi-OT] Request for help: Squirrelmail, PHP and RTL-Languages

2011-03-16 Thread Michelle Konzack
Again... Here is a screenshoot (squirrelmail 1.4.21 from Debian/Squeeze): http://vserver04.tamay-dogan.net/squirrelmail/20110316221617_squirrelmail_prersian_error.jpg which is set to Persian interface and even Firefox is set to prefered Language fa_IR and it does not work here (in 1.5.x pers

Re: [PHP] [Semi-OT] Request for help: Squirrelmail, PHP and RTL-Languages

2011-03-16 Thread Michelle Konzack
Shalom Dotan, thanks for your VERY fast answer. Am 2011-03-16 22:39:43, hacktest Du folgendes herunter: > What exactly is the problem? I have an associate using SquirrelMail in > Hebrew, it even has a Hebrew interface. Are you getting directional > display issues? Gibberish? The locale on my wor

Re: [PHP] [Semi-OT] Request for help: Squirrelmail, PHP and RTL-Languages

2011-03-16 Thread Dotan Cohen
On Wed, Mar 16, 2011 at 21:59, Michelle Konzack wrote: > Hello, > > I am wotking in an environent where it is required to  support  LTR  and > RTL languages at once. My own website support this but with squirrelmail > there is a problem. > > Is there an Iranien, Israelian or Arabic Programmer whic

[PHP] [Semi-OT] Request for help: Squirrelmail, PHP and RTL-Languages

2011-03-16 Thread Michelle Konzack
Hello, I am wotking in an environent where it is required to support LTR and RTL languages at once. My own website support this but with squirrelmail there is a problem. Is there an Iranien, Israelian or Arabic Programmer which can help out to get RTL support in the Squirrelmail interface in

Re: [PHP] PHP and HBCI?

2010-10-08 Thread Per Jessen
Stephan Ebelt wrote: > > common is probably XML via HTTPS transport (at least my bank seems to > do it that way). I have no C code whatsoever. > > Can PHP call arbitrary C functions? Then it might be possible to use > AqHBCI/AqBanking somehow? You (or someone) would need to write a PHP wrapper

Re: [PHP] PHP and HBCI?

2010-10-08 Thread Stephan Ebelt
phan >> >> >> >> >>> Thanks, >>> Ash >>> http://www.ashleysheridan.co.uk >>> >>> - Reply message - >>> From: "Stephan Ebelt" >>> Date: Fri, Oct 8, 2010 13:37 >

Re: [PHP] PHP and HBCI?

2010-10-08 Thread Sebastian Detert
nk account statements in order to show the balances. I am not too eager to issue transactions. thanks, stephan Thanks, Ash http://www.ashleysheridan.co.uk - Reply message - From: "Stephan Ebelt" Date: Fri, Oct 8, 2010 13:37 Subject: [PHP] PHP and HBCI? To: "PHP"

Re: [PHP] PHP and HBCI?

2010-10-08 Thread Stephan Ebelt
nt to process payments? Or wad it more of an > actual banking thing you needed? I've not heard of hbci before, so can't > offer much information back. > > Thanks, > Ash > http://www.ashleysheridan.co.uk > > - Reply message - > From: "Stephan Ebelt"

Re: [PHP] PHP and HBCI?

2010-10-08 Thread Stephan Ebelt
t; From: "Stephan Ebelt" > Date: Fri, Oct 8, 2010 13:37 > Subject: [PHP] PHP and HBCI? > To: "PHP" > > > Hello, > > is there a way to do HBCI banking with PHP? > > stephan > > > -- > PHP General Mailing List (http://www.php

RE: [PHP] PHP and HBCI?

2010-10-08 Thread Jay Blanchard
[snip] is there a way to do HBCI banking with PHP? [/snip] yes. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP and HBCI?

2010-10-08 Thread a...@ashleysheridan.co.uk
Fri, Oct 8, 2010 13:37 Subject: [PHP] PHP and HBCI? To: "PHP" Hello, is there a way to do HBCI banking with PHP? stephan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP and HBCI?

2010-10-08 Thread Stephan Ebelt
Hello, is there a way to do HBCI banking with PHP? stephan -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: New to PHP and struggling with the basics

2010-10-05 Thread Col Day
Thanks Gary! Nice to know I'm not the only one who has struggled with the Basics. Hopefully I can get my brain around it sometime soon. Cheers Col. "Gary" wrote in message news:i8f1r9$j4...@dough.gmane.org... Col Day wrote: Yes I did install apache then php, however I tried to follow the

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread Col Day
u remove the apache you have installed, and the php you installed, and install the XAMPP package as it comes prebuilt with mysql, ftp, apache and php, and it is simple to use/work with. And if you install to defaults there, you will put your web files into C:\xampp\htdocs\ and everythign should ju

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread Col Day
48.ca...@webdev01... Col. Since you're new to php, then an easy way to install apache, is using XAMPP ( http://www.apachefriends.org/en/xampp.html ) I would suggest you remove the apache you have installed, and the php you installed, and install the XAMPP package as it comes prebuilt with mysq

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread Abah Joseph
Your directory configuration should look like this Order Deny,Allow Allow from all Options Indexes FollowSymLinks Includes ExecCGI # # AllowOverride controls what directives may be placed in .htaccess files. # It can be "All", "None", or any combination of the keywords: #

RES: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread Alejandro Michelin Salomon
apache. Browse to localhost Alejandro M.S. -Mensagem original- De: Col Day [mailto:colind...@aol.com] Enviada em: segunda-feira, 4 de outubro de 2010 06:31 Para: php-general@lists.php.net Assunto: [PHP] New to PHP and struggling with the basics Hi all, Working with the PHP5 for Dummies

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread Steve Staples
Col. Since you're new to php, then an easy way to install apache, is using XAMPP ( http://www.apachefriends.org/en/xampp.html ) I would suggest you remove the apache you have installed, and the php you installed, and install the XAMPP package as it comes prebuilt with mysql, ftp, apache an

[PHP] New to PHP and struggling with the basics

2010-10-04 Thread Col Day
Hi all, Working with the PHP5 for Dummies book (yup real noob, feel free to ridicule (after telling me what I've done wrong)) and have installed Apache 2.2 and PHP 5.3.3 onto a laptop running Vista. (yes I know!!!). I've had Apache running fine with my basic web site created using Serif's Webplu

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread kranthi
apache error logs will be helpful in this case. Their location varies depending upon your installation. But in any case they'll be insde your server directory (IIRC it is c:/Program Files/Apache Software Foundation/Apache by default) -- PHP General Mailing List (http://www.php.net/) To unsubscrib

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread Peter Lind
On 4 October 2010 11:30, Col Day wrote: > Hi all, > > Working with the PHP5 for Dummies book (yup real noob, feel free to ridicule > (after telling me what I've done wrong)) and have installed Apache 2.2 and > PHP 5.3.3 onto a laptop running Vista. (yes I know!!!). > > I've had Apache running fine

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread Col Day
Hi Kranthi, No, I just literally get the "HTML" line shown but absolutely nothing beneath it. "kranthi" wrote in message news:aanlktin2xnthqm-pp7qwtgo=sqtkctthtwz+08bbw...@mail.gmail.com... they should be something like error_log-[date] not sure about windows though However I have found t

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread kranthi
they should be something like error_log-[date] not sure about windows though >>However I have found that if I paste the html into my web page created by >>Serif WebPlus 10 I get the "html" line but not the "php" line. are you saying that you are getting the php code in your browser ? This is a P

Re: [PHP] New to PHP and struggling with the basics

2010-10-04 Thread Col Day
Kranthi Many thanks, any idea on the name of the error logs? Peter, Yes, browsing to the correct location but still getting the 403. this website requires you to log in. Abah, I've gone to the httpd-userdir.conf file and replaced it with your text (not including the directory tree), restarte

[PHP] PHP and SpatiaLite

2010-10-01 Thread TR Shaw
Anyone succeeded in geting php and SpatiaLite to work together?

Re: [PHP] New to PHP and the list

2010-09-13 Thread kranthi
> Is MAX_FILE_SIZE passed to PHP as $MAX_FILE_SIZE? only if register_golbals is set to ON in php.ini. This is a very bad practice and should be avoided. Use $_POST['MAX_FILE_SIZE'] instead. But in this case dont use the post variable also. define a constant in your configuration file and use that c

Re: [PHP] New to PHP and the list

2010-09-12 Thread Paul M Foster
On Sat, Sep 11, 2010 at 06:37:41PM -0500, MikeB wrote: > Hello, I'm new to PHP and also new to using newsgroups/mailing lists > directly. So if I make a mistake, please forgive me this once and I'll > try to do better in the future. > > Please help me understand, my he

Re: [PHP] New to PHP and the list

2010-09-11 Thread viraj
On Sun, Sep 12, 2010 at 5:07 AM, MikeB wrote: > Hello, I'm new to PHP and also new to using newsgroups/mailing lists > directly. So if I make a mistake, please forgive me this once and I'll try > to do better in the future. > > Please help me understand, my head is absolu

Re: [PHP] New to PHP and the list

2010-09-11 Thread MikeB
On 9/11/2010 6:51 PM, Tom Sparks wrote: --- On Sun, 12/9/10, MikeB wrote: From: MikeB Subject: [PHP] New to PHP and the list To: php-general@lists.php.net Received: Sunday, 12 September, 2010, 9:37 AM Hello, I'm new to PHP and also new to using newsgroups/mailing lists directly. So if I

Re: [PHP] New to PHP and the list

2010-09-11 Thread Tom Sparks
--- On Sun, 12/9/10, MikeB wrote: > From: MikeB > Subject: [PHP] New to PHP and the list > To: php-general@lists.php.net > Received: Sunday, 12 September, 2010, 9:37 AM > Hello, I'm new to PHP and also new to > using newsgroups/mailing lists directly. So if I make a >

Re: [PHP] Broken pipes, time outs, PHP, and mail

2010-09-10 Thread Dave M G
Peter, Bob, Thank you for replying. After a few days testing, I set up an error handler for when messages don't get sent. I started to see an error saying "Language String failed to load", which seems to be particular to the PHPmailer scripts I am using. Long story short, after some searchin

RE: [PHP] Broken pipes, time outs, PHP, and mail

2010-09-09 Thread Bob McConnell
From: Dave M G >> There is one other possibility. According to the RFCs, the standard line >> ending for email is CRLF. Make sure your system is sending both >> characters after each line. There is a slim chance the server is cutting >> you off after some number of bytes if you are only sending a

Re: [PHP] Broken pipes, time outs, PHP, and mail

2010-09-08 Thread Dave M G
Ash, Bob, Thank you for replying. There is one other possibility. According to the RFCs, the standard line ending for email is CRLF. Make sure your system is sending both characters after each line. There is a slim chance the server is cutting you off after some number of bytes if you are only

RE: Re: [PHP] Broken pipes, time outs, PHP, and mail

2010-09-08 Thread Bob McConnell
From: a...@ashleysheridan.co.uk > Could it be that there are connection limits on the remote server? > > Thanks, > Ash Only if you are opening a new connection for each message. Any decent SMTP client should be able to send multiple messages over a single connection. You could capture the traff

Re: [PHP] Broken pipes, time outs, PHP, and mail

2010-09-08 Thread a...@ashleysheridan.co.uk
- From: "Dave M G" Date: Wed, Sep 8, 2010 18:45 Subject: [PHP] Broken pipes, time outs, PHP, and mail To: Bob, Thank you for replying. > Your code should be able to re-open the > connection at this point and resend the message that triggered the > error. Then resume working

Re: [PHP] Broken pipes, time outs, PHP, and mail

2010-09-08 Thread Dave M G
Bob, Thank you for replying. Your code should be able to re-open the connection at this point and resend the message that triggered the error. Then resume working on the rest of your list. Unfortunately, it seems that this is not happening. The loop that sends out individual mail dies, and t

Re: [PHP] Broken pipes, time outs, PHP, and mail

2010-09-08 Thread a...@ashleysheridan.co.uk
Could it be that there are connection limits on the remote server? Thanks, Ash http://www.ashleysheridan.co.uk - Reply message - From: "Bob McConnell" Date: Wed, Sep 8, 2010 18:24 Subject: [PHP] Broken pipes, time outs, PHP, and mail To: From: Dave M G > I have a set of

RE: [PHP] Broken pipes, time outs, PHP, and mail

2010-09-08 Thread Bob McConnell
From: Dave M G > I have a set of scripts that sends out emails to a list of about 150 > people. Sometimes it works fine. > > Other times, it dies part way through the list, and in my error logs I > get this output: > > fputs() [function.fputs]: send of 22 bytes > failed with errno=32 Broken p

RE: [PHP] IIS, PHP and HTML

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 17:34 -0700, Tommy Pham wrote: > > -Original Message- > > From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] > > Sent: Wednesday, June 23, 2010 4:47 PM > > To: Phillip Baker > > Cc: PHP General List > > Subject: Re: [PHP] IIS

RE: [PHP] IIS, PHP and HTML

2010-06-23 Thread Tommy Pham
> -Original Message- > From: Ashley Sheridan [mailto:a...@ashleysheridan.co.uk] > Sent: Wednesday, June 23, 2010 4:47 PM > To: Phillip Baker > Cc: PHP General List > Subject: Re: [PHP] IIS, PHP and HTML > > On Wed, 2010-06-23 at 16:26 -0600, Phillip Baker wro

Re: [PHP] IIS, PHP and HTML

2010-06-23 Thread Ashley Sheridan
On Wed, 2010-06-23 at 16:26 -0600, Phillip Baker wrote: > Greetings All, > > I am at a new Gig. > So this is the existing setup so changing it at least in the short term is > not an option. > > We are in an IIS shop. > We have a bunch of files that are html, and in need of php functionality. > A

[PHP] IIS, PHP and HTML

2010-06-23 Thread Phillip Baker
Greetings All, I am at a new Gig. So this is the existing setup so changing it at least in the short term is not an option. We are in an IIS shop. We have a bunch of files that are html, and in need of php functionality. And that would be a BUNCH of files. I am interested in setting if I can set

Re: [PHP] PHP and schedules tasks/events

2010-04-16 Thread Ryan Sun
you can setup a schedule table in db and have a cron php script check the db every time and send email if the current time is around the scheduled_at time and close the schedule after you send the email On Fri, Apr 16, 2010 at 5:35 PM, Adam Richardson wrote: > On Fri, Apr 16, 2010 at 5:15 PM, Don

Re: [PHP] PHP and schedules tasks/events

2010-04-16 Thread Adam Richardson
On Fri, Apr 16, 2010 at 5:15 PM, Don Wieland wrote: > On Apr 16, 2010, at 1:26 PM, Bastien Koert wrote: > > Run a cronjob at midnight and send the email. Track who it got sent >> to, so you don't duplicate it. Easy peasy! >> > > This is fine if the email is to be sent at midnight. > > I am lookin

  1   2   3   4   5   6   7   8   9   10   >