Re: [PHP-WIN] Question: Lamp is installed but can't access localhost

2011-05-14 Thread Gavin Chalkley
Are you starting LAMPP with SU (su /opt/lampp/lampp start)? Which version (1.7.4 is the latest) Have you installed standalone PHP and Mysql on the system before? As this can some time cause issues with clashing configs On 14 May 2011 07:53, sam rumaizan samc...@yahoo.com wrote: Hello, I

Re: [PHP-WIN] Question to the developers, I hope they read this thread.

2011-01-17 Thread Pierre Joye
hi, As I said numerous times in this list already, using x64 builds on Windows brings nothing at this stage (but the fun to run x64 bins). It can even be slower than 32bit builds. For IIS, the recommended setup is to use 32bit PHP as FastCGI (even if windows itself is 64bit). Apache does not

Re: [PHP-WIN] Question: Creating a GUI for Windows with PHP?

2009-06-09 Thread Parham Doustdar
WinBinder seems better right now since it's native. However, it doesn't work with the keyboard, I.E. you can not switch between controls with tab. Is there a way to enable this? -- --- Contact info: Skype: parham-d MSN: fire_lizard16 at hotmail dot com email: parham90 at GMail dot com Ariz

Re: [PHP-WIN] Question: Creating a GUI for Windows with PHP?

2009-06-09 Thread Ariz Jacinto
Kindly look into Winbinder's TabControl class: http://winbinder.org/manual/classes/tabcontrol.html On Tue, Jun 9, 2009 at 7:18 AM, Parham Doustdarparha...@gmail.com wrote: WinBinder seems better right now since it's native. However, it doesn't work with the keyboard, I.E. you can not switch

Re: [PHP-WIN] Question: Creating a GUI for Windows with PHP?

2009-06-09 Thread Richard Quadling
2009/6/9 Ariz Jacinto acjaci...@gmail.com: Kindly look into Winbinder's TabControl class: http://winbinder.org/manual/classes/tabcontrol.html I think he means using the [TAB] key to jump between controls. On Tue, Jun 9, 2009 at 7:18 AM, Parham Doustdarparha...@gmail.com wrote: WinBinder

Re: [PHP-WIN] Question: Creating a GUI for Windows with PHP?

2009-06-08 Thread Antonio CS
Try the PHP-GTK http://gtk.php.net/ extension 2009/6/8 Parham Doustdar parha...@gmail.com Hi there, Does anyone know if it's possible to create a windows script with a GUI with PHP? Thanks! -- --- Contact info: Skype: parham-d MSN: fire_lizard16 at hotmail dot com email: parham90 at

Re: [PHP-WIN] Question: Creating a GUI for Windows with PHP?

2009-06-08 Thread Ariz Jacinto
If you want a native Windows GUI, try Winbinder[1]. I used it before on my small GUI requirement at geepeeyes[2]. [1] http://winbinder.org/ [2] http://www.geepeeyes.org/ 2009/6/8 Parham Doustdar parha...@gmail.com: Hi there, Does anyone know if it's possible to create a windows script with a

Re: [PHP-WIN] Question about Sessions!

2008-04-23 Thread Jarrett Meyer
http://us3.php.net/manual/en/ref.session.php When you create the session, add your own variable called $_SESSION[last_page_load_time]. if ($_SESSION[last_page_load_time] time() - 20 * 60) { // don't time out, keep the session going... $_SESSION[last_page_load_time] = time();

Re: [PHP-WIN] Question about office web component

2007-09-11 Thread Stut
watersniper wrote: How can I use OWC with PHP? I've never tried it but I see no reason why not. You'll need to use the COM extension: http://php.net/com -Stut -- http://stut.net/ -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Question about office web component

2007-09-11 Thread watersniper
Stut,Thank you very much! But I don't know --the module_name in COM::COM ( string $module_name ) And, I can't find how to operate the object. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Question about office web component

2007-09-11 Thread Stut
watersniper wrote: Stut,Thank you very much! But I don't know --the module_name in COM::COM ( string $module_name ) And, I can't find how to operate the object. That bit doesn't have much to do with PHP. You need to read the documentation for the office web components. -Stut --

Re: [PHP-WIN] Question re. PHP/HTML-generated French characters.

2007-02-11 Thread bedul
correctly (named OLD browser one). with this.. the browser might know the write/the font u use sry.. for my languages cmiiw.. - Original Message - From: Niel Archer [EMAIL PROTECTED] To: php-windows@lists.php.net Sent: Saturday, February 10, 2007 1:10 AM Subject: Re: [PHP-WIN] Question re. PHP

Re: [PHP-WIN] Question re. PHP/HTML-generated French characters.

2007-02-09 Thread Niel Archer
Hi This is to ask a (possibly rudimentary) question re. specifying French language characters to be displayed on an HTML page generated from PHP. In this case, the browser does not show the Français chars. (accents etc.) properly. Possibly one of those ultimately straightforward (yet

Re: [PHP-WIN] Question on virus/worms

2007-02-05 Thread Stut
Seak, Teng-Fong wrote: PHP/Chaploit http://vil.nai.com/vil/content/v_129568.htm Perl/BackDoor-CXY.gen http://vil.nai.com/vil/content/v_138658.htm PHP/BackDoor.gen http://vil.nai.com/vil/content/v_136948.htm BackDoor-CUS!php Trojan http://vil.nai.com/vil/content/v_136195.htm

Re: [PHP-WIN] Question about directory file operations

2006-03-18 Thread GT
Tried realpath... It broke my checks.. I was right back where I started. It completely hosed my regex. I did simplify my check routine $path = $_GET[path]; if( !isset( $path ) || $path == || !file_exists($path) || eregi('(^.:$|^\..|^\/?\..|^\/|^.:/$)', $path) ) { $path =

Re: [PHP-WIN] Question about directory file operations

2006-02-01 Thread GT
I found a much simpler way to handle this problem.. It's not pretty, but it's effective. $path = $_GET[path]; if( !isset( $path ) || $path == ) { $path = D:/FTPDIR; } $test = $path; // keep from mangling $path... For some reason, if I did the test below using $path it

Re: [PHP-WIN] Question about directory file operations

2006-02-01 Thread Stut
GT wrote: Stut [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Mike wrote: If it is called with the right parameters or the Previous Directory link is clicked too many times, the browser will be outside of the paths that I want them to be in... I would like to be able to

Re: [PHP-WIN] Question about directory file operations

2006-02-01 Thread GT
I'll have a peek at it.. Stut [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] GT wrote: Stut [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Mike wrote: If it is called with the right parameters or the Previous Directory link is clicked too many times, the browser will

Re: [PHP-WIN] Question about directory file operations

2006-01-30 Thread GT
Hmmm... that sounds like it might work.. Thanks. I'll try it after I've had some sleep.. php and no sleep don't really go together. Mike [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] If it is called with the right parameters or the Previous Directory link is clicked too many

Re: [PHP-WIN] Question about directory file operations

2006-01-30 Thread Stut
Mike wrote: If it is called with the right parameters or the Previous Directory link is clicked too many times, the browser will be outside of the paths that I want them to be in... I would like to be able to lock the browser down to a particular set of directories and thier subs.

RE: [PHP-WIN] Question about directory file operations

2006-01-29 Thread Mike
If it is called with the right parameters or the Previous Directory link is clicked too many times, the browser will be outside of the paths that I want them to be in... I would like to be able to lock the browser down to a particular set of directories and thier subs. What you may

RE: [PHP-WIN] Question on accessing C# Web Service

2005-03-30 Thread Charles P. Killmer
You could print_r $rs and see exactly what it contains. Otherwise you could add this to your code to make things simpler. $soap_proxy = $client-getProxy(); $result = $soap_proxy-HelloWorld(); This is how I do it. Charles -Original Message- From: Adam [mailto:[EMAIL PROTECTED] Sent:

Re: [PHP-WIN] Question on accessing C# Web Service

2005-03-30 Thread Adam
I changed the php code to the follows. html body?php echo Hello World; ? br ?php require_once('lib\nusoap.php'); $client = new soapclient('http://localhost/TestService/Service1.asmx?WSDL', 'wsdl'); $soap_proxy = $client-getProxy(); $rs = $soap_proxy-HelloWorld(null); echo $rs; ? /body /html

RE: [PHP-WIN] Question concerning SWITCH and Comparisons

2004-11-11 Thread Gryffyn, Trevor
I just copy and pasted your switch statement and it worked fine for me the way you described it needed to work. One thing I did notice, there's a semi-colon on the = 2400 CASE, but it still seemed to work ok for me (maybe I noticed and fixed that before I tested = 2400). What error are you

RE: [PHP-WIN] Question concerning SWITCH and Comparisons

2004-11-11 Thread Svensson, B.A.T. (HKG)
Yepp, that true, and thats why we have switch. Otherwise switch would be syntactic suggar only. -Original Message- From: Gryffyn, Trevor To: Php-Windows Cc: [EMAIL PROTECTED] Sent: 11-11-2004 19:17 Subject: RE: [PHP-WIN] Question concerning SWITCH and Comparisons One thing I'll point

Re: [PHP-WIN] Question concerning SWITCH and Comparisons

2004-11-11 Thread Alejandro César Garrammone
I think this may work...but doing some debbuging I suggest: case ($qty=1600 and $qty 2400): //$qty is less than 2400 and I modified the semi-colon of this part of code: case ($qty = 2400): //$qty is greater than or equal to 2400 I tried your code and It works! Hope this helps, Alex -

RE: [PHP-WIN] Question concerning SWITCH and Comparisons

2004-11-11 Thread Tony Devlin
: Alejandro César Garrammone [mailto:[EMAIL PROTECTED] Sent: Thursday, November 11, 2004 2:55 PM To: [EMAIL PROTECTED]; Php-Windows Subject: Re: [PHP-WIN] Question concerning SWITCH and Comparisons I think this may work...but doing some debbuging I suggest: case ($qty=1600 and $qty 2400): //$qty

Re: [PHP-WIN] Question about the Apache 2.0 Warning in the PHP manual on the PHP web site

2004-07-22 Thread Justin Patrin
On Thu, 22 Jul 2004 10:40:33 -0400, Jim MacDiarmid [EMAIL PROTECTED] wrote: [ Exerp from PHP manual pages on website: Warning Do not use Apache 2.0 and PHP in a production environment neither on Unix nor on Windows. ] Can anyone tell me what this means? This is the only warning I see.

Re: [PHP-WIN] Question about $tbuf in php-4.3.4-installer.exe

2003-12-10 Thread Phil Driscoll
You haven't shown us any code where $tbuf would be assigned a value. Is it meant to be passed in via get post or session? If so, the problem will be that register_globals is switched off in your php.ini file (as it has been by default for the last few releases of php). Otherwise, you need to

Re: [PHP-WIN] Question

2003-10-23 Thread Shannon Eric Peevey
Alejandro C. Garrammone wrote: Sorry, but it isn't a question of PHP. Somebody know a Free Mail Server that works on a LAN with win9x??? Best Regards, Alex Then there is probably a better place to ask then... ;) Cygwin does have exim, and some other mail packages that are included in the

RE: [PHP-WIN] Question

2003-10-23 Thread Vail, Warren
I use EZMTS, http://www.2cah.com/email/ supports smtp and pop3 protocols Warren -Original Message- From: Alejandro C. Garrammone [mailto:[EMAIL PROTECTED] Sent: Thursday, October 23, 2003 11:50 AM To: PHP Mailing List Subject: [PHP-WIN] Question Sorry, but it isn't a question abount

Re: [PHP-WIN] Question Regarding Local Host SubDirectory

2003-06-23 Thread Melih Onvural
How is the script working if you have a .htm extension instead of a .php extension. could this be the problem? melih From: Douglas Pollock [EMAIL PROTECTED] Date: 2003/06/23 Mon PM 05:16:52 EDT To: [EMAIL PROTECTED] Subject: [PHP-WIN] Question Regarding Local Host SubDirectory

Re: [PHP-WIN] Question Regarding Local Host SubDirectory

2003-06-23 Thread Douglas Pollock
Melih thanks for responding. I should have copied the names of the .PHP files instead of the .HTM files. C:\Inetpub\wwwroot\php02.php C:\Inetpub\wwwroot\PHP\php02.php These were accessed as http://localhost/php02.php http://localhost/PHP/php02.php However, the .PHP files give the same result.

RE: [PHP-WIN] question about mail

2003-03-06 Thread Matt Babineau
On windows try: Ini_set(SMTP, mail.yourserveraddress.com); -- -Original Message- -- From: freeman [mailto:[EMAIL PROTECTED] -- Sent: Saturday, February 22, 2003 5:42 PM -- To: [EMAIL PROTECTED] -- Subject: [PHP-WIN] question about mail -- -- -- hey does anyone now if there is a way to

Re: [PHP-WIN] question about session PHP

2002-11-27 Thread Cam Dunstan
Franco, I`m not so sure if unlink() can be relied on to work on a windoze server, never actually tried it but have hazy recollections of some windows only issue with it. Check the FAQs or manual. - Original Message - From: Franco Pozzer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

RE: [PHP-WIN] question about session PHP

2002-11-27 Thread Rich Gray
? -Original Message- From: Cam Dunstan [mailto:[EMAIL PROTECTED]] Sent: 27 November 2002 14:17 To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] question about session PHP Franco, I`m not so sure if unlink() can be relied on to work on a windoze server, never actually tried it but have hazy

Re: [PHP-WIN] Question from a total newb

2002-11-21 Thread Joe Finlinson
ok... for example because I have no idea how to do this on my own... I found a php calendar, and these were the install instructions: ltwCalendar v1.5 written by Matt Wade - http://codewalkers.com demo of ltwCalendar at http://codewalkers.com/cal/calendar.php I don't care for all that license

Re: [PHP-WIN] Question from a total newb

2002-11-21 Thread erythros
??? where did you get PHP 4.3.2 ??? the php website only has 4.2.3 and i could get that to work with Apache 2 Davy Obdam [EMAIL PROTECTED] wrote in message 01c2912a$a5cf5ec0$960a@hewlett0bg96om">news:01c2912a$a5cf5ec0$960a@hewlett0bg96om... Hi Joe, You only need either Apache or

RE: [PHP-WIN] Question about TRUE and FALSE

2001-05-21 Thread andrew morton
Err never mind it's there in the manual under expressions, I expected it to be in the constants section. sorry, andrew -Original Message- From: andrew morton Sent: Monday, May 21, 2001 13:21 To: Php-Windows (E-mail) Subject: [PHP-WIN] Question about TRUE and FALSE Anyone have any

Re: [PHP-WIN] question

2001-05-12 Thread Phil Driscoll
You should have stopped when you got to item2. 2)Run the .exe file Do item 2 again, then test your system. If it still doesn't work, tell us what OS and web server you are using. Cheers -- Phil Driscoll -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

RE: [PHP-WIN] Question on using an array

2001-03-01 Thread Asendorf, John
ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Aut insanit homo, aut versus facit -Original Message- From: Ignatius Teo [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 28, 2001 5:49 PM To: 'Asendorf, John'; 'Php-Windows (E-mail)' Subject: RE: [PHP-WIN] Question on using

RE: [PHP-WIN] Question on using an array

2001-03-01 Thread Asendorf, John
ut versus facit -Original Message- From: Michael Rudel [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 01, 2001 7:22 AM To: 'Asendorf, John' Subject: RE: [PHP-WIN] Question on using an array Hey John, ... have you solved your problem ??? Greetinx, Michael Rudel

Re: [PHP-WIN] Question on using an array

2001-02-28 Thread Gonzalo Vera
You could try accesing by value number, instead of using value index name. Anyway, I fear that what you're doing is quite illegal, and what is really happening is that when you assign the first 'links.php', it is overwritten by the second assignment, which is in turn overwritten by the third. Try

RE: [PHP-WIN] Question on using an array

2001-02-28 Thread Ignatius Teo
John, OK, I won't tell you but I think you've already realised that you probably will have to anyway. :-) Wouldn't it be easier (not to mention extensible) to put this in a database? Or r u just testing? Ignatius -Original Message- From: Asendorf, John [mailto:[EMAIL

Re: [PHP-WIN] Question on using an array

2001-02-28 Thread Ernest E Vogelsinger
At 16:55 28.02.2001, Asendorf, John said: [snip] I just added the last three entries on the array which all have the same key (could be my obvious problem...) My problem is that the while loop only hits the LAST of the three 'links.php' entry... Any