Don't use auto append.
Simply paste the code which looks like this from your Site Setup Instructions:
PHP Code:
<?php
ini_set ("include_path", ini_get ("include_path") . ':../:../../:../../../:../../../../:../../../../../');
include ('lvXXX.php');
echo DisplayLinks(3,'',' - ','','');
?>
into a file "linkVaultFooter.php" or similar.
I hope you already have a global footer include file which is included on every page you want links to be placed on.
If you do have one, simply add the following code to it.
If you do not have one, paste the same code into each and every file you want links to appear on.
PHP Code:
include 'linkVaultFooter.php';
If you're dreading the idea of having to copy and paste a tiny bit of code into thousands of files, I'm sure we can find a better way.
Each page on your site appears to be based on the same template.
Are you manually creating each page for each state etc. yourself? (if this is the case, your site is not organized very well..)
If you are not manually creating each page, how are you doing it?
If you need to edit each file to add the code, we can use a tool which will do regular expression find and replace on every file within a folder and its' subfolders to do the job quickly.