We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

More Uploaded Photos [Answered] | Forum

Topic location: Forum home » Support » General Questions
Hans
Hans Jul 4 '14
I have seen that the Photo Plugin has a limit of "9999" max. Pics per User.

How can I raise this up?

Thanks upfront...
The Forum post is edited by ross Jul 10 '14
ross Team
ross Jul 6 '14
ow_plugins/photo/controllers/admin.php


// user quota Field        $userQuotaField = new TextField('userQuota');        $userQuotaField->setRequired(true);        $uqValidator = new IntValidator(0, 10000);        $userQuotaField->addValidator($uqValidator);        $this->addElement($userQuotaField->setLabel($language->text('photo', 'user_quota')));


change value in this line: 

$uqValidator = new IntValidator(0, INCREASE THIS NUMBER - 10000);


Hans
Hans Jul 10 '14
Thanks man that works!
ross Team
ross Jul 10 '14
My pleasure