Hello all,
I'm moving a large PHP/Pgsql site and I've come up against a strange issue:
The site has many content pages which look something like this:
<?php
$title = "pagetitle";
$masthead = "titleimage";
$maincontent[0][0] = "many lines of HTML content";
?>
There are no includes or functions, just the setting of variables.
These pages show up fine on the server that I'm moving them from, but they display blank on the new server.
I found a page called content.php, which has a function to take all these variables and echo them all out together, but I can't figure out how it's being called or included.
There is no default append/prepend file or append directive in a .htaccess file. Is there some other way that code can be included by default?
Here are the loaded Apache modules on the server I'm moving it from:
mod_perl, mod_interchange, mod_cgi_debug, mod_php4, mod_ssl, mod_setenvif, mod_so, mod_unique_id, mod_usertrack, mod_headers, mod_expires, mod_cern_meta, mod_proxy, mod_digest, mod_auth_db, mod_auth_anon, mod_auth, mod_access, mod_rewrite, mod_alias, mod_userdir, mod_speling, mod_actions, mod_imap, mod_asis, mod_cgi, mod_dir, mod_autoindex, mod_include, mod_info, mod_status, mod_negotiation, mod_mime, mod_mime_magic, mod_log_config, mod_env, mod_vhost_alias, http_core
Thanks,
Grant