On a fresh Drupal install by installing and activating Asset through Drush, I get folloqing 404 errors when trying to add an asset in an article

Not Found
The requested URL /admin/assets/add/asset_video/ was not found on this server.

Caches were purged.
And Menu was rebuild with the help of the Devel module

Any help is welcome :)

Regards

Comments

agalitsyn’s picture

Default url mask is admin/content/assets/add/ASSET-TYPE
Ex. admin/content/assets/add/video

Here is full list of available asset types to add - admin/content/assets/add

And did you enable submodules for asset types, such as asset_video, asset_image, etc?
Check full list using drush pml | grep asset

agalitsyn’s picture

Status: Active » Needs review
agalitsyn’s picture

Status: Needs review » Closed (fixed)
pdeclarens’s picture

Version: 7.x-1.0-beta2 » 7.x-1.0-beta4

I experience same problem, all submodules are enabled.

This appends for all types of asset
and
Additionally, a 500 Internal Server Error error was encountered while trying to use an ErrorDocument to handle the request.

Furthermore the widget does not appear.

I am using a 1and1 mutualized hosting with memory_limit 90Mb... is it enough?

agalitsyn’s picture

Status: Closed (fixed) » Needs review

Memory limit is enough.

I guess you have some incorrect web server/host/htaccess settings.
500 code - server error. Ensure that you have correct routing items in your database
SELECT * FROM `menu_router` WHERE `path` LIKE '%admin/content/assets/add%'

Check recommendations here http://drupal.org/node/1950012#comment-7215794

Furthermore the widget does not appear.

Widget supported seven and rubik theme. Widget is not intended to work in front theme.
Try to use admin theme for create content, see screenshot here http://drupal.org/node/1913778

Thanks!