php-windows Digest 27 Apr 2001 13:47:30 -0000 Issue 567 Topics (messages 7076 through 7089): What is this?? 7076 by: Manesh 7086 by: Manesh Re: [PHP] What is this?? 7077 by: Jack Dempsey 7078 by: Manesh 7079 by: Andrew Hill 7080 by: Philip Olson php4 and sybase 7081 by: Warren Harris Re: MYSQL Help 7082 by: Johan Lundqvist Re: NT4 + Apache problem 7083 by: Johan Lundqvist Re: [PHP] What's wrong with Apache + php + mysql on Windows? 7084 by: Ben Cairns Re: [PHP] Problem with the HTTP_REFERER 7085 by: Ben Cairns Sorry, wrong sebject :) 7087 by: Manesh How can I extend PHP 7088 by: Kenji Chan 7089 by: Asendorf, John Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PROTECTED] To post to the list, e-mail: [EMAIL PROTECTED] ----------------------------------------------------------------------
Warning: Undefined variable How do i get rid of this???
I need a free web server that gives me 1 Myslq accound and php hoasting! if soneone know of any please tell me. thx
Manesh wrote: > > Warning: Undefined variable > > How do i get rid of this??? > > -- > PHP General 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] if you're sure that its because you didn't initialize first before using, then look in your php.ini file...there are options there where you can error strictness...
where is that? -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jack Dempsey Sent: Thursday, April 26, 2001 10:38 PM To: Manesh Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PHP] What is this?? Manesh wrote: > > Warning: Undefined variable > > How do i get rid of this??? > > -- > PHP General 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] if you're sure that its because you didn't initialize first before using, then look in your php.ini file...there are options there where you can error strictness...
You want to find the Error : Modify the error reporting section of you php.ini. You may combine different error settings with the symbols "~" (not) , "|" (or), and "&". to control the final error reporting level. As an example, the default setting "E_ALL & ~E_NOTICE" means "report all errors, except notices". All the options you can use are listed here: http://www.php.net/manual/en/html/features.error-handling.html Best regards, Andrew -------------------------------------------- Andrew Hill - OpenLink Software Directory of Technology Evangelism Internet Data Integration Technology http://www.openlinksw.com On Thursday, April 26, 2001, at 10:38 PM, Manesh wrote: > where is that? > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Jack > Dempsey > Sent: Thursday, April 26, 2001 10:38 PM > To: Manesh > Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: [PHP] What is this?? > > > Manesh wrote: >> >> Warning: Undefined variable >> >> How do i get rid of this??? >> >> -- >> PHP General 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: php-list- >> [EMAIL PROTECTED] > > if you're sure that its because you didn't initialize first before > using, then look in your php.ini file...there are options there where > you can error strictness... > > -- > PHP General 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] > >
Have a look at this post : http://marc.theaimsgroup.com/?m=98571030029538 regards, philip On Thu, 26 Apr 2001, Manesh wrote: > Warning: Undefined variable > > > How do i get rid of this??? > > -- > PHP General 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] >
I think I have PHP4 and Apache working ok, seems to process my basic PHP pages. However, when I try to use any of the sybase functions, like sybase_connect, I get Fatal error: Call to undefined function: sybase_connect() in sybase-connect.phl on line 2 but I don't get any erros loading the extension php_sybase_ct.dll what gives? what am I missing? [EMAIL PROTECTED] remove -nospam before replying
Tom's answer is correct, but... I just HAVE to comment on the security issue in allowing telnet access at all. You should think more than twice before open up any system, in any way... You might wanna think SSH, firewall or maybe VPN... I dunno. /Johan Tom Mathews wrote: > > 1) Command line console is always installed with MySQL - telnet to the > remote machine and you should be able to run it with no problems. > 2) GUI - I reccommend phpmyadmin - get it from the MySQL site. It has a lot > of limitations, but the basic functionality is all fine. > > Tom > > edwin wrote: > > > hi, > > > > thanks!! > > > > btw, do you know any good commandline or gui clients for Mysql? > > i want to administer the DB remotely... > > > > thanks > > ed > >
This is normal when something is very wrong in php.ini Check the syntax in all lines in your ini-file. Ermanno Iannacci wrote: > > I get a strange error when i use php with Apache on NT4 > If i run phpinfo() i get this error: > "Could not attach to the application > win NT error code = 87" > > This happens only if php.ini is in win nt folder. > Else i got no errors, but php doesn't load all the extensions. > PHP run as module. > > -- > 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]
Nik, Your E-Mail address in your mail client is wrong: [EMAIL PROTECTED] Send me your php.ini, and your httpd.conf I will also need your machine's name (right click network neighbourhood, properties, identification, machine name) and your path to php.exe Your apache, php version would be usefull to. also, the script your trying to execute, and does the script actually run? or does it just time out. -- Ben Cairns - Head Of Technical Operations intasept.COM Tel: 01332 365333 Fax: 01332 346010 E-Mail: [EMAIL PROTECTED] Web: http://www.intasept.com "MAKING sense of the INFORMATION TECHNOLOGY age @ WORK......"
Yes but you can call the Header() function in the middle of the page if you need to. You just need to put this line as the VERY FIRST line of the script: <? ob_start() ?> This uses the PHP Output Buffering functions. -- Ben Cairns - Head Of Technical Operations intasept.COM Tel: 01332 365333 Fax: 01332 346010 E-Mail: [EMAIL PROTECTED] Web: http://www.intasept.com "MAKING sense of the INFORMATION TECHNOLOGY age @ WORK......"
I need a free web server that gives me 1 Myslq accound and php hoasting! if soneone know of any please tell me. thx
How can I extend PHP use C / C++ ? ( In windows / Linux ) Could you give me more information ?
I know that the book, Web Application Development with PHP 4.0 has a whole section on extending PHP... I own the book but haven't read the section. http://www.amazon.com/exec/obidos/ASIN/0735709971/ref=sim_books/107-9940057- 0478924 --------------------- John Asendorf - [EMAIL PROTECTED] Web Applications Developer http://www.lcounty.com - NEW FEATURES ADDED DAILY! Licking County, Ohio, USA 740-349-3631 Aliquando et insanire iucundum est > -----Original Message----- > From: Kenji Chan [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 27, 2001 9:34 AM > To: [EMAIL PROTECTED] > Subject: [PHP-WIN] How can I extend PHP > > > How can I extend PHP use C / C++ ? ( In windows / Linux ) > > Could you give me more information ? > > > > -- > 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] >