Thanks. I gave that a try, but nothing has changed.
Here's my test.php (at http://video.humanes...ress/test.php):
<?php
if (!defined('TUBEPRESS_CONTENT_DIRECTORY')) {
define('TUBEPRESS_CONTENT_DIRECTORY', 'C:\\sites\\video.humanesociety.org\\www\\tubepress\\tubepress-content\\');
}
include "C:\\sites\\video.humanesociety.org\\www\\tubepress\\tubepress_pro_4_1_8\\src\\TubePressPro.php";
?>
<html>
<head>
<title>TubePress Pro</title>
<?php print TubePressPro::getCSS(); ?>
</head>
<body>
<?php print TubePressPro::getHTMLForShortcode('mode="tag" tagValue="pittsburgh steelers" resultsPerPage="3" googleApiKey="xxxxx" debugging_enabled="true" '); ?>
<?php print TubePressPro::getJs(true); ?>
</body>
</html>
Here's my settings.php (at http://video.humanes.../settings.php):
<?php
return array(
'user' => array(
'urls' => array(
'base' => 'http://video.humanesociety.org/tubepress/tubepress_pro_4_1_8/',
'userContent' => 'http://video.humanesociety.org/tubepress/tubepress-content/',
'ajax' => 'http://video.humanesociety.org/tubepress/ajax.php',
),
),
'system' => array(
'cache' => array(
//'killerKey' => 'tubepress_clear_system_cache',
//'directory' => '/some/directory',
//'enabled' => true,
//'serializationEncoding' => 'base64'
),
'add-ons' => array(
//'blacklist' => array(),
),
'classloader' => array(
//'enabled' => true,
)
)
);
And here's the new ajax.php (http://video.humanes...epress/ajax.php):
<?php
/** Tell TubePress where to find the content directory. */
define('TUBEPRESS_CONTENT_DIRECTORY', __DIR__ . '/tubepress-content');
/**
* Hand off control to TubePress. You can use a symlink if you don't want to
* hardcode the path to a specific TubePress version, but this will get you started.
*/
include __DIR__ . '/tubepress_pro_4_1_8/web/php/ajaxEndpoint.php';