Following this official guide
<a href="http://doc.prestashop.com/display/PS15/Creating+a+PrestaShop+module">Guide</a>
create display.php and add 'module_link' => $this->context->link->getModuleLink('nmo', 'display') this in my module code.But when trying to open link http://mydomain.com/ru/module/nmo/display it's 404 also tryed mydomain.com/modules/nmo/display.php (505) and mydomain.com/ru/index.php?module=nmo&controller=display (505)
Error from log: Fatal error: Class 'display' not found in /www/mydomain.com/classes/controller/Controller.php on line 135
Also tried solutions from this topic
http://www.prestashop.com/forums/topic/290064-solved-link-not-working-creating-a-prestashop-15-module/
Generally this:
Any ideas?