Re: [PHP-INST] Re: How do I compiling MySQL Clients on Windows

2003-07-05 Thread Marco Tabini
gt; > > LoadModule php5_module C:\php\sapi\php4apache2.dll > > > > # > > # To use PHP scripts > > # > > AddType application/x-httpd-php .php > > AddType application/x-httpd-php-source .phps > > > > 2. copy c:\php\php4ts.dll to c:\winnt\system32 > > > >

Re: [PHP-INST] MySql Installation with Linux

2003-06-30 Thread Marco Tabini
I don't know > which version to use or if mysql is already embedded in the php build. > Another option - how do I build php with mysql enabled? I tried running the > Red Hat php-mysql RPM but it told me that libmysqlclient.so.10 was needed by > the package. > > Thanks, > &

Re: [PHP-INST] Problem With Form Data

2002-11-14 Thread Marco Tabini
It's probably a register_globals - related issue. Try using the superglobals ($_POST, $_GET, $_REQUEST) instead and it should work on both. Marco -- php|architect - The magazine for PHP Professionals The first monthly worldwide magazine dedicated to PHP programmers Come visit us at

Re: [PHP-INST] Strange problem on compilation and install ofPHP4.2.3

2002-11-09 Thread Marco Tabini
Take a look at register_globals in the PHP settings section of the PHP manual--it is now set to off by default (used to be On) Marco -- php|architect - The magazine for PHP Professionals The first monthly worldwide magazine dedicated to PHP programmers Check us out on the web at ht

Re: [PHP-INST] Install Problem

2002-11-08 Thread Marco Tabini
Yep...take a look at register_globals in the documentation--it's been switched from on to off by default. That's what's causing your variables not to show up. Marco -- php|architect - The magazine for PHP Professionals The first monthly worldwide magazine dedicated to PHP programmer

Re: [PHP-INST] Problem

2002-11-08 Thread Marco Tabini
take a look at register_globals in the manual Marco - php|architect -- The Monthly Magazine For PHP Professionals Come visit us on the web at http://www.phparch.com! On Fri, 2002-11-08 at 11:45, Benedikt Bobinger wrote: > Hi there! > > I have a little problem with my PHP. > I'm us

Re: [PHP-INST] php+apache problem

2002-10-14 Thread Marco Tabini
This sounds like an Apache issue. Have you compiled PHP as a module? If so, did you add the appropriate entries in your httpd.conf? You can find the instructions in the PHP manual. On Mon, 2002-10-14 at 16:07, Marcus Van Wyk wrote: > Hi there > Hoping to find some help here > > I have a Linux 8

Re: [PHP-INST] New Question

2002-10-13 Thread Marco Tabini
I don't know of the book, but you should take a look at the php.ini configuration section of the PHP manual to see how to turn on global registration. I should also point out that that approach is discouraged with newer versions of PHP because of the potential security issues connected to it. You

RE: [PHP-INST] Install errors on XP/Apache2.0.43/PHP4.2.3

2002-10-10 Thread Marco Tabini
e 2 stable. > > > > Why bother working on a platform that is far from stable just because > > you want the latest and greatest? Even if its not a production > > environment you are doing your work on I couldn't be bothered working > > on something that has

Re: [PHP-INST] Install errors on XP/Apache2.0.43/PHP4.2.3

2002-10-10 Thread Marco Tabini
Have you looked at the Apache error log? That usually contains more useful information. Marco On Thu, 2002-10-10 at 11:41, Jason Wood wrote: > This is driving me nuts. I downloaded the binarys and set them up in > c:/php/ > > I've added the LoadModule php4_module c:\php\sapi\php4apache2.dll l

Re: [PHP-INST] (továbbított)apacheforgetstosendbackphp

2002-10-10 Thread Marco Tabini
Check the error log in Apache... does it say anything? Did you configure Apache to interpret .phtml files as PHP files? It's possible you don't see anything because your browser interprets whatever is between as an HTML tag but can't make ends of it. If you view the source code of the HTML page