finally fixed with some help from Andy. apparently there's an updated
rollingarchive.js.php that is needed. if anyone needs this please
feel free to email me, Andy sent it to me and said he got it from
someone that's maintaining the theme.
i also ran into another issue with theloop getting the main wp
function file. i just replaced the first IF inside the core wp
function if with this:
// Check for CGI Mode
if ( 'cgi' == substr( php_sapi_name(), 0, 3 ) ):
require_once( preg_replace( '/wp-content.*/', '', __FILE__ ) . 'wp-
config.php' );
else:
require_once( preg_replace( '/wp-content.*/', '', $_SERVER
['SCRIPT_FILENAME'] ) . 'wp-config.php' );
endif;
if ($_GET['k2dynamic'] != 'init') {
$query = k2_parse_query($_GET);
query_posts($query);
}
i pulled this from the base K2 theloop.php. works like a charm now.