I get the following with the dev module
warning: require_once(./sites/all/modules/views/includes/query.inc) [function.require-once]: failed to open stream: No such file or directory in /var/www/drupal2/sites/all/modules/views/views.module on line 545.
Comments
Comment #1
merlinofchaos commentedThe file referenced comes with the package. That probably indicates your untar program failed to preserve the directories or something along those lines.
Comment #2
merlinofchaos commentedOn second thought, I see you marked 3.x-dev -- if that's really true, then some module is doing a views_include('query') -- it's not Views, as that file doesn't exist in 3.x and there are no references to it (I checked).
Try doing a grep of your modules directory:
grep -R "('query')" *Comment #3
dawehnerAlternative you could put dsm(views_trace()); in views_include function. Then you see which function calls views_include('query');
One example could be be migrate/tw
Comment #4
danbuntu commentedgrep gives me:
boost/boost.module: views_include('query');
Comment #5
dawehnerSee http://drupal.org/node/696216