Here is what I am using to get server to use php5
in one of my .htaccess files:
AddType x-mapp-php5 .php
AddType x-mapp-php4 .html .htm Here is what my php.ini is set to:
upload_max_filesize = 20M;
browscap = /usr/local/lib/browscap.ini;
error_reporting = (E_ALL & ~E_NOTICE & ~E_WARNING);
url_rewriter.tags = "a=href,area=href,frame=src,form=fakeentry,fieldset=";
register_globals = off;
allow_url_fopen = on;
max_execution_time = 50000;
safe_mode = off;
file_uploads = on;
magic_quotes_gpc = on;
memory_limit = 41943040;
short_open_tag = on;
post_max_size = 26214400;
Here is some of my index.php file(edited)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link href="revised2.css" rel="stylesheet" type="text/css" />
<?php
require_once 'FlickrScrollr.inc.php';
$flickr = new
FlickrScrollr('http://..com/services/feeds/photos_public.gne?id=26072511@N00&lang=en-us&format=rss_200');
?>
<div id="api"><?php echo $flickr ?></div>
<div id="blog">
<?php
require_once '/homepages/37/d221555405/htdocs/carp/carp.php';
CarpCacheShow('http://.com/blog/feed/');
?>
</div>