Re: [PHP-INSTALL] W.I.M.P. Server

2007-08-15 Thread Janet Valade
system path and copy the dll files into it. It can also work to copy the dll files into a directory that is already in your system path, such as windows\system32, but this can lead to problems with future upgrades. Janet -- Jason Greene -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] Trying to set up a test server on my localhost

2007-06-20 Thread Janet Valade
ries! This is driving me crazy! -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] Need Some tehnical Help

2007-06-11 Thread Janet Valade
ile.yahoo.com/mobileweb/onesearch?refer=1ONXIC>, not web links. -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] problems with php and MySQL

2005-04-20 Thread Janet Valade
; the server up and running and executing php files fine. Also, the I can use > mysql to manipulate the SQL database. My problem is that none of the php > mysql functions appear to be accessible from my php scripts. For example: > > > if (function_exists("mysql_connect")) > echo "yes"; > else > echo "no"; > ?> > fails every time. It's like the sql access functions don't exist. I've > copied libmysql.dll and php5ts.dll into the windows/system directory, made > various changes to php.ini etc... but nothing. > What am I doing wrong?. > Ta, > Dave > > > > -- > No virus found in this incoming message. > Checked by AVG Anti-Virus. > Version: 7.0.308 / Virus Database: 266.9.17 - Release Date: 19/04/2005 > > No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.308 / Virus Database: 266.10.1 - Release Date: 20/04/2005 -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] PHP start up cannot find the extensions

2004-12-09 Thread Janet Valade
ng the exact path that it gives me in the error message. Any ideas what is wrong? thanks, Danny -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] I need help...

2004-12-02 Thread Janet Valade
on file to set up the CGI binary: Example 6-5. PHP and Apache 2.0 as CGI ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php # For PHP 4 Action application/x-httpd-php "/php/php.exe" # For PHP 5 Action application/x-httpd-php "/php/php-cgi.exe" Janet THANKS... Vu -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] ***Call to undefined function mysql_connect()

2004-11-29 Thread Janet Valade
two things to activate support. 1. uncomment the extension line in php.ini for php_mysqli.dll. 2. PHP needs to be able to find two files: php_mysqli.dll and libmysql.dll. Janet Thanks Anurag <http://clients.rediff.com/signature/track_sig.asp> -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] mysql extension not installed ?!?

2004-11-24 Thread Janet Valade
ting, domena .SK ZADARMO * Zoner Photo Studio 7 - Spoznajte kuzlo digitalnej fotografie! http://www.zoner.cz/photo-studio * www.ZonerPress.sk <http://www.ZonerPress.sk> - pocitacova literatura, zameranie na webdesign a grafiku -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] Apache Configuration Problems

2004-11-17 Thread Janet Valade
program you should run. Just create the following program and run it: Janet Thanks again, Anthony -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] MySQL setup

2004-10-28 Thread Janet Valade
with MySQL support. You need to download and install the zip file to get some of the files you need. Janet -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] Error trying to list images in a directory

2004-10-20 Thread Janet Valade
after it on the line, not even a blank space. The second HERE must begin at the very beginning of the line, with nothing before it, not even a blank space. Janet -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] Limiting the decimal value

2004-10-19 Thread Janet Valade
Scott Hamm wrote: How do I limit the decimal value into 2 places? 0) { $Eff = ($ProdActu/$ProdProj)*100; } ?> See number_format() in the PHP manual. Janet -- Janet Valade -- janet.valade.com

Re: [PHP-INSTALL] Missing Variables

2004-10-14 Thread Janet Valade
t;] . "\n"; instead of echo "Insered text is: $var"; Hendrik -- Janet Valade -- janet.valade.com

Re: [PHP-INST] making PHP4 recognize .php3 files

2002-02-17 Thread Janet Valade
It's a setting for your web server. You tell the web server what extensions to look for. In apache, there's a line in the config file that looks like this: AddType application/x-httpd-php .php The .php at the end is the extension that Apache expects to find php in. You probably have a line like