[PHP-WIN] Re: doing $mc=new myclass(); or $mc= &new myclass(); ?

2003-06-06 Thread DvDmanDT
I do believe you want the first version... "Peter Misun" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > > need help: > what do you suggest to use: > > $mc = new myclass(); > or > $mc = &new myclass(); > > because in any tutorial I can see the first form, but on page "what refe

[PHP-WIN] Re: Join Char Strings

2003-05-29 Thread DvDmanDT
Change your + against . everywhere... "Stephen Rivas Jr" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Again, looking in PHP.net for help - unable to proceed. > > I'm trying to add a variable string, to another literal string and store it > in that variable again. I know it can

[PHP-WIN] Re: GUI for php on windows?

2003-06-09 Thread DvDmanDT
You could always checkout AceHTML 5 from visicommedia.com.. It's avaible as freeware, one main feature is removed, but that should matter when you use PHP... Also, there's a FTP client that integrates well into AceHTML named AceFTP... "Eppack" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PR

[PHP-WIN] Re: running a batch file from PHP

2003-06-11 Thread DvDmanDT
$result = `batfile.bat`; Would do the trick... Notice that it's ` (backtic), not single quote ' <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hello all, > > I would like to run a batch file in the background, using PHP and Apache on > Win2k Server. I use ANALOG to generate u

[PHP-WIN] Re: Cannot access HTTP_POST_VARS without explicitly stating

2003-06-12 Thread DvDmanDT
register_globals in php.ini should be set to On in order for that to work... "Jeremy" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > I am having an issue with my server. I'm relatively new to PHP, so I've > been looking over a lot of tutorials and articles lately. One common the

[PHP-WIN] Re: $GLOBALS

2003-06-12 Thread DvDmanDT
Hmm... I think the first part of foreach should be an array... So, more like foreach($GLOBALS as $photo)... Unless photo is an array containing photos... However, how to make a variable become global, I'm not sure of... "Mike" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > When r

[PHP-WIN] Re: COM Objects and Response variable (from ASP)

2003-06-13 Thread DvDmanDT
You'll have to create your own object for that I think... "Reuven Nisser" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hello, > I am trying to convert an ASP script to PHP. The script is using COM objects > and passes them 3 parameters: Request, Response & Session. > > When the

[PHP-WIN] Re: absolute include files

2003-06-14 Thread DvDmanDT
Oh, I think you have the register_globals problem... Search the manual for 'register_globals' for more info... "Dj Dust" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > hiya > > I've been tearing my hair out for 2 days now trying to get this to work and > I'm sure the answer has go

Re: [PHP-WIN] absolute include files

2003-06-14 Thread DvDmanDT
Assuming it's not a downloaded script that is... "Dash McElroy" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > daz, > > This should be easy enough. First, have you checked to see if > register_globals is on or off on your local machine? It defaults to off, > so $DOCUMENT_ROOT woul

[PHP-WIN] Re: Undefined variables

2003-06-16 Thread DvDmanDT
It's your PHP.ini... You must set error_reporting to like E_ALL & ~E_NOTICE or something like that... You might also want to check register_globals, most likely you want this to be On instead of Off which is default... "Jorge L." <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > I bo

Re: [PHP-WIN] Re: Undefined variables

2003-06-16 Thread DvDmanDT
he scripts that needs security, you can use $_POST and $_SESSION and so on, but for things like "Enter two numbers to see which one is biggest", it feels quite silly to disable it... The reason for that example is that books often have very silly examples like that... // DvDmanDT &q

Re: [PHP-WIN] Re: Undefined variables

2003-06-17 Thread DvDmanDT
hat he bought it before 4.2.0... Anyway, today is the last day I'm here to discuss this (going on a camp for three weeks, no comp there)... So, post quickly or send me a mail in cc: or something if you are going to reply, please... // DvDmanDT "Per Lundberg" <[EMAIL PROTECTED]>

[PHP-WIN] Re: $_ENV["DOCUMENT_ROOT"] empty (Ap2, php 432)

2003-07-27 Thread DvDmanDT
Try $_SERVER["DOCUMENT_ROOT"]... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Marc Tricou" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi, > > If have Apache 2 running and installed PHP 4.3.2 normally. It's good >

[PHP-WIN] Re: Notice: Undefined variable: link in

2003-08-03 Thread DvDmanDT
1. I assume you are using 4.3.1, not 4.31... Not that it really matters though... 2. It's in your PHP.ini, I think you are used to have error_reporting = E_ALL & ~E_NOTICE, but you have E_ALL only... This displays Notices... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTE

[PHP-WIN] Re: Notice: Undefined variable: link in

2003-08-03 Thread DvDmanDT
It's not really fixed, more like hidden.. -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "David Adade" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Thanks > The cured the problem. It is now working. > > > "Dvdmandt&quo

[PHP-WIN] Re: Functions in included files cannot be called

2003-08-09 Thread DvDmanDT
That you are supposed to include "top1.php" WITHOUT "http://www.whatever.com/"; as that is what screws up... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Krishna Murali-A19032" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECT

[PHP-WIN] Re: How to compile a win32 php extension module ???

2003-08-14 Thread DvDmanDT
I'd use VC++ and compile it... I think I can do it if you send the source... Not sure though, never compiled myself before... HMm.. Yes, I have... Well... You make a project and compile I think... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Ika Oscaos" &l

Re: [PHP-WIN] download function

2003-09-03 Thread DvDmanDT
Would you mind sharing that solution with us? I'm kinda intrested in that... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Ignatius Reilly" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > I found the solution to my problem

[PHP-WIN] Re: stuck with substr now .......

2003-09-03 Thread DvDmanDT
Are you sure you mean /r/n? I think you mean \r\n which is a windows line-end.. -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Toby z" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > hay guyz > > im stuck with substr now > >

[PHP-WIN] Re: Problem in Win32api.c

2003-09-17 Thread DvDmanDT
I really doubt it is.. Why not check? Hmm... CVS latest update 5 weeks ago... License in headers... Seems like the one before that was 10 months ago... So... I don't think so... To bad, I want this extension... It's sooo cool... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL

[PHP-WIN] Using PHP to compile uploaded sourcecode with cygwins gcc?

2003-09-20 Thread DvDmanDT
7;s a later problem) pwd returns I'm in the 'compiling' folder, in the php script, I chdir() to get into that folder... Can anyone help, please? Security is not a concern, it's private, and it's for learning purposes mostly... I use winXP home... I can install stuff like

[PHP-WIN] Re: $_POST in MySQL query issue...

2003-10-16 Thread DvDmanDT
$sql="insert into $table set Name = '".$_POST["elementName"]."'"; or even better: $sql="insert into ".$table." set Name = '".$_POST["elementName"]."'"; But the method both Jake and Bao suggested will also wo

[PHP-WIN] Re: IDE's

2003-10-18 Thread DvDmanDT
I use AceHMTL 5 to save -> switch window to IE -> F5... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Alan McDonald" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > It seems that the popular IDE's assume that you are running agai

[PHP-WIN] Re: @ symbol

2003-10-19 Thread DvDmanDT
To display errors or not (if they show up that is)... The @ will disable error-reporting... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] "Alan McDonald" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > I've searched but cannot find in

[PHP-WIN] Re: Register Globals

2003-10-20 Thread DvDmanDT
That depends on if you use the globals or not And if you don't, no use to have it turned on... -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Just out of curiosity, if I was to work with register_

[PHP-WIN] Age from birthdate?

2003-10-22 Thread DvDmanDT
ideas? -- // DvDmanDT MSN: [EMAIL PROTECTED] Mail: [EMAIL PROTECTED] -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP-WIN] Re: Problems with TCP/IP and PHP

2003-10-27 Thread DvDmanDT
Check your hosts file (C:\windows\system32\drivers\etc) and see if something is wrong with it... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out more: http://us.

[PHP-WIN] Re: Problems with TCP/IP and PHP

2003-10-27 Thread DvDmanDT
XP home.. :p Should be same thing though... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out more: http://us.mcafee.com/virusInfo/default.asp?id=helpCenter

[PHP-WIN] Re: Problems with TCP/IP and PHP

2003-10-28 Thread DvDmanDT
Ok, can you give me one difference? I have setup servers and PHP on both home and professional, as well as connections and firewalls and I haven't noticed any difference.. :s -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are

Re: [PHP-WIN] Why is phpinfo giving me these version numbers?

2003-11-06 Thread DvDmanDT
I could not find a single log.. :s Anyway, if you solve it, please let me know.. If you didn't install using an installer, chances are the 'mysql' db isn't setup, causing mysql to crash... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com #

[PHP-WIN] Re: GD Lib

2003-11-16 Thread DvDmanDT
in php.ini, change the extension_dir variable, then uncomment ';extension=php_gd2.dll' (remove the ; at the beginning of the line)... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Sw

Re: [PHP-WIN] PHP in general

2003-11-16 Thread DvDmanDT
oreach ( $y as $xcell ) print "$xcell "; print "\n"; } print ""; } } $test = new table( array("a", "b", "c") ); $test->addRow( array(1,2,3) ); $test->addRow( array(4,5,6) ); $test->addRowAssocArray (array ( b=>0, a=>6, c=>

[PHP-WIN] Re: loading php_gd2.dll

2003-11-19 Thread DvDmanDT
extension_dir (or is it path?) should be C:\PHP\extensions I think, unless you did something wierd with it.. :s -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out

[PHP-WIN] Re: GD2 function issue

2004-01-02 Thread DvDmanDT
rstand why the devs are pissed, although, I think they overreact some... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out more: http://us.mcafee.com/virusInfo/defa

[PHP-WIN] Re: imagecopyresampled question

2004-01-02 Thread DvDmanDT
isn't it just to do a $new=imagecreatetruecolor(50,50) , and use imagecopyresampled($new,$orginal,0,0,$cordinate_from_flash_app_x,$same_but_y ,50,50,$flash_end_x,$flash_end_y); imagecopyresampled($new,$orginal,0,0,100,120,50,50,300,320); -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvd

Re: [PHP-WIN] php.ini & smtp (php 4.3.4)

2004-01-09 Thread DvDmanDT
s settings or the sapi version... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com ## Please, if you are using windows, you may be infected by Swen. Please go here to find out more: http://us.mcafee.com/virusInfo/default.asp?id=helpCenter&hc

[PHP-WIN] Re: using a variable in a JS dot notation string

2004-01-27 Thread DvDmanDT
echo "document.voteForm.{$tempVar}[0].checked"; echo 'document.voteForm.'.$tempVar.'[0].checked'; -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Ron Herhuth" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] I ha

[PHP-WIN] Re: error with variables after php 4.1.1 (but not priors)

2004-01-27 Thread DvDmanDT
ignored even though it's a notice saying 'Check the archives before posting a question, chances are it has already been asked and answered a few times.' This question has been answered just about a million times before.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.

[PHP-WIN] PHP 1.0?

2004-01-27 Thread DvDmanDT
Hello everyone! Does anyone have a copy of PHP 1.0? Today I managed to get PHP 2 working, and I already had 3, 4 and 5 on my system.. So I want 1.0, just to have them all.. So, anyone? Please? I really want it.. Any pointers / comments / files appriciated! -- // DvDmanDT MSN: dvdmandt

[PHP-WIN] Re: shell_exec and accented characters

2004-01-29 Thread DvDmanDT
iconv functions or something like that... It's caused by different charsets... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Tim" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi, > > I'm running shell_exec on a command t

Re: [PHP-WIN] OPTIMIZING PHP

2004-02-18 Thread DvDmanDT
I do beleive you mean short_open_tag.. :) I doubt you ment short_quotes anyway.. :) -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "David Felton" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > The first option is faster, although thi

[PHP-WIN] Re: Working with Base64 data

2004-02-18 Thread DvDmanDT
Did you try with PHP 4.3.4 (I think some earlier version was buggy)? It worked, and created something like a black/white palette or something, and the number '2' at the bottom, 24x466 px.. :) Just used this: echo base64_decode($image_data); -- // DvDmanDT MSN: dvdmandt¤hotmai

[PHP-WIN] Re: NEWBIE: Is this consistant of bad PHP install?

2004-02-21 Thread DvDmanDT
Sounds like you have both Apache and IIS, and that IIS is catching the requests instead of Apache.. :p If that's not the case, try to check the DocumentRoot in httpd.conf.. This seems to be an Apache error rather than something to do with PHP.. Hope you solve it.. -- // DvDmanDT MSN: dvd

[PHP-WIN] Re: Same Win2k problem

2004-02-24 Thread DvDmanDT
You have installed PHP 'the wrong way'.. Install as module instead.. :p Increases performance, and reduces ram usage, as well as should get rid of that problem you are having.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com <[EMAIL PROTECTED]> skrev i meddela

[PHP-WIN] Re: servers in php

2004-03-13 Thread DvDmanDT
I was thinking about this a while ago accutually.. It does seem like you can use ticks to get a multithreaded server, with multiple connections, but I can't say for sure.. :p -- // DvDmanDT MSN: dvdmandt?hotmail.com Mail: dvdmandt?telia.com "Comex" <[EMAIL PROTECTED]> skr

[PHP-WIN] Re: PHP + COM

2004-03-16 Thread DvDmanDT
Yes, you must edit the service in the administative tools, to allow interaction with desktop.. OR run the script from commandline... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "B.A.T. Svensson" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED]

[PHP-WIN] Re: Java

2004-03-16 Thread DvDmanDT
Since it has 0% to do with PHP, I assume you code it wrong.. 1. Maybe it has to do with frames or domains 2. Maybe filenames But it's definitly not PHP's fault.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "S.Gultom" <[EMAIL PROTECTED]> skrev

[PHP-WIN] Re: Domain name

2004-03-18 Thread DvDmanDT
Personally, I'd suggest getting mod_l33t, and just modify the config file.. But you'll need a domain name setup which allows for this in that case.. Well, you'll need that anyway so.. Try to find mod_l33t.. Google for like mod_l33t-1.0.tar.gz... -- // DvDmanDT MSN: dvdmandt¤h

[PHP-WIN] Re: Expression evaluation - how is it done?

2004-03-18 Thread DvDmanDT
It's done the lazy way.. If the whole expression can't return true, it's not nessecary to evaluate the right side of the && operator.. In other words, my_bool_function will never be called... See the manual for more.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dv

[PHP-WIN] Re: install win95 problem

2004-03-19 Thread DvDmanDT
Support for windows 95 has been dropped.. Maybe that error is why.. Although, you are not supposed to like doubleclick php.exe or something, cause that gives error for me too.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Bobo Wieland" <[EMAIL PROTEC

[PHP-WIN] Re: The specified CGI application misbehaved by not returning acomplete set of HTTP headers.

2004-03-22 Thread DvDmanDT
wouldn't get a complete set of headers (which it's complaining about)... Add this at the end of your command: 2 > &1, like this: $ListDir = "dir $Dir\\*.$pattern 2>&1"; Also, I think this would be even better: $ListDir = "dir \"$Dir\\*.$pattern\" 2&

[PHP-WIN] Re: Major apache start error!!

2004-03-23 Thread DvDmanDT
Personally, I'd suggest an upgrade to Apache 1.3.29.. While Apache 2 works, it doesn't work as well as 1.3 does.. I've tried them both, several times, and I keep going back to 1.3 after a while.. Well, good luck.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.

[PHP-WIN] Re: w32api GUI

2004-03-25 Thread DvDmanDT
ll have to get it from pecl or snaps.php.net.. Also, shouldn't you use some hWnd? 0 seems a bit bad... :p But anyway, I don't really have any idea what I'm writing about.. Oh, and you might wanna try other PHP versions.. I had code working in 4.2.* and maybe even 4.3.0, that doesn'

[PHP-WIN] Re: PLEASE HELP...Email attachment corruption

2004-03-25 Thread DvDmanDT
Maybe the files are damaged even before they get to the php script? -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Ron Herhuth" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] I am dying here. I'm on a deadline and I can't get attac

[PHP-WIN] Re: STUCK : String Comaparison

2004-04-01 Thread DvDmanDT
if all 1's in the dynamic string has a match in the static one, but not if the static one has a 1 that the other doesn't have.. Correct? -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Ron Herhuth" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PRO

[PHP-WIN] Re: Refresh in php

2004-04-01 Thread DvDmanDT
You use the meta-tag-style in PHP as well, or a javascript.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Sudeep sarath" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi friends, > > Is there any function in php that keeps re

[PHP-WIN] Re: quotes in mysql

2004-04-02 Thread DvDmanDT
replace $check with mysql_escape_string($check); -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Sudeep sarath" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi friends, > > I have a 'textarea' in my php page and i ne

[PHP-WIN] Re: php newbie, losing variable scope across functions

2004-04-04 Thread DvDmanDT
Umm.. I think you want the global keyword... function getparams() { global $smenu; ... } -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi, I have an application I'm transferring > to php. Rig

[PHP-WIN] Re: CGI (c++) - Fork To PHP - _popen - 404 No input file specified

2004-04-05 Thread DvDmanDT
GET and server specific variables, there has to be some kind of communication.. The easiest way to solve it would probably be to use the cli version... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Hankj" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTE

[PHP-WIN] Re: $_FILES array returns undefined index

2004-04-06 Thread DvDmanDT
Maybe you forgot the enctype="multipart/form-data" in the tag? -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Ron Herhuth" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] I'm trying to do a file upload using PHP. I am using thi

Re: [PHP-WIN] Including remote PHP script, Return DO NOT works.

2004-04-10 Thread DvDmanDT
/manual/en/function.include.php#AEN5536 -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "B.A.T. Svensson" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > You should have a closer look at the concept of a function. > > A function are suposed to retu

Re: [PHP-WIN] Including remote PHP script, Return DO NOT works.

2004-04-10 Thread DvDmanDT
If he rename the file he tries to include to .txt, it will work as he want it to.. http://php.net/manual/en/function.include.php - Example 11-7, and the text right above it.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "B.A.T. Svensson" <[EMAIL PROTECTED]>

[PHP-WIN] Re: GD doesn't work?

2004-04-10 Thread DvDmanDT
Sounds like it has nothing to do with GD or PHP.. Probably a badly configured Apache.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Arno Muhren" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi everyone, > > I have a Windows 2003

Re: [PHP-WIN] Including remote PHP script, Return DO NOT works.

2004-04-11 Thread DvDmanDT
Pretty much exactly what I wrote.. It does work, it works as it should and it nothing wrong with it really.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "B.A.T. Svensson" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > What is the poi

[PHP-WIN] Re: Need help using "php.exe"

2004-04-11 Thread DvDmanDT
Try to replace the ? with a space.. But I really have no idra.. Make sure you use latest version, cause I think this was changed to work better in latest version.. Although, I would recommend to use the CLI version instead of the CGI.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt

[PHP-WIN] Re: The COM problem when converting from ASP to PHP

2004-04-24 Thread DvDmanDT
Try $com->GenerateSigningKeys(&$privkey,&$pubkey); and enable allow_calltime_pass_by_reference or whatever it's called.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Steven Kidd" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED]

[PHP-WIN] Re: MCrypt Windows Problems

2004-05-03 Thread DvDmanDT
What I did (working) was to just place libmcrypt.dll in the system32 folder.. To test, use the examples at php.net/mcrypt -- // DvDmanDT MSN: dvdmandt?hotmail.com Mail: dvdmandt?telia.com "Phpdiscuss - Php Newsgroups And Mailing Lists" <[EMAIL PROTECTED]> skrev i meddela

[PHP-WIN] Re: Hopefuly an easy one?

2004-08-02 Thread DvDmanDT
urlencode or rawurlencode.. The first one is what your browser user I think.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Ross Honniball" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi All, > > I'm just trying to link

[PHP-WIN] Re: Windows, Apache, and PHP

2004-09-07 Thread DvDmanDT
e zip file.. php4apache.dll is located in the sapi folder.. php4ts.dll which is another important file is located in the root folder of your php installation.. You might need to move that one to a better place.. Read manual for more info.. http://php.net/manual/en/ -- // DvDmanDT MSN: dvdmandt¤hotmai

Re: [PHP-WIN] INCLUDE ASP does Not Work! for PHP - 4.3.4

2004-09-18 Thread DvDmanDT
I'd lookup virtual()... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Trevor Gryffyn" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] The problem is that the web server looks at the file type and determines what to do with it before it

[PHP-WIN] Re: I'm having a serious problem with imagecreatefromjpeg();

2004-09-18 Thread DvDmanDT
Are you sure you have installed GD? -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Rafael Soares" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > This is what happens: > > "Call to undefined function imagecreatefromjpeg() in >

Re: [PHP-WIN] INCLUDE ASP does Not Work! for PHP - 4.3.4

2004-09-22 Thread DvDmanDT
It's not.. It exists in other SAPIs as well unless I'm misstaken (there was discussion on it anyway), including ISAPI which IIS uses unless PHP is installed as cgi.. Not sure at all about this though.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Mikey&quo

Re: [PHP-WIN] INCLUDE ASP does Not Work! for PHP - 4.3.4

2004-09-22 Thread DvDmanDT
T there is also mod_mono.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Dvdmandt" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > It's not.. It exists in other SAPIs as well unless I'm misstaken (there was > discussion on it anyw

[PHP-WIN] Re: Running php as scripting language

2004-09-27 Thread DvDmanDT
be able to doubleclick a .php file and get the results shown in explorer).. I think I succeded somehow though.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Danielb" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > How easy is it to set

[PHP-WIN] Re: PHP-GTK plugin ?

2004-09-27 Thread DvDmanDT
down.. So, maybe we should all just stick to java or flash when it comes to those things? -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] Hello, Why not write an php-gtk plugin for brow

[PHP-WIN] Re: WinXP- PHP install: Premature end of script headers

2004-10-03 Thread DvDmanDT
You are not supposed to use php.exe, use php-cgi.exe.. php.exe doesn't generate any HTTP headers like cgi's are required to, therefore the error... -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "George Broyles" <[EMAIL PROTECTED]> skrev i meddela

[PHP-WIN] Re: 4 vs 5

2004-10-08 Thread DvDmanDT
to have as module is the one you will likely use the most.. Doesn't matter all that much though.. Hope that helps.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Bobo Wieland" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] Hi all! I'm

[PHP-WIN] Re: PHP,W2K,Manual Configure, Authentication

2004-10-08 Thread DvDmanDT
All I get is an 500 response, meanin something is wrong in the IIS config.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Zac Korpi" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] Hi, I've installed PHP manually on W2K server -

[PHP-WIN] sharing files over network with XP Home and PHP?

2005-01-22 Thread DvDmanDT
hink it's due to the fact that PHP is installed as Apache module, running as system service.. I can access the files from explorer.. So.. Any ideas? Anyone? -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com -- PHP Windows Mailing List (http://www.php.net/) To unsubscr

[PHP-WIN] Re: why does my php5.03 do not load php_oci8.php ?

2005-01-22 Thread DvDmanDT
Maybe it's for the wrong PHP version or something.. -- // DvDmanDT MSN: dvdmandt¡èhotmail.com Mail: dvdmandt¡ètelia.com "Yuegong" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Hi; > > My system is win2000+php5.03cgi , other extensions like

Re: [PHP-WIN] sharing files over network with XP Home and PHP?

2005-01-22 Thread DvDmanDT
Errm.. I did search accutually.. But didn't find anything.. Partly cause I'm running home edition.. There's no security tab there.. And the folders are shared.. Apache is running as SYSTEM, and I'm as User or something like that.. Any more ideas? -- // DvDmanDT MSN: dvdma

[PHP-WIN] Re: new mysql.dll for php...

2005-01-22 Thread DvDmanDT
Apache 1.6? Errmm.. Still on 1.3.. :p -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "SargeTron" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > I'm looking for this solution aswell... but I would rather it was something > that woul

Re: [PHP-WIN] sharing files over network with XP Home and PHP?

2005-01-23 Thread DvDmanDT
d for home users), and it seems like it needs to have a password to work (couldn't get it to login without a password).. 3. Test.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Armando" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > It w

Re: [PHP-WIN] sharing files over network with XP Home and PHP?

2005-01-23 Thread DvDmanDT
nyway.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Mikey" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > > Yoiks!!! > > > I accutually got it working.. Here's the steps for anyone with the same > > problems: > > >

Re: [PHP-WIN] sharing files over network with XP Home and PHP?

2005-01-23 Thread DvDmanDT
k files as well.. If you need security, don't even consider XP, and even more not home.. Now, if you can tell me a security hole I've opened (apart from network access which was my goal with this), I'll take back my suggestion.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdm

[PHP-WIN] Re: PHP MS-DOS

2005-01-26 Thread DvDmanDT
I don't think you could get it to run under dos.. You could recompile it ofcorse, but I doubt it would work anyway.. I think it uses some functionality that wouldn't be possible under dos.. But it's only a guess.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com

Re: [PHP-WIN] Re: PHP MS-DOS

2005-01-26 Thread DvDmanDT
t, but it uses stuff that I doubt exists in dos.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "Jean-Philippe Palha" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > Try PHP CLI, it's the command line version of PHP > (look at the CLI

Re: [PHP-WIN] Re: PHP MS-DOS

2005-01-26 Thread DvDmanDT
ry managed the same way as in newer versions of Windows? Probably not.. 2 apps can't really run at the same time in dos (not like in windows anyway), so shared memory probably isn't even a part of the OS.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com <[EMAIL PROTECT

[PHP-WIN] Re: Has anyone seen this error before?

2005-01-28 Thread DvDmanDT
I think it means you have a } at the wrong place.. { print << skrev i meddelandet news:[EMAIL PROTECTED] > Parse error: syntax error, unexpected $end in > c:\wamp\www\php_excercises\schedule.php on line 81: > > line 81 is all the way at the bottom. > > Here is my code: > > "-//W3C//DTD XHTML 1.0

[PHP-WIN] Re: Has anyone seen this error before?

2005-01-28 Thread DvDmanDT
Ermm.. Change to as well.. otherwise you'll have in your result.. -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "The Disguised Jedi" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > it means php was looking for the end of file mark

[PHP-WIN] Re: Decryption

2005-11-29 Thread DvDmanDT
.. What exactly are you trying to do? If you are trying to decrypt user input, then no, it's not going to work.. You'll have to read the input first, then pass that to mcrypt_decrypt, then write that to your outfile.. -- // DvDmanDT mail: dvdmandt¤telia.com msn: dvdmandt¤hotmail.

[PHP-WIN] Re: HTML event handling

2005-12-01 Thread DvDmanDT
Not unless you can force all users to install PHP and the ActiveScript SAPI module.. Then I think you could do it.. But I haven't tried it.. -- // DvDmanDT mail: dvdmandt¤telia.com msn: dvdmandt¤hotmail.com "Panos Laganakos" <[EMAIL PROTECTED]> skrev i meddelandet news:[E

[PHP-WIN] Re: Executing External Application

2006-06-14 Thread DvDmanDT
You should only run console applications, not gui apps.. Also, by default Apache is installed as a system service, and in that case it doesn't make sense to run graphical apps.. -- // DvDmanDT mail: dvdmandt¤telia.com msn: dvdmandt¤hotmail.com "Brian Stakes" <[EMAIL P

Re: [PHP-WIN] insert md5 password

2006-09-29 Thread DvDmanDT
Just check why it fails.. mysql_error() returns a string with the last error message.. -- // DvDmanDT mail: dvdmandt¤telia.com msn: dvdmandt¤hotmail.com "Alf Stockton" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > SMITHT wrote: >> INSERT INTO U