I need the full URL that came from.
What's with sysadmins these days?
Takes under a minute for you to grep all instances vs me going back through all pages and tons of http headers.
example:
grep --include="*.php" -nRHI "styles/cp.css" /home/user/public_html (you may include css and js files as well)
real world example on my server, looking for header.inc.php in all php files within public_html directory:
# grep --include="*.php" -nRHI "header.inc.php" /home/bighorn/public_html
/home/bighorn/public_html/profile.php:35:include(CLIENTINC_DIR.'header.inc.php');
/home/bighorn/public_html/account.php:120:include(CLIENTINC_DIR.'header.inc.php');
/home/bighorn/public_html/kb/faq.php:33:require_once(CLIENTINC_DIR.'header.inc.php');
/home/bighorn/public_html/kb/index.php:19:require(CLIENTINC_DIR.'header.inc.php');
/home/bighorn/public_html/index.php:59:require(CLIENTINC_DIR.'header.inc.php');
/home/bighorn/public_html/view.php:47:require CLIENTINC_DIR.'header.inc.php';
/home/bighorn/public_html/pwreset.php:82:require CLIENTINC_DIR.'header.inc.php';
/home/bighorn/public_html/tickets.php:125:include(CLIENTINC_DIR.'header.inc.php');
/home/bighorn/public_html/open.php:69:require(CLIENTINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/emailtest.php:54:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/departments.php:137:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/system.php:22:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/staff.php:122:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/pages.php:135:require_once(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/banlist.php:142:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/filters.php:123:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/emails.php:95:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/profile.php:48:require_once(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/upgrade.php:86:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/kb.php:30:require_once(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/dashboard.php:20:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/categories.php:126:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/orgs.php:110:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/directory.php:21:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/settings.php:56:require_once(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/groups.php:119:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/faq.php:117:require_once(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/slas.php:124:require(STAFFINC_DIR.'header.inc.php');
/home/bighorn/public_html/scp/forms.php:153:require(STAFFINC_DIR.'header.inc.php');
From login to nicely colored results in under 20 seconds. And I'm lousy typist.
