Jump to content

szabesz

Members
  • Posts

    2,920
  • Joined

  • Last visited

  • Days Won

    17

Everything posted by szabesz

  1. Guys, if you have a lot of time to spare, you can kill some by checking out this list: https://github.com/neiesc/ListOfMinimalistFrameworks
  2. Welcome to ProcessWire! Since you are interested in the issue of a "missing" Forum module for ProcessWire, you might want to review a few topics already in our forum:
  3. Actually, Ryan has not yet released an updated "official" and installable version of this profile, so currently the easiest one to install should be the one I linked to.
  4. @Neveroff Hi, I've not yet tried to install it but you might want to give a try to this one instead: https://github.com/dadish/pw-skyscrapers-profile Introduced in this video:
  5. szabesz

    Mad Archive Deleting

    You might want to do some recursive CLI "magic" in order to get rid of them. 10 hours? I would never wait for it, it is better to do it at a lower level
  6. I recommend this one, have you already seen it? • http://blog.mauriziobonani.com/processwire-basic-website-workflow-part-1/ • http://blog.mauriziobonani.com/processwire-basic-website-workflow-part-2/ • http://blog.mauriziobonani.com/processwire-basic-website-workflow-part-3/ • http://blog.mauriziobonani.com/processwire-basic-website-workflow-part-4/ It is without any particular css examples, but you know yours. Also, it uses Twig but for practicing purposes it should not matter too much.
  7. SomeC is generally right, CKEditor is a beast you need to tame if you want to use it as a full fledged HMTL editor, I guess this is because it is not designed to be such a thing. A few resources though: https://github.com/ryancramerdesign/ProcessWire/blob/dev/wire/modules/Inputfield/InputfieldCKEditor/README.md
  8. https://processwire.com/blog/posts/processwire-3.0-alpha-2-and-2.6.22-rc1/#compiled-template-files "It can be disabled globally by setting $config->templateCompile = false; in your /site/config.php file. If you do disable it, you'll likely want to add a namespace ProcessWire; to the top of your PHP template files where necessary." In practice, the simplest solution is to always add <?php namespace ProcessWire; if none other is required.
  9. Minor stuff: https://processwire.com/download/ is still displaying 3.0.59 DEV
  10. I guess the demo is not updated, but I recently learnt that this profile is more of an alfa stage then a beta one, since Markup Regions are not yet finalized, and UIkit 3 keeps evolving/changing rapidly too.
  11. You can find out more about namespaces in ProcessWire 3.x here: https://processwire.com/blog/posts/processwire-3.0.14-updates-file-compiler-fields-and-more/ If you cannot figure it out, please provide some more details of your template setup.
  12. Any chance it being a namespace issue? eg.:
  13. Well, you know it all depends I prefer UIkit 3 to Bootstrap 3/4 because UIkit 3 is more lightweight and more versatile regarding customizations, and for me it is easier to use.
  14. UIkit 3 Beta Roundup https://yootheme.com/blog/2017/04/12/uikit-3-beta-roundup
  15. Yeah, valid point I just did not follow the thread properly and only spotted the usage of the variable which I also used to use to tell apart my local machine from the server but recently switched to checking the path instead.
  16. Note that "there are times" when $_SERVER['HTTP_HOST'] and similar are undefined, eg. when running PW from CLI (bootstrapping), because of this, I normally use something like this: if(strstr(getcwd(),'/full/path/to/dev')) { // DEV settings } else if(strstr(getcwd(),'/full/path/to/stage')) { // STAGE settings } else { // PRODUCTION settings } [credit]
  17. Welcome back GuruMeditation! 1. I wish there exist something like that. While we are figuring out how to do it, you can show your interest by supporting the basic here (like or something...) EDIT: do not for get @teppo's Weekly Newsletter: https://weekly.pw/ which might be used to skim through all the happenings. 2. Time will tell, but your question is a valid one. UIkit keeps evolving too, so it should be updated from time to time. Things are still in beta stage.
  18. "PW Logo - Part 2.ai" has a traced path version in it, although that file seems to be more of a work in progress....
  19. Hi, https://github.com/plauclair/PW-Branding
  20. The document it points to seems to be removed. However, it is a very old post, tinymce is gone too. Are you looking for something like this? https://processwire.com/blog/posts/quality-assurance-for-images-in-rich-text-fields/
  21. Sorry @benbyf for hijacking your thread, it wasn't my intention. I do not think Auth0 should be part of your profile/module, since it is a paid service.
  22. @Sérgio I took another look at the Auth0 site (pricing) and I noticed that "User management dashboard" is not included in the free plan. Is it an issue? Or is there a "workaround" for this "limitation"? Can some other features be used instead of this "missing dashboard"? I'm asking this because otherwise the free plan would completely cover my client's needs.
  23. I like the idea I would be happy to contribute by providing the bases of a documentation, if you think it works that way.
  24. You mean Auth0? How about you join forces and release a module? I would love to help by testing
×
×
  • Create New...