Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Installing SilverStripe /

Getting SilverStripe up and running on your computer and on your web server.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Error at line 469 of /framework/model/DataList.php


Go to End


1372 Views

Avatar
Legin76

Community Member, 11 Posts

20 August 2013 at 3:49am

I'm installing my first silverstripe site. I've installed Uploadify, Kickassets and tried to install DataObjectManager before I realised that it wasn't compatible with 3.0.5.

I have an issue when I try to go to Browse Files in the admin, I get the following error message Error at line 469 of /home/sitename/public_html/framework/model/DataList.php

Line 469 is "throw new InvalidArgumentException(sprintf('Filter class "%s" does not exist', $className));"

private function applyFilterContext($field, $filter, $value) {
$t = singleton($this->dataClass())->dbObject($field);
$className = sprintf('%sFilter', $filter);
if(!class_exists($className)) {
throw new InvalidArgumentException(sprintf('Filter class "%s" does not exist', $className));
}
$t = new $className($field, $value);
$t->apply($this->dataQuery());
}