Forums / Developer / Module not found - The requested module 'secretaresse' could not be found.
basby basby
Monday 07 July 2003 1:08:30 pm
I have a problem with my Exponential installation. I created a new Folder called "Secretaresse". In this folder I created an instance of the class CV, and an instance of the class article.
On the site's frontpage "Secretaresse" is available. When I click on it I get the message:
" Error / kernel (20) Module not found . The requested module 'secretaresse' could not be found."
Does anyone have a clue on what the cause can be?
My site runs on a virtual server.
Thanks!
Basby
Paul Forsyth
Tuesday 08 July 2003 1:01:15 am
This sounds like your link is wrong.
Can you print the link you are using to point to your folder? And can you also print the link to this folder that you use from within the admin site?
Paul
Tuesday 08 July 2003 5:49:28 am
the bad link is:<a href="/Exponential/index.php/user/secretaresse">Secretaresse</a>
Somewhere else on my page I found a link that was working: <a href="/Exponential/index.php/user/content/view/full/43">Secretaresse</a>
I use (for now) the default left_menu.pl, which is:
{let children=fetch('content',list,hash(parent_node_id,2))}
{* loop children and print name with link *} {section name=Child loop=$children} <a href={$Child:item.url_alias|ezurl}>{$Child:item.name|wash}</a><br>{/section}
{/let}
Does this info help?
Tuesday 08 July 2003 6:23:59 am
Yes!! The problem is resolved! I remembered a forum post on the same topic which did not help me. Now, with your suggestion of the wrong link I re-read the post and was able to repair the problem.
I have overridden left_menu.tpl with:
{* loop children and print name with link *} {section name=Child loop=$children}<a href={concat("/content/view/full/",$:item.node_id,"/" )|ezurl}>{$:item.name}</a><br />
{/section}
The line that has is new (replaces the wrong old line) is: <a href={concat("/content/view/full/",$:item.node_id,"/" )|ezurl}>{$:item.name}</a><br />)
Thanks again!