Re: [PHP-WIN] accessing mssql2k from win2k with PHP4.1.1

2002-02-06 Thread Mike Maltese
You probably don't have the MS SQL extension loaded. Uncomment in in the php.ini file. Mike - Original Message - From: "chris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 06, 2002 6:23 AM Subject: [PHP-WIN] accessing mssql2k from

Re: [PHP-WIN] Form submit action type.

2002-02-12 Thread Mike Flynn
At 09:45 PM 2/11/2002 -0800, Mike wrote: >I am creating a page with a form on it. I want it so that when people click >submit, I want the information from the form to be emailed to me. Is there a >way I can do this with normal JavaScripting or even plain HTML or would I >have to u

Re: [PHP-WIN] im so stupid

2002-02-12 Thread Mike Flynn
s. One button is the "default" submit button (i/e the one that gets highlighted when you click within the form), the rest must be clicked to be submitted. For these, you could use their name/values. -Mike -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Re: Form submit action type.

2002-02-13 Thread Mike Flynn
ith all the form info and use the php mail() function to send it. See the manual for more on mail(). -Mike -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] dynamic checkboxes submit..help!

2002-02-18 Thread Mike Flynn
ention for their names. Then after submitting, use that same naming convention to look at all the names and see which ones have been set, and those are the ones that are checked. The "values of all the checkboxes which are checked" are always submitted. That's how forms work..

RE: [PHP-WIN] dynamic checkboxes submit..help!

2002-02-18 Thread Mike Flynn
or 1 $view = ${$theuserdata}[1]; // null or 1 $priv = ${$theuserdata}[2]; // null or 1 } That would do what you want to do. Whether there's a simpler way, I dunno. :) -Mike At 02:33 PM 2/18/2002 +, Sandeep Murphy wrote: >ok... > >I am creating a tree of checkboxes

RE: [PHP-WIN] dynamic checkboxes submit..help!

2002-02-18 Thread Mike Flynn
I should have been more specific in some of my pseudocode: Update View Priv That is, the '$userid's and the array indexes '[x]' they are followed by are separate in the code. -Mike -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP-WIN] GD Extension

2002-12-19 Thread Mike Franks
I am having a problem with the extension php_gd.dll When the script call for php_gd.dll the server console shows Warning Unable to load the dynamic library 'C:\WINNT\system32\php_gd.dll'- The specified procedure could not be found. Info; Win2k Server Service Pack 3 PHP 4.2.3 extension_dir="c:

RE: [PHP-WIN] php as exe in windows

2003-03-24 Thread Mike Brum
The first step is to obviously install PHP and have it associated with .php files on your system and create your script that works 100% when you just double-click on the file. After that's working, create a .bat file that makes a call to the PHP executible (C:\PHP\php filename.php). Then, create

RE: [PHP-WIN] Re: php as exe in windows

2003-03-25 Thread Mike Brum
ng it's going to run and other options. It's just a lot more stable. Not to mention that if you poorly write the PHP script - it will consume A LOT of memory! -Mike -Original Message- From: Svensson, B.A.T. (HKG) [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 8:11 AM To:

RE: [PHP-WIN] Redirect to Home Page

2003-03-31 Thread Mike Brum
You can easily do that with JavaScript. if (document.location.href != "index.html"){ document.location.href = "index.html"; } My syntax might be screwy (haven't done JavaScript in a while) but you get the idea. -Mike -Original Message- From: Wade [mail

RE: [PHP-WIN] Display new Page after Form is processed

2003-06-05 Thread Mike Brum
In the script that you use to actually enter the information into your DB simply output HTML headers and print what you want to the screen. A basic example: Thank you for your submission..."; ?> -M -Original Message- From: Oliver Steimer [mailto:[EMAIL PROTECTED] Sent: Wednesday, Jun

[PHP-WIN] Post-Install prob

2003-06-29 Thread Mike Goggin
, but screwed up when I tried to access it from the DNS. The test page loads, then does a redirect to "The page cannot be displayed." Any help would be appreciated. - Mike Goggin -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Re: Newbie Q

2003-07-18 Thread Mike Jenck
try $_SERVER["PHP_SELF"] Mike "Gabriel_k" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Oh, I accidently typed PHP_INFO, but I DID USE PHP_SELF, with and without a > dollar sign, and none worked. I tried the same with PATH_INFO. > >

[PHP-WIN] Problems on Windows with Apache 1.3 and building

2003-07-30 Thread Mike Flippin
So far everytime I've tried to build the CVS code, it dies when trying to build the module for SQLite. How do I disable SQLite in the Makefile, I tried --disable-sqlite, but that didn't do anything. I'm using Cygwin right now to do the building, but I have access to VC++ 6.0 and 7.0. Also when I f

RE: [PHP-WIN] Re: Apache or IIS

2003-08-02 Thread Mike Brum
t you're doing to do it right, but it's a lot more reliable and offers better security and flexibility. My $.02 -Mike -Original Message- From: Jon Phipps [mailto:[EMAIL PROTECTED] Sent: Saturday, August 02, 2003 3:58 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Re: Apache or IIS

[PHP-WIN] Re: How to preserve value ?

2003-08-14 Thread Mike Jenck
You might try something like this if !isset($value) { $value = 1 } "Thomas Edward Lawrence" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I have three pages : > > page1.php > session_start() ; > session_register("value") ; > $value = 1 > ?> > > page2.php > session_start() ;

RE: [PHP-WIN] Automatic load .php page

2003-09-21 Thread Mike Brum
That depends on you actual code. There's the header(location: http://url.to.page/); command that you could use, but if you're already starting a session, I believe that you can't use the header() command since the session already sends the header. Though you could always include(); the member_are

RE: [PHP-WIN] PHP randomly is not parsing a valid script

2003-09-22 Thread Mike Brum
If you're positive that it's the server(s), then why not take another machine, install PHP & Apache, port the code and confirm that it's code-independant? -M -Original Message- From: Francesco [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2003 8:09 AM To: [EMAIL PROTECTED] Subjec

RE: [PHP-WIN] upgrade imap dll problem

2003-09-22 Thread Mike Brum
I can think of two ways to probably fix this - 1) If you want to get rid of the error you should be able to comment the line in your php.ini file: extension=php_imap.dll 2) If you look at your extension_dir directive in the php.ini file, I'm guessing it says something like extension_dir = d:\

RE: [PHP-WIN] upgrade imap dll problem

2003-09-22 Thread Mike Brum
And is that DLL in the folder specified? -Original Message- From: Gareth Thomas [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2003 9:36 PM To: Mike Brum; [EMAIL PROTECTED] Subject: Re: [PHP-WIN] upgrade imap dll problem Mike, extension_dir does point to the correct directory

RE: [PHP-WIN] Looping problem

2003-09-25 Thread Mike Brum
Here's something I'd do: $tmp = 1; for(loopconditions){ [do stuff]; if($tmp > 1){ iterations is not the first time through } else { this is the first iteration of the loop } $tmp++; } -M -Original Message- From: Gerardo Rojas [mailto:[EMAIL PROTECTED] Sent: Thursday, S

RE: [PHP-WIN] Writing to a file

2003-09-25 Thread Mike Brum
I guess this all depends on how you're writing to the file. Without code, I'm not sure what the specific problem is. One way to do this would be to read the file into an array and replace the line in that array. Then, write the newly constructed array to file. This way, at write time, the former d

RE: [PHP-WIN] page cannot be displayed error

2003-09-26 Thread Mike Brum
Now, if you put a .htm, .txt, .jpg or other file (anything NOT .php), then do you see those files when placed in the same directory? -M -Original Message- From: Jim [mailto:[EMAIL PROTECTED] Sent: Friday, September 26, 2003 2:28 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] page cannot be

[PHP-WIN] Array matching to build table

2003-09-29 Thread Mike Quinn
Hi, I have 3 dynamic arrays which is related data pulled from a mySQL database, the first being day $days[],second being amount $amount[] and third being a specific code $code[]. What I need to do is display a table with 1 to 15 in the left hand column (days) but where the array $days[] contains a

[PHP-WIN] Matching arrays to build tables

2003-09-29 Thread Mike Quinn
Hi, I have 3 dynamic arrays which is related data pulled from a mySQL database, the first being day $days[],second being amount $amount[] and third being a specific code $code[]. What I need to do is display a table with 1 to 15 in the left hand column (days) but where the array $days[] contains a

Re: [PHP-WIN] Matching arrays to build tables

2003-09-29 Thread Mike Quinn
; escribió en el mensaje news:[EMAIL PROTECTED] > Would something like > > SELECT day, SUM(amount) AS amount_sum, DISTINCT(code) AS code > FROM > WHERE > GROUP BY day,amount _sum, Code > > be usefull for you? Or do you already do this? > > -Original Message- > Fr

Re: [PHP-WIN] Matching arrays to build tables

2003-09-29 Thread Mike Quinn
ing a proper answer: > is it possible to have different codes on the very same day? > > -Original Message- > From: Mike Quinn > To: [EMAIL PROTECTED] > Sent: 29-9-2003 7:11 > Subject: Re: [PHP-WIN] Matching arrays to build tables > > Hi Svensson, > > Thanks fo

[PHP-WIN] Re: SQL query problem

2003-09-29 Thread Mike Quinn
Hi George, Just at a quick glance it might be to do with the Date(); Remove that clause and see what happens. I could be wrong. Rgds, Michael "George Pitcher" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] > Hi, > > I'm having a problem with the following query (ODBC on M$

[PHP-WIN] Matching arrays to build tables (Solved)

2003-09-29 Thread Mike Quinn
I got a very modest email from Bill Baron with the following code which works absolutely perfectly even though Bill never tested it! (Slick!). Thank's a million for that Bill and also thanks to Svensson for all the help - very much appreciated. Here is the code which I modified ever so slightly to

[PHP-WIN] Re: Can start php under Apache after Load Module php4apache.dll

2003-10-01 Thread Mike Quinn
Hi Morton, Remove or exit(); on the mysql_select_db("sampdb"); and that should work for you! Regards, Michael Quinn "Morten Gulbrandsen" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED] Thanks, I did, and now I can restart Apache. Here is my simplest PHP script. And

[PHP-WIN] Re: Can start php under Apache after Load Module php4apache.dll

2003-10-01 Thread Mike Quinn
Sorry I didn't mean work literally, but it should return the error you are looking for to describe what's up. Likewise with the other lines remove the or exit(); in case you have a typo. "Mike Quinn" <[EMAIL PROTECTED]> escribió en el mensaje news:[EMAIL PROTECTED]

[PHP-WIN] custom library

2003-10-02 Thread Mike Corredera
I am trying to create a library in Delphi 6 for IIS/PHP, does anyone know where I can find documentation about this ? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] Session prob

2003-10-05 Thread Mike Brum
You need to start the session. sesstion_start(); Read up - http://us3.php.net/manual/en/function.session-start.php -Original Message- From: Disko_kex [mailto:[EMAIL PROTECTED] Sent: Sunday, October 05, 2003 12:24 PM To: [EMAIL PROTECTED] Subject: [PHP-WIN] Session prob Why isn´t

RE: [PHP-WIN] Session Problem

2003-10-05 Thread Mike Brum
Assuming this is tied into your other problem (which I read first), then the problem here is that it appears you're on a Windows machine and you don't have php.ini set up correctly. You need to set the session.save_path in php.ini to point to a directory that exists. Mine, for example is this: se

RE: [PHP-WIN] Call to undefined function: imagecreatefromgif()

2003-10-12 Thread Mike Brum
Please refer to the function entry for imagecreatefromgif(). You'll note that it's been a function that's been discontinued from GD due to copyright issues. http://www.php.net/manual/en/function.imagecreatefromgif.php -M -Original Message- From: Guus Bil [mailto:[EMAIL PROTECTED] Sent:

[PHP-WIN] Re: [PHP] PHP & JavaScript

2003-10-22 Thread Mike Migurski
>Have somebody any idea how I could do something like that? You're somewhat out of luck, as the chain of events in your typical HTTP transaction looks something like this... >[time]-> client request received from browser | +-

RE: [PHP-WIN] i need help

2003-11-27 Thread Mike Brum
Do you have register_globals on? If not, try this: Your username = " . $HTTP_GET_VARS['username'] . ""; echo "Your password = " . $HTTP_GET_VARS['password'] . ""; ?> Regards Mike -Original Message- From: Hasan Barýþ Karayel [m

[PHP-WIN] Re: mail($To problem

2003-12-04 Thread Mike Quinn
Hi Alan, You have to set the headers to send HTML emails (that could be it!) $header = "MIME-Version: 1.0\r\n Content-type: text/html; charset=iso-8859-1\r\n"; $address = "[EMAIL PROTECTED]"; $subject = "HTML Email"; $content = "stuff"; mail($address, $subject, $content, $header); "Alan Mc

[PHP-WIN] Setting Cookie problem

2003-12-08 Thread Mike Lee
the annoying problem would be much appreciated! Cheers, Mike. This is code of 'cookies.php': Cookie test script // for debug //nothing appears Type value: __ Do you Yahoo!? New Yahoo! Photos

RE: [PHP-WIN] mail()

2004-01-07 Thread Mike Brum
It's very possible that they're not letting you relay through them since you're not providing any authentication for that mail server but just trying to send (as far as it can tell) "random mail from an unknown sender". The mail server can't tell the difference from your script from that of any ot

RE: [PHP-WIN] Calling a function from a hyperlink

2004-01-10 Thread Mike Brum
Can you be a bit more clear on "calling a function from a hyperlink"? If you're referring to that in the JavaScript sense, then no. If you mean "how do I submit a form from a text link" then that's also done through JavaScript, but it still POSTs/GETs a page on your server and you return content.

RE: [PHP-WIN] Windows XP hang problem

2004-01-12 Thread Mike Brum
It seems to me like you did all the testing you need to and that the problem is F-Secure. Why not give them a call and ask support what's going on since it's prohibiting the execution of one of your executables? Beyond that, I work with anti-virus software - there has to be a way to exclude direc

RE: [PHP-WIN] test message

2004-01-16 Thread Mike Brum
Not being able to replay is a common problem with VCR's. Please take yours to a local repair shop or, if it's still under warrantee, you should be able to send it back to the manufacturer and get free repairs for only the price of shipping. Good luck. -Original Message- From: Svensson, B

[PHP-WIN] PHP with Apache to use SSI

2004-02-07 Thread Mike Jamba
the .php file needed. (basically the same page was loaded again) Is there a fix for this? BTW I am using XP Thanks for any help! Cheers, Mike. __ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html -- PHP

[PHP-WIN] Does anyone have experience with php_ntuser/php_iisfuncs.dll?

2004-02-10 Thread Mike G
I running php on a win2k/iis box in a intranet enviroment. I recently came across two dll's which I thought I might be able to use (in my windows enviroment): php_ntuser.dll and php_iisfuncs.dll. I found them on http://snaps.php.net/win32/PECL_UNSTABLE/ and http://kromann.info/pecl.php. Goog

[PHP-WIN] How to correctly handle textual form inputs for SQL inserts/updates?

2001-01-13 Thread Mike Flynn
hat.. Can anyone fill me in on what the proper string formatting function or functions are to do this? Thanks a lot! -Mike Flynn -- PHP Windows 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]

[PHP-WIN] oracle+php4

2001-01-18 Thread Mike Jablonski
Hello: My name is Mike and I have little problem.How can I get a connection to an ORACLE8i-database with php4? I can't find any documentation about it. Regards Mike -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e

[PHP-WIN] Is it possible to CONVERT file formats?

2001-01-24 Thread Mike Flynn
ughly) to HTML? Not a whole HTML page, like as if you exported it to HTML from Word, just the text and its properties. If anyone knows of anything like this, it would be great. Thanks! -Mike Flynn Come the millennium month 12, in the home of the greatest power, the village idiot will come f

RE: [PHP-WIN] Text area

2001-01-30 Thread Mike Flynn
ot;\n"; ?> Note that there's no blank lines between the and tags besides those present in the $desc_long string that was retrieved from the database. That avoids adding undesired blank lines and spaces. -Mike Come the millennium month 12, in the home of the greatest power, the

[PHP-WIN] javascript escape()/unescape() equiv

2001-03-05 Thread Mike Scalora
I am generating some javascript code in PHP and I need to do a javascript escape() in my PHP code so that the javascript can unescape() it on the client. I've looked though the online manual for PHP an can't find anything that helps so far. I think my only problem is line ends so maybe I only n

[PHP-WIN] Uploading files?

2001-04-02 Thread Mike Flynn
very much for all help! -Mike Flynn -=- Mike Flynn - Burlington, VT -=- [EMAIL PROTECTED] http://www.mikeflynn.net/ * Give blood * Born to see two thousand years of man's effect upon the planet [Killing Joke] Extinction seems to be a plausible risk -- PHP Wi

[PHP-WIN] install problems

2001-04-02 Thread Mike Schwarz
or 10004: EventID 10004 Source DCOM DCOM got error "Logon failure: unknown user name or bad password. " and was unable to logon \IWAM_TEK1 in order to run the server: {3D14228D-FBE1-11D0-995D-00C04FD919C1} same happens with an installation of IHTML or other script-server dll.... who

[PHP-WIN] security alert

2001-04-03 Thread Mike Schwarz
ormal part using .htaccess security. If you do not have any .htaccess restrictions anywhere on your site you can leave doc_root undefined. who can help? thank you mike -- C-TEK Computer Bergstrasse 36 CH-5430 Wettingen phone & fax 056 426 04 01 -

[PHP-WIN] Methods for uploading files

2001-04-04 Thread Mike Flynn
very much for all help! -Mike Flynn -=- Mike Flynn - Burlington, VT -=- [EMAIL PROTECTED] http://www.mikeflynn.net/ * Give blood * Born to see two thousand years of man's effect upon the planet [Killing Joke] Extinction seems to be a plausible risk -- PHP Wi

[PHP-WIN] hidden fields & form enctype="multipart/form-data"

2001-04-12 Thread Mike Flynn
't even involve a file upload field, just the enctype="multipart/form-data" part of the form. Can anyone speculate at all at what might be causing this? I really appreciate all help. -Mike Flynn -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROT

Re: [PHP-WIN] reading an image into a string

2001-04-17 Thread Mike Flynn
e binary info of the image, sounds simple >enough. Although, I can get php to open the image and read the (binary) >contents into a string, can someone help me. > >Thanks. -=- Mike Flynn - Burlington, VT -=- [EMAIL PROTECTED] http://www.mikeflynn.net/ * Give blood * Bor

[PHP-WIN] What does an @ sign before a VARIABLE do?

2001-04-20 Thread Mike Flynn
ot;); if(@mysql_num_rows($res) != 0) { $verified_user = $userid; session_register("verified_user"); } } I've never seen that before and am curious what it does. I've seen it before function calls, but never before variables. Thanks! -Mike -=- Mike Flynn - Burl

Re: [PHP-WIN] What does an @ sign before a VARIABLE do?

2001-04-20 Thread Mike Flynn
n any variable that may or may not be set. -Mike -- PHP Windows 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]

[PHP-WIN] problem with web pages and php

2004-04-28 Thread Mike Ryan
I have downloaded mysql-4.0.18-win, php-4.3.6, webcalendar and apache2 webserver I am retrieving files from my server so I know the webserver is correct but when I try to access the day.php file all I am getting is the code to show up on the screen. I have tried to add to the http.config file

[PHP-WIN] php performance on IIS 6

2004-05-18 Thread Mike Booth
I was having a performance problem when running any php pages on IIS 6, the problem was that the page would load in the browser extremely slow, running a simple loop would take ages to output anything. I didn't get into testing much to find out where the speed issues are exactly but I found a fix f

RE: [PHP-WIN] Windows speed issue

2004-05-20 Thread Mike Booth
I believe this is the same problem I found a fix for in thread "php performance on IIS 6" (23749) If you're running in isapi mode turn on output-buffering, I haven't looked into this fully, and its weird that it works fast from the local machine (had the same issue) -- PHP Windows Mailing List

[PHP-WIN] Survey on Open Source

2004-09-13 Thread Mike Chan
) Questionnaire 1(Open Source Development): http://web.singnet.com.sg/~mikecck/opensource/WebFormA1.htm 3) Questionnaire 2(Open Source and IT/IS Cost): http://web.singnet.com.sg/~mikecck/opensource/WebFormB1.htm Thank you for your time. Mike Chan Student Curtin University of Technology -- PHP

[PHP-WIN] Newbie - Help with WAMP

2004-12-05 Thread Mike Francis
not access MySQL. The .dll is in the 'ext' folder and this is correctly named in the php.ini file. I can see the file, and I have checked the wording to make sure I have no typos. This is driving me barmy - could someone give a bit of advice please to get me out of this one? Cheers, Mike

[PHP-WIN] Problems with CreateProcess and php-win.exe

2005-01-27 Thread Mike Marshall
console window the php executes perfectly. I'm guessing its some sort of security issue but haven't managed to track it down yet. Has anyone got any ideas? System is XP Professional and PHP 5.0.3 Mike Marshall -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe,

[PHP-WIN] pop3 emailer

2005-05-28 Thread Mike Bellerby
Hi What is the easist way to read an email account from php? Thanks Mike -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] pop3 emailer

2005-05-29 Thread Mike Bellerby
Thanks! That was what I was looking for! Mike Mike wrote: Without using someone else's code or a pre-existing class, take a read through this: http://us3.php.net/manual/en/ref.imap.php -M Hi What is the easist way to read an email account from php? Thanks Mike -- PHP Wi

[PHP-WIN] Re: Problem compiling a custom extension

2005-07-30 Thread Mike Milano
John Smith wrote: I am able to compile PHP, but I am trying to create an extension ( following zend's hello world tutorial ) and the configure step will not recognize my enable command. I'm working with: PHP5.1 and have tried both win2k3/vs.net and winxp/vsc++6 with the exact same results.

[PHP-WIN] Re: php classes

2005-08-12 Thread Mike Milano
just a guess, are you sure you didn't transpose the first 2 letters of the class? should it be DbConnect() and not BdConnect() ? now that i think about it you would probably get a different error if the class didn't exist though. Marcos Nagamura wrote: Hi, sorry about the off-topic. With

[PHP-WIN] cscript error: 'PHP_UNICODE_SHARED' is undefined

2006-03-23 Thread Mike Milano
ript runtime error: 'PHP_UNICODE_SHARED' is undefined config command: cscript /nologo configure.js --enable-snapshot-build Any insight would be greatly appreciated. Thank you, Mike Milano -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: cscript error: 'PHP_UNICODE_SHARED' is undefined

2006-03-23 Thread Mike Milano
Mike Milano wrote: Platform: WinXP Pro Tools: VS7 CL Compiler & MS SDK Win2k Build Environment Version: 5.1.2 from CVS I get the same result with both compilers. When I try to configure the build, it throws this error: Enabling extension ext\tokenizer C:\work\php-src\configure.js(99

[PHP-WIN] Re: Restarting PHP on IIS

2006-03-28 Thread Mike Milano
Karuna wrote: Hi. I've done some changes to php.ini and even after restarting IIS, these changes aren't detected. I can't restart the machine itself so is there any other way to fix this? I remember on WinXP and apache I had to restart my PC to fix certain issues but I can't restart this as it

[PHP-WIN] Re: Getting windows username into php/mysql

2006-03-28 Thread Mike Milano
Alex Blundell wrote: HI, I have been searching the internet for days trying to find a way of getting the windows username (%username%) of the current logged on user and submitting it, along side some other information (entered into the form by the user), to a MysQl database. This will enable me

[PHP-WIN] Zend Optimizer Problem

2006-03-28 Thread Mike Milano
Zend Optomizer 2.6.2 works ok when I use the public release, but when I try to use a custom build, I get a pretty vague exception when php-cgi.exe is launched: php-cgi.exe - Application Error The instruction at "0x7c98fea" referenced memory at "0x0010". The memory could not be "written".

Re: [PHP-WIN] Zend Optimizer Problem

2006-03-30 Thread Mike Milano
Thank you Edin, So this is just a VC++7 issue? Do you know of any other compilers that work OK for compiling PHP on Windows? I have access to VC++6, but I'm just curious if cygwin or other methods of compiling would be successful too. Edin Kadribasic wrote: Hi Mike, You'

[PHP-WIN] Unable to load php_ldap.dll

2006-04-12 Thread Mike Craig
nyone have a solution for this? Thanks, Mike -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] Unable to load php_ldap.dll

2006-04-12 Thread Mike Craig
I found the problem, there are some libraries required. These are documented on www.php.net. -Original Message- From: Mike Craig [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 12, 2006 11:47 AM To: php-windows@lists.php.net Subject: [PHP-WIN] Unable to load php_ldap.dll I have been

[PHP-WIN] PHP 5.1.4 / FastCGI Error

2006-05-10 Thread Mike Milano
With PHP 5.1.2, FastCGI works fine. I downloaded the PHP 5.1.4 binaries and replaced my 5.1.2 install. I now get the following error when I load a PHP page. *** HTTP/1.1 503 Server too busy Server: Microsoft-IIS/5.1 Date: Wed, 10 May 2006 17:09:58 GMT Connection: close Content-Type: text/html

[PHP-WIN] Re: PHP 5.1.4 / FastCGI Error

2006-05-10 Thread Mike Milano
Could anyone verify that isapi_fcgi.dll works with PHP 5.1.4 for them? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] Re: PHP 5.1.4 / FastCGI Error

2006-05-15 Thread Mike Milano
Edin Mike Milano wrote: Could anyone verify that isapi_fcgi.dll works with PHP 5.1.4 for them? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Unicode data w/ PDO DBLIB, MSSQL

2006-10-09 Thread Mike Matz
y with unicode), Product_Season will be empty. However, if I SELECT Product_ID, Product_Season, Short_Description -- I'll get the Product_Season. Short_Description is empty in both cases (even if it's not empty when viewing with SQL Query Analyzer). Has anyone seen this behavior or have any ideas as to what I should try? Thanks, Mike

[PHP-WIN] RE: SPAM-LOW: [PHP-WIN] Unicode data w/ PDO DBLIB, MSSQL

2006-10-09 Thread Mike Matz
en Olmsted [mailto:[EMAIL PROTECTED] Sent: Monday, October 09, 2006 12:55 PM To: Mike Matz; php-windows@lists.php.net Subject: re: SPAM-LOW: [PHP-WIN] Unicode data w/ PDO DBLIB, MSSQL I think I have reported the problem you are having with the odbc and pdo and sql server under bug 38834. http://bu

RE: [PHP-WIN] Unicode data w/PDO DBLIB, MSSQL

2006-10-11 Thread Mike Matz
e CVS as of last night. Thanks for the quick responses and fix! -Original Message- From: Vincent DUPONT [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 10, 2006 4:14 PM To: Frank M. Kromann; Mike Matz Cc: [EMAIL PROTECTED]; php-windows@lists.php.net Subject: RE: [PHP-WIN] RE: SPAM-LOW:

RE: [PHP-WIN] ftp_connect() failed

2006-12-13 Thread Mike Matz
Could it be the FTP server throttling repeated connects from the same IP? Have you tried on different FTP server software? -Original Message- From: Alek Silverstone [mailto:[EMAIL PROTECTED] Sent: Friday, December 08, 2006 8:01 AM To: php-windows@lists.php.net Subject: [PHP-WIN] ftp_con

[PHP-WIN] php5

2007-01-01 Thread Mike harrell
Is php5 backwards compatable with php4 scripts ? -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Japanese text in MSSQL database

2007-03-14 Thread Mike Matz
quot;, "SET character_set_filesystem = utf8", Is there something similar I need to do with MSSQL? Is there an option in the PDO ODBC driver I need to set somehow? I'm guessing there's probably a simple solution but thus far I've been unable to find anything. Any help or insight would be greatly appreciated! Thanks, Mike

RE: [PHP-WIN] Japanese text in MSSQL database

2007-03-20 Thread Mike Matz
tinue using the PDO interface for the majority of my code. Hope this helps someone in the future :) -Original Message- From: Mike Matz [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 14, 2007 11:54 AM To: php-windows@lists.php.net Subject: [PHP-WIN] Japanese text in MSSQL database Hello,

[PHP-WIN] Stability issues on Win 2003

2007-05-15 Thread Mike Howarth
Hi I was wondering whether anyone can help me. I'm currently having problems with a windows server running PHP using the isapi_fcgi.dll written by Shane Caraveo. Over the past couple of weeks the PHP application running on the server has begun to become unresponsive and the ISAPI extension req

[PHP-WIN] Unable to mssql_connect unless in my office

2007-07-01 Thread Mike Beddo
I have a very strange problem. If anyone has an insight please let me know. When my laptop is docked in my office I have no problem using mssql_connect to the SQL server running on localhost. When I take my laptop home I get the following error: Warning: mssql_connect() [function.mssql-co

[PHP-WIN] getting started - need pointers

2009-05-28 Thread Mike Kay
Greetings. I am trying to get PHP installed and working on a Windows server - Windows Standard 2007. I've downloaded and installed PHP 5.2.9. Problem is I don't know how to use this at all. My web server is Apache 2.2 - my database is Mysql. I selected the Apache module 2.2 during the install, and

Re: Fwd: [PHP-WIN] getting started - need pointers

2009-05-28 Thread Mike Kay
n/, it can start as a service and all that > > > > > > > > > 2009/5/28 Mike Kay > > Greetings. I am trying to get PHP installed and working on a Windows >> server - Windows Standard 2007. I've downloaded and installed PHP 5.2.9. >> Problem is I don't

Re: Fwd: [PHP-WIN] getting started - need pointers

2009-05-28 Thread Mike Kay
WAMP installed. PHP still not working.sigh > have you looked at WAMP ? theres Xammp too but never really liked it > myself > much ...other swear by it though > > Look at WAMP : > > http://www.wampserver.com/en/, it can start as a service and all that > > >

RE: [PHP-WIN] getting started - need pointers

2009-05-29 Thread Mike Kay
Thank you all for your input. Let me be specific about what this server I'm building is to do. It's MAIN purpose is to use as a Bugzilla machine. Bugzilla requires a database, a Web server, ActivePerl and a mail server. The Bugzilla docs stated the preferred platforms as Mysql, Apache - and along

[PHP-WIN] best way to install php /apache/mysql on win 2008 server

2011-03-03 Thread mike lan
Hello everyone anyone can advise me of the best way to install php5.2 / apache/ mysql on windows 2008 for a production server ? really grateful thanks

RE: [PHP-WIN] unescape

2002-01-11 Thread Ford, Mike [LSS]
; when scripting with Javascript. > What is the PHP equivalent to unescape to remove space > characters (%20) > in HTML output, Try urldecode() (see http://www.php.net/manual/en/function.urldecode.php) or rawurldecode() (see http://www.php.

<    1   2   3