-
Posts
7,479 -
Joined
-
Last visited
-
Days Won
146
Everything posted by kongondo
-
Yes I do. You'd only have to pay the difference. You'd have to send me an email to arrange that. Thanks.
-
Hi @Robin S, Just acknowledging that I've seen this. Really pressed for time currently but would like to give a comprehensive answer, so hope you can wait a bit longer? In summary though, I think I might be able to add some of the features you've suggested (though some might take a while...a long while to implement). My biggest constraint is time (cliche, I know) though,...not lack of willingness .
-
To be honest, I haven't tried this. The editor grabs what PW returns as the description. I am so ignorant when it comes to multi-lingual setups. Do files/images have multiple inputs for tags and descriptions in such cases?
-
Really? So, we cannot have pages titled "X-Ray" then? echo '<pre>'; print_r($sanitizer->testAll('x-ray')); echo '</pre>'; // results Array ( [name] => x-ray [names] => x-ray [varName] => x_ray [fieldName] => x_ray [templateName] => x-ray [pageName] => x-ray [pageNameTranslate] => x-ray [filename] => x-ray [path] => x-ray [pagePathName] => x-ray [email] => [emailHeader] => x-ray [text] => x-ray [textarea] => x-ray [url] => x-ray [selectorField] => x_ray [selectorValue] => x-ray [entities] => x-ray [entities1] => x-ray [unentities] => x-ray [entitiesMarkdown] => x-ray [purify] => x-ray [string] => x-ray [date] => [int] => 0 [intUnsigned] => 0 [intSigned] => 0 [float] => 0 [array] => Array ( [0] => x-ray ) [intArray] => Array ( [0] => 0 ) [bool] => 1 ) http://processwire.com/api/variables/sanitizer/
-
Hi @Robin S, Thanks for your interest in VPS and MM. My plan is for these to be ready within 3 weeks. However, some users of MM have reported successfully using it in PW 3 with no hiccups. @see below please No, VPS does not have an upload feature since it functions as a 'normal' page field...i.e. it does not have a central repository of media but includes images you've uploaded yourself to any number of named image fields (named in the settings of VPS Custom fields: Yes, VPS would be better in that case, although the other benefits of MM probably outweigh this one advantage No, you can't, currently #2 Differences between VPS and MM Media Manager is a complete digital asset management for 4 types of media: audio, document, image and video. Media are stored and managed in one central repository. Uploading, editing and publication of media are tightly controlled by various permissions. Media can be uploaded to a waiting area before uploading to your Media Library. Media can be previewed (e.g. listen to a MP3 file), edited, tagged, filtered, etc with great ease. Media can be inserted in a page in two ways: in a field or in a CKEditor RTE. Media can be infinitely reused across your site. Media Manager has its own API for frontend use. Visual Page Selector is mainly targeted to those who 'consciously' use the one page per image approach. It is an Inputfield for Pagefields. Its purpose is to remove the guess work in site editors' minds when they have to include 'pages' in a 'page' in situations where those 'pages' are included on the 'page' for the sole purpose of accessing and reusing images found in those 'pages' (wow, a mouthful, sorry!). VPS does this by offering a visual selector where the editors can see the images contained in those 'pages'. VPS does not have its own API...it is a Pagefield, hence is accessed like any other Pagefield in ProcessWire. Hence, the two modules are quite different from each other actually. In MM, your editors don't know and don't care that they are actually dealing with pages. All they see are media, easily accessible via a single Media Library. VPS is a visual interface to a normal Pagefield. This means you will need to set it up like any other Pagefield, with one or two extra details you have to tell it, for instance, the name of the 'image field(s) in the 'pages'. If, on the other hand, you would like a streamlined workflow for your media management, from uploads to inclusion in pages, managing tens or hundreds or thousands of media, all in a single easy to use interface, then MM is for you. Hope this answers your question. Sorry, I have just seen that I never availed the READMEs for this modules as per your request. I can still send these to you if you wish. Please let me know if you require any more info. Cheers.
-
@vanderbreye, Many thanks for using Media Manager. Apologies, documentation is seriously lagging behind. I am trying my best to complete it. To select a media for editing and preview, please click on its title. The module will remember the last clicked media and if it was being previewed or edited. The media currently on preview will be highlighted with a greenish/yellow box as seen in your image above and its title will be white text against a black background. For other manipulations such as inserting or applying bulk actions (e.g. publish, lock, etc), please click on the thumbnail itself. Hope this answers your question. Cheers.
-
Hi. It does not scan your assets/files folder. Instead... It scans all media uploaded to a particular directory (see below) The media could be 'loose' or zipped, in nested folders, etc.. Thorough checks (validation) are conducted: allowed extensions, mime_types, minimum and maximum file sizes, and for images minimum/maximum width and height. Any media failing any validation will be deleted To use the function, FTP or upload media to the directory: /site/assets/MediaManager/uploads/ That folder should be created automatically when you access Media Manager if folder permissions allow. Otherwise, you'd have to create one Each media will be correctly identified and added to the correct media type (audio, document, image, video) in your Media Library Once added to the Library, the files uploaded to ..../uploads/ will be deleted Hope this answers your question. Please also have a look at the 'help' tab under the menu 'Upload' in Media Manager. Thanks.
-
Hi. Just to let you know that I will be including this feature in the next version of Media Manager. At the moment I don't have an ETA due to a couple of competing demands from my other commercial modules. I am hoping for a release in about 3 weeks's time. I hope that is not too late for your project? Thanks.
-
Selecting the Home Page with Page Autocomplete
kongondo replied to Jason Huck's topic in General Support
Yeah...I have always had this issue. Stumbled on it ages ago when I was developing Menu Builder....but forgot to raise an issue- 6 replies
-
- inputfieldpage
- page autocomplete
-
(and 1 more)
Tagged with:
-
System fields and templates cannot be deleted without first removing the 'system flag'. Example code: $t = $this->wire('templates')->get('your-template'); if ($t->id) { // two step process to delete system template if ($t->flags == 8) { $t->flags = Template::flagSystemOverride; $t->flags = 0; $this->wire('templates')->delete($t); // delete the associated fieldgroups $this->wire('fieldgroups')->delete($t->fieldgroup); } }
-
Oops, my bad. Currently no. I decided to disable that. I could make the feature configurable though or just leave it on. Thoughts? Let me have a think...
-
@spacemonkey95 Definitely; Please have a look at this post and the link to the demo video. Glad you like the module
-
@spacemonkey95 Apologies, I should have been clearer that the gif in my post is for a dev version of Media Manager (i.e. Settings will move to its own menu). However, even with the current version, the one you downloaded (version: 006), you should still be able to filter by tags. I suspect that you did not enable tags for all your media templates. Your 'author user' not being able to access the media library via the CKEditor icon seems like a permission issue. For both issues, please follow the instructions provided in the 'Getting Started' documentation first and let me know if you still have issues. Thanks.
-
@Nukro. I see. Then it is a ProcessWire issue. I have confirmed this with an image field separate from Media Manager.
-
@Nukro...Nice. Glad you got them sorted. Any pending issues?
-
Yes, you need at least two selects: a trigger and its dependent select. You can select from fields, but not directly from templates themselves. Rather, select from fields attached to a page. In other words, the following (and more) are currently possible: base/trigger select for #2: display templates dependent select for #1 and also base/trigger select for #3: displays pages using a template selected in #1 dependent select for #2: display fields present in (the template of) a page selected in #2
- 96 replies
-
- chained-selects
- dropdowns
-
(and 2 more)
Tagged with:
-
Hi @Nukro, Thanks for the purchase. Apologies for the 'rough start' 1. Uploading Videos: Have you specified .mp4 as an allowed extension? If not, you need to do that under Upload, then Settings Tab, scroll down to Settings: Video > Valid video file extensions What error is returned in the console (in response to the ajax request)? It could be an allowed file size issue. The error returned by the server will shed light on this 2. Editing Tags: Did you enable tags for the 4 media templates? Please have a look at the install instructions here, thanks. I have tried and have so far been unable to programmatically enable tags on install 3. Variations Hmm, that's quite a number of issues. Cropping: are you using Save as Copy? Are you developing locally or could I get some temporary access to the site to have a look around? PW version? Currently we don't officially support version 3 until there is an official release (which is soon!) Edit: How are you uploading images/media? In your screenshot above I see you are directly editing an image...
-
How to create a select field via API with templates as its options?
kongondo replied to hellomoto's topic in API & Templates
I have a commercial module here that can do something similar but not sure if it fits your needs exactly. Have a look and let me know -
Using Inputfield with Ajax POST Request
kongondo replied to Milo's topic in Module/Plugin Development
@Robin S Actually, although considered bad practice, ProcessWire will still be able to retrieve that input. But even with $input->post it still didn't work for me. I should have been clearer..- 7 replies
-
- 1
-
- inputfield
- ajax
-
(and 1 more)
Tagged with:
-
Using Inputfield with Ajax POST Request
kongondo replied to Milo's topic in Module/Plugin Development
OK.. These two threads should help: I prefer the method outlined in the second thread (hidden admin page)...first thread solution (this one) never really worked for me...- 7 replies
-
- inputfield
- ajax
-
(and 1 more)
Tagged with:
-
Using Inputfield with Ajax POST Request
kongondo replied to Milo's topic in Module/Plugin Development
Hi @Milo, Welcome to PW and the forums. Where is the post request coming from? If from the frontend it will be rejected if you try to post to an /admin/page......What exactly are you trying to do? Maybe if we get some clarity we can help you better...- 7 replies
-
- 1
-
- inputfield
- ajax
-
(and 1 more)
Tagged with:
-
Hi @spacemonkey95. Thanks for the purchase. Media Tags: The purpose of 'media tags'...is the same purpose as in ProcessWire (please note: all media can be tagged; not just images); namely, to group related media (images, documents, video or audio) to fulfil any number of functions - easier organisation, finding related things, etc. Filtering media by tags: Yes, it is already possible to filter images (or any other media) by tags both in the API and in your Media Manager Library (the Process Module). Please see the gif below. What is pending is the ability to tag multiple media in one go. Currently, one can only tag one media at a time as shown in my post above. This can be tedious, hence the need for multi-tagging capability. I have started work on this new feature but it won't be ready this week but soon. It is also not possible, currently, to sort media by tags (i.e. the display of media in the Media Library - currently sorted by title). I am also working on implementing this. Hope I've answered your questions. Filtering media by tags
-
PW 3? Namespace maybe? \Datetime..maybe..?.....just guessing...Haven't used NS b4
-
It is done automatically, once a day I think (?)...However, you can always do it manually if you can't wait
-
Media Manager version 006 (released 21/09/2016) Happy to announce the latest release of Media Manager. Changelog mmlink: A CKEditor link plugin (cloned and adapted from pwlink thanks @ryan) lets you insert links to the media in your Media Manager Library directly into the Rich Text Editor (RTE). (Instructions on how to setup are similar to those of mmimage as shown in this video. Where it says MMImage/mmimage please replace with MMLink/mmlink respectively, thanks). The plugin is in the folder MediaManager/plugins/mmlink. Please note that currently it is not possible to edit a link's attributes (e.g. rel, target and title). However, a title is auto-inserted in the link (the respective media's title. Please download latest release of the module from the link in your purchase confirmation email. Let me know if you encounter any issues, thanks. @TODO: Multi-tagging of media Documentation (thanks for being patient with me guys...)