Re: [PHP-INSTALL] Enabling pspell in PHP on Mac OS X 10.6

2011-11-19 Thread Paul Reinheimer
, including pspell if the configure worked properly. Also double check that the configure line it shows at the top of the page shows your configure line. If not the PHP MAMP is running isn't the one you built. paul -- Paul Reinheimer

Re: [PHP-INSTALL] junk in my forms output

2011-10-20 Thread Paul Reinheimer
Hi Hanson, > {\rtf1\ansi\ansicpg1252\deff0\deflang1033{\fonttbl{\f0\fswiss\fcharset0 > Arial;}} {\*\generator Msftedit 5.41.21.2509;}\viewkind4\uc1\pard\f0\fs20 Hi > hanson .\par You are 33 years old.\par } � What are you editing the file with? It seems like the file isn't being saved in plain te

Re: [PHP-INSTALL] Question

2011-07-21 Thread Paul Reinheimer
Hi Eric, Two basic questions, but as I'm the first to reply I'll give it a shot. Is there anything in the php error log? Also, could you ensure display startup errors is on? Paul -- Paul Reinheimer Zend Certified Engineer

Re: [PHP-INSTALL] XDebug hinders Apache

2010-02-15 Thread Paul Reinheimer
> After a restart it's impossible to reach the local server via Browser. What does it say in the apache error log? paul -- Paul Reinheimer Zend Certified Engineer

Re: [PHP-INSTALL] segmentation fault with --disable-debug

2009-02-25 Thread Paul Reinheimer
Hi Jonathan, Before compiling PHP at the command line run export CFLAGS=-O1, then use your ./configure line. You may wish to make clean before this. paul

Re: [PHP-INSTALL] segmentation fault with --disable-debug

2009-02-25 Thread Paul Reinheimer
Good Morning, One of the side effects of running --enable-debug is that it exports a few CFLAGS, including -O1 or -O0 or the like. Do you want to try setting that flag manually, then rebuilding PHP? See if the same errors occur. paul

Re: [PHP-INSTALL] php.ini not read?

2009-02-11 Thread Paul Reinheimer
If you're on a box with sufficient dev tools, strace can help. strace php -v Will yeild a lot of output, including: open("/usr/local/bin/php-cli.ini", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/local/lib/php-cli.ini", O_RDONLY) = -1 ENOENT (No such file or directory) open("/usr/

Re: [PHP-INSTALL] php.ini not read?

2009-02-11 Thread Paul Reinheimer
Hi Brian, this line configuration file path /apps/local/php5/lib" Indicates that it is looking for a php.ini in /apps/local/php5/lib/ but the next line indicates that it didn't find one. Try doing a search on your machine for php.ini, you will likely find ones like these /usr/local/src/php-5.2.5/

Re: [PHP-INSTALL] error when running PHP 5 CLI on shared Linux Godaddy account

2009-02-11 Thread Paul Reinheimer
ension=/usr/local/zo/4_3/ZendOptimizer.so You're running PHP 5, but pased on the path, I might presume that Zend Optimizer was built for an earlier version of PHP. Try disabling that extension, or looking for a more recent version on disk (/usr/local/zo/5_3/ZendOptimizer.so ?) paul -- Paul Reinheimer

Re: [PHP-INSTALL] installation with IIS

2008-06-21 Thread Paul Reinheimer
implementaiton under IIS, follow the steps and see if there's something that wasn't done. I think I used this same tutorial to get things set up on my Windows box. http://learn.iis.net/page.aspx/272/installing-php-on-windows-vista-with-fastcgi/ paul -- Paul Reinheimer

Re: [PHP-INSTALL] Can Apache forward all requests to PHP?

2006-11-16 Thread Paul Reinheimer
it off to a PHP script. Right now I've accomplished this by sending 404 Not Found errors to a php page. But this isn't ideal, because they show up as errors in the server log. Does anybody know how to do this? It must be possible because PHP's own site seems to be doing it. Thank y

Re: [PHP-INSTALL] PHP Snippet on a web page

2006-03-13 Thread Paul Reinheimer
Two problems in your code: 1) for($i=0;$i<$wordnum;$i++) { $re_string=" ".$string_arr[$i]; } Should be for($i=0;$i<$wordnum;$i++) { $re_string .= " ".$string_arr[$i]; } Notice it's .= rather than =. You want to add to what you had a

Re: [PHP-INSTALL] Problem building php 5.1.2,

2006-02-27 Thread Paul Reinheimer
Thanks, Through some carefull negotiations with the RPM i've managed to upgrade to the requisite packages. ./configure was usefull along the way, it raised errors letting me know what was missing. Is the fact that ./configure didn't raise an error originally worth filling out a bug report for? Am

Re: [PHP-INSTALL] Problem building php 5.1.2,

2006-02-26 Thread Paul Reinheimer
y ./configure command: > > Configure Command > './configure' > '--with-apxs2=/usr/local/apache-2.2.0/bin/apxs' > '--prefix=/usr/local/php-5.1.2' > '--with-mysql=shared,/downloads/mysql/bin/mysql-standard-5.0.18-linux-i686' > '--with-

Re: [PHP-INSTALL] Problem building php 5.1.2,

2006-02-25 Thread Paul Reinheimer
Instead of--with-libxml-dir=/usr/local/lib/try--with-libxml-dir=/usr/local I think it is picking up the wrong xml-config script and thus the wronglibxml2 library.Do this: grep libxml2 config.logThat should give you a clue which libxml2 it is trying to use.-Rasmus Paul Reinheimer wrote:> Hi, than

Re: [PHP-INSTALL] Problem building php 5.1.2,

2006-02-25 Thread Paul Reinheimer
any non .rpm -devel packages so the install was attempted without one. paul (to put a face to a name, we met at PHP|Works, I sat across from you at the speakers dinner) On 2/25/06, Rasmus Lerdorf <[EMAIL PROTECTED]> wrote: > Paul Reinheimer wrote: > > Hi, I'm trying to compil

[PHP-INSTALL] Problem building php 5.1.2,

2006-02-25 Thread Paul Reinheimer
nable-dba=shared' '--with-db4' '--disable-eapi' '--with-xsl' '--enable-memory-limit' '--with-libxml-dir=/usr/local/lib/' make ends with collect2: ld returned 1 exit status make: *** [sapi/cli/php] Error 1 anyone got any ideas, or hints on what information I should be giving to make diagnosis easier/possible? The full output of make is available here: http://example.preinheimer.com/phpbuild.txt thanks paul -- Paul Reinheimer