no "insert asset" link below textbox
ansorg - November 29, 2008 - 21:50
| Project: | Asset |
| Version: | 6.x-1.x-dev |
| Component: | Miscellaneous |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
hi
I just installed 6.x-1.x-dev 2008-Nov-21
Following the documentation I enabled the Asset module and changed the inout filter.
When editing an article there is no "insert asset" link below the textarea?
I also tried and enabled the "Asset Wizard" module but then I get
warning: Missing argument 1 for asset_wizard_menu() in /home/jens/drupal-6.6/sites/all/modules/asset/asset_wizard.module on line 24.and still no "insert asset"
How to check what went wrong?
thanks

#1
currently this module is really in alpha stage for drupal 6.6 ...
I can't get it to work for anything useful, I get errors all over the place (cck, import, etc).
#2
neither do I.. :(
#3
Well it is not even alpha, it is in dev. I will release a new version soon.
#4
As a quick fix you could try this.
UPDATE system SET weight = -1 WHERE name LIKE 'asset%' AND type = 'module';
For some reasons this module should be loaded *before* the CCK module. This is obviously not the correct behaviour but changing the weight of the module can do the trick for now.
#5
cirotix,
as for:
UPDATE system SET weight = -1 WHERE name LIKE 'asset%' AND type = 'module';
Where do I put this code?
#6
nevermind.
#7
it's a database query....
you need to log into mysql or a phpmyadmin type tool on your host and execute
this "query"... ie - paste the command and push enter, make sure the line ends with a semi-colon: ;