-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
problem with move_raw option #118
Comments
Could it be that you have name mismatch? Or other way around. |
My bad, I've made a mistake pasting the code (corrected now). Anyway the names are fine, as far as I can tell. I even tried to change and reorder them (hence the mismatch in the code samples I pasted -- each from a run with different asset collection names). |
I you could paste:
|
Ok, I had to redact it a bit (company policy), but it've tried to keep it relevant. First, config:
And the stacktrace:
BTW. are other types of assets supported, besides collections? Like a single file asset? |
It's look like it crash when try to Hard to say where lies the problem. If you could write a test, that reproduce this error and create a pull request. |
I have been having this same issue for months. Like countless-integers has said, the assets get moved regardless, so the temporary workaround is to just comment image/font assets: 'default' => array(
'assets' => array(
//'@font_awesome_fonts',
'@font_awesome_css',
'@jquery',
//'@bootstrap_fonts',
'@bootstrap_css',
'@bootstrap_js',
//'@jquery_ui_img',
'@jquery_ui_css',
'@jquery_ui_js',
),
), Will try and come up with a fix in my free time... |
I want to use the
move_raw
option to copy images and fonts topublic
dir from module's asset directories, however I get a fatal fromAssetic
:My asset collection config:
Weird thing is the assets do get moved to
public/fonts
but I get the fatal after that. Tried the same thing with images. Any suggestions?I'm using the latest stable release on a zf2 2.3.1
The text was updated successfully, but these errors were encountered: