Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No app name specified in owncloud

Tags:

owncloud

I am trying to create an app which displays "Hello World". This app is explained in Owncloud developer manual. I have followed all the procedure explained in manual. But the app is not enabling. What is the problem? It shows the message "No app name specified". Please help me how to enable this app.

like image 397
user3227563 Avatar asked Feb 11 '14 11:02

user3227563


2 Answers

According to http://doc.owncloud.org/server/9.0/developer_manual/app/info.html the id field in appinfo/info.xml should be the same as the name of the app folder. If you have app in the folder 'test_app', then in 'test_app/appinfo/info.xml' you must have

<info>
  <id>test_app</id>
...
</info>
like image 173
Andrej Oskin Avatar answered Nov 16 '22 07:11

Andrej Oskin


Your probleme is the name of app in the file and the name of folder

like image 42
Vinh Avatar answered Nov 16 '22 08:11

Vinh