Jump to content

szabesz

Members
  • Posts

    2,952
  • Joined

  • Last visited

  • Days Won

    20

Everything posted by szabesz

  1. Hi, Similar discussion with some tips and pointers:
  2. Hi, It can definitely be crafted with ProcessWire, but your requirements are a bit tough for a starter, I guess. Anyway, if you have the time and take the challenge, I would start by taking a look at this: As far as I know most of its UI features are implemented for the admin area, but it is possible to "let regular members" work in the admin, rather than implementing "custom frontend" interface for them. Lots of PW developers opted for this path already. I recommend searching the forum for more info, like: https://www.google.hu/search?as_sitesearch=processwire.com%2Ftalk&as_q=migrate#q=form+api+site:processwire.com/talk One more tip: ImageMagick. You will probably need a server with this as GD chokes on big files.
  3. Thank you for this quite useful "changelog"! It should be turned into a "custom"
  4. Guys, if you have a lot of time to spare, you can kill some by checking out this list: https://github.com/neiesc/ListOfMinimalistFrameworks
  5. 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:
  6. 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.
  7. @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:
  8. 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
  9. 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.
  10. 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
  11. 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.
  12. Minor stuff: https://processwire.com/download/ is still displaying 3.0.59 DEV
  13. 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.
  14. 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.
  15. Any chance it being a namespace issue? eg.:
  16. 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.
  17. UIkit 3 Beta Roundup https://yootheme.com/blog/2017/04/12/uikit-3-beta-roundup
  18. 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.
  19. 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]
  20. 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.
  21. "PW Logo - Part 2.ai" has a traced path version in it, although that file seems to be more of a work in progress....
  22. Hi, https://github.com/plauclair/PW-Branding
  23. Cool
  24. 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/
  25. 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.
×
×
  • Create New...