Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Just installed, can’t login, error with plugabble.php and bb-config.php


chrishajer
Participant

@chrishajer

> My host says that getmypid is working.

> I built a php info file to check what modules

> were installed, and getmypid wasn’t there.

Well, one thing does not jive with the other. Either it’s enabled or it’s not. Do you have a choice between PHP4 and PHP5? Maybe they’re checking one version and you’re using another. If the web server uses PHP4 by default, but PHP5 is available, you can force PHP5 by adding this to the top of your .htaccess file:

AddType x-mapp-php5 .php

To check which version of PHP your pages are being served with, and to see if getmypid is disabled, save this into a file called info.php (or anything.php really):

<?php
phpinfo();
?>

 

Then access that at your host http://www.example.com/info.php, and see what it shows.

Skip to toolbar