On Fri, Sep 3, 2010 at 12:03 PM, Rich Shepard <[email protected]> wrote:
> On Fri, 3 Sep 2010, Rich Shepard wrote:
>
>>   I don't have MySQL installed and php is apparently configured to require
>> it. It cannot find the mysql libraries. Guess I need to rebuild php to fit
>> my system.
>
>   Something is screwy here. When I look at the build file for php I see that
> it's configured with pdo-sqlite enabled (which is what I wanted to use
> phpinfo.php to determine), so that's OK.
>
>   However, I'm not able to get the CMSs I'm trying to evaluate to install. I
> tried the drupal-sqlite patch, but nothing happens when I try to run
> install.php. The instructions for the elxis CMS (which is installed in
> /var/www/htdocs/elxis/) say to point the browser there and the installation
> page should display. I see only the directory contents.
>
>   Is this a php issue, an httpd issue, or a major user error that I'm not
> seeing? Sigh.
>

It is probably an httpd config issue.  The original html you posted, if works
then the install.php should work.  Normally you will need to enable
php processing .so library.
At least on my system in /etc/httpd
httpd]# ls
conf  conf.d  logs  modules  run

all are directories but logs, modules and run are links to other locations.
modules should have something like libphp5.so along with a bunch of
mod_*.so files
Also for me when I installed php I got a config file /etc/httpd/conf.d/php.conf
Below is the relevent portions without the comments.
-------------------
<IfModule prefork.c>
  LoadModule php5_module modules/libphp5.so
</IfModule>
<IfModule worker.c>
  LoadModule php5_module modules/libphp5-zts.so
</IfModule>

AddHandler php5-script .php
AddType text/html .php

DirectoryIndex index.php
_______________________________________________
PLUG mailing list
[email protected]
http://lists.pdxlinux.org/mailman/listinfo/plug

Reply via email to