Jump to content

LostKobrakai

PW-Moderators
  • Posts

    4,956
  • Joined

  • Last visited

  • Days Won

    100

Everything posted by LostKobrakai

  1. If you've unpublished the batcher's admin page, so it can probably not be cleanly uninstalled, so the page remains. On reinstall it's trying to recreate the still existing admin site and that fails. Just make sure you remove this page (Admin>Setup>Batcher) before reinstalling the module.
  2. RT @ubernauten: Let's Encrypt rollt an - auch bei uns: https://t.co/zcXirKH9tZ

  3. There's currently no other way to have multilanguage options in formbuilder other than creating pages.
  4. I just rolled it out on my photography portfolio, as the hoster is super active in tech. stuff and has already automated most of the hard work of setup. Went nearly to well. 3 ssh commands and some "I Agree" statements and I'd my site encrypted in about 10 minutes.
  5. To prevent double content penalty in search engines just supply a canonical link in the head of the page, if the current page is not available in english.
  6. Or simply unhide the Tree Page under Admin > Pages > Tree.
  7. I'll wait some time and see if there are any issues, especially with the tool they provide. If I need a new cert for any private site the next time I'll certainly give it a go.
  8. It depends: $pages->count() does work with a selector supplied, whereas $pages->find("some=Pages")->count() doesn't use any parameters, because pages are already loaded to a PageArray.
  9. The module could just check if Inputfield Ace Extended is installed and use it if so. That would prevent the big filesize like it's the case for hanna code and leave the code editor optional.
  10. The password is never stored as plaintext, the latest hook you can get it Password::setPass, which does the hashing as soon as a password is set as field value.
  11. Try the custom format and put {date_from} into the field. I think this will give you another format than a raw timestamp.
  12. Drag and drop can be quite easy, if one doesn't use jquery UI: http://bevacqua.github.io/dragula/
  13. Are you sure that you ftp program does show the full path? What's the output of $config->paths->root? I can hardly imagine a server to have the full filesystem in the webroot.
  14. Would it be possible for you to check the db if the data is actually stored? The table would be field_YourCacheFieldName. Additionally, could you replace the submitted string with a static one, to be sure that's not the root of the issue.
  15. Deployment over ftp just doesn't make sense as you cannot access the db via ftp. Also ftp can upload files, but not execute them, so it's really a lot less useful in that context.
  16. @Tom. That's actually the same in outcome, just a magnitute worse from the performance standpoint. $pages->count() does let mysql do the counting, whereas your code does first load all found pages to memory and then count them with php.
  17. LostKobrakai

    Macaw

    The thing is, such tools are great for encapulated frontend dev work, but i doubt anyone here is living in this kind of a bubble. We all work on the backend as well, which this tools cannot cater to. I still hate it that I sometimes need to translate UI I created in sketch to actual code, but in the end I wouldn't be much faster by using the pregenerated code as well. Often I even sketch ideas out in a codepen/jsbin or such and then import the code into my project.
  18. Don't worry about the icons, have you seen some of those many wordpress plugins?
  19. I'm currently working on a bigger project with migration files, like posted here: https://processwire.com/talk/topic/11382-migrating-modules/?p=106238. Currently there's no migration automation, but it keeps changes to the db manageable by source control. I just deploy by git pull and then run the new migrations manually.
  20. @justb3a Can you handle things like fresh content on the prod. server with this tool? Simple db transfers just don't cut it most of the time.
  21. Maybe this: https://github.com/ryancramerdesign/ProcessWire/issues/1532#issuecomment-160938579
  22. Just create one of those fields and most of those will be answered already by the descriptions/notes in the field editing. Essentially you don't have to worry about anything, create the field, add it to a template, save the page once or regenerate the cache by using the option in the field editing interface and add it like any other field to your selector. Now you can essentially forget it's even there.
  23. I doubt there's any official documentation, but there's actually not much more to know about. It combines the string contents of each specified field when the page is saved and stores it encoded in json in the database. The same does happen when a page is loaded to populate the runtime accessable fielddata. If you then search the field and the keyword is somewhere in the json blob, than it's somewhere in your other fields, too. Besides that it's handled just like any other field as well. If you've any further questions just ask them here.
  24. Display flex with sort-order column-reverse could also work.
×
×
  • Create New...