We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello, I have a strange issue with paths: given a source url as uploads/users/img102.jpg
uploads/users/img102.jpg
This doesn't work:
'src_dir' => public_path('uploads'), 'crops_dir' => public_path('thumbs'), 'path' => 'uploads/(.*)$', 'url_prefix' => '/thumbs',
The url is generated correctly (i.e. /thumbs/users/img102-150x150.jpg?token=9cbe7f5370cec71a5db47180a92ab0eb ) but no thumbnail is created
/thumbs/users/img102-150x150.jpg?token=9cbe7f5370cec71a5db47180a92ab0eb
This works:
'src_dir' => public_path('uploads'), 'crops_dir' => public_path('uploads'), 'path' => 'uploads/(.*)$',
This works too:
'src_dir' => public_path('uploads'), 'crops_dir' => public_path('uploads/thumbs'), 'path' => 'uploads/(?:thumbs/)?(.*)$', 'url_prefix' => '/uploads/thumbs',
Any clue of what's going on? Thank you, this package saves me lot of work :-)
The text was updated successfully, but these errors were encountered:
no clue till date? any help here would be useful...
Sorry, something went wrong.
No branches or pull requests
Hello,
I have a strange issue with paths: given a source url as
uploads/users/img102.jpg
This doesn't work:
The url is generated correctly (i.e.
/thumbs/users/img102-150x150.jpg?token=9cbe7f5370cec71a5db47180a92ab0eb
) but no thumbnail is createdThis works:
This works too:
Any clue of what's going on? Thank you, this package saves me lot of work :-)
The text was updated successfully, but these errors were encountered: