Jump to content

cb2004

Members
  • Posts

    547
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by cb2004

  1. Ryan made some updates last night which fixed it for me. Have you tried the latest dev?
  2. Awesome news. Hopefully it will account for revision A etc that you do with some modules as well. I always like to keep things current.
  3. Yes, you are 100% correct. When I downgrade to 7.4 I can change the page template, good find, I will post a bug report.
  4. I also have been having trouble changing the page template. Let me check if this is specific to PHP 8 and I will post a bug report.
  5. Yes that's what I was talking about. Not seen that module before but looks outdated now. I don't like using stale modules due to being bitten in the arse with other systems. Speaking of other systems, yes Facebook/Instagram now require an app/api route but all the other systems still implement it, you just have to take the extra step. Media embeds are one of the only things clients ask me for when migrating so felt like a good time to ask for it.
  6. @ryan I was pleasantly surprised to see updates for these when checking Processwire Upgrades module, which I would also love to see an update for removing older official repositories and adding support for Pro modules. I installed the updates on a site (well, uninstalled and reinstalled YouTube as per instructions). Great updates. It would be great if you could add social embeds to a separate module as I think YouTube embeds is perfect at what it does. Glad to hear the vaccinations are going well there. I am not eligible yet in the UK due to age and good health but my family have all had either 1 or 2 jabs which is the main thing. Stay safe everybody.
  7. I upgraded to 3.0.175 on a site where pagination broke (I did a roll back) and I can confirm it is working again.
  8. And we love hearing from you. Have a great weekend everybody.
  9. There is the User Activity module which is part of Pro Dev Tools. That's in my default installation profile.
  10. I can confirm this issue with the latest dev at time of posting (commit 6146ba4eb1fa3650a43c789a98026d7af4b5e317)
  11. Hey all. Currently getting an error message with later versions of ProcessWire, not sure when this started. When trying to edit a field: Fatal Error: Uncaught Error: Call to a member function getOptions() on null in site/modules/FieldtypeSecureFile/FieldtypeSecureFile.module:205 Guessing this crept in when the file/image fields were refactored. Uncommenting line 205 seems to work, not sure what effects it may have for now. Not sure if you are still maintaining this @Wanze but I use it on loads of sites.
  12. A great module in need of a couple of issues fixed and pull requests actioned to make it work going forward.
  13. Some great discussions going on here, I literally don't know where to start with the likes, quoting and commenting. For me, I have always understood that ProcessWire has been largely for Ryan and his clients, but the massive feature set has always worked for my needs (and many more peoples needs). Luckily for me when I have been looking to do certain things it has always popped up in the core a month or so later and the pro modules help me achieve what I need to with ease (albeit it in a different way to other systems*). The simple fact is, other systems* have file managers and other systems* now have their own take on content builders. Most clients have a previous system* which will definitely have a file manager, and clients will soon be asking for content builders. Yes I can use a module for the files and repeater matrix for content builders, but as Ryan said surely we already have a great starting foundation for these 2 features to break out into something awesome. Whilst a ProcessWire version doesn't have to be exactly the same and I have no doubt that less will be more compared to the theme monster that is WordPress, I think without them I am going to find it increasingly difficult to sway bigger clients decisions when their staff are managing the updates and have used other systems*. * I tried not to spray WordPress all over my post, but being in the UK, this is what a huge percentage of people have heard of, use, and I migrate them over from. And of course they love the end product, but I do think a file manager and content builder are the 2 things I need for my sales process going into 2021.
  14. Keep up the great work @Gadgetto. I love integrations like this.
  15. No need at all to apologise. We hope you and your family stay safe and well.
  16. Something similar happened to me once many years ago. Never got to the bottom of it, it has never happened again.
  17. @desbest I think a new version of Padloper 1 was released the other week fixing some things. Not sure if @kongondo has anything to do with that release or if its still @apeisa. Either way I am glad there was an update in the Padloper world. Never bought a license but I think I will now.
  18. https://github.com/ryancramerdesign/ImportPagesCSV for all your import needs. I have moved Drupal sites, Wordpress sites, Joomla sites. As long as you have a good export routine, this module works flawlessly for me.
  19. The hosting company 20i here in the UK have added ProcessWire as a 1-click install. This is a really good company, they recently advertised on FileZilla installs (may still do). Here is the announcement: https://mailchi.mp/20i/august-news-for-20i-resellers
  20. Thanks so much for your reply Adrian. In the end I went with a solution in ready.php: $members = wire('pages')->get(1302)->children; $subMembers = array(); foreach($members as $m) $subMembers[] = $m->id; And in config.php: $config->usersPageIDs = array_merge($config->usersPageIDs, $subMembers); Seems to be working ok, but what route would be best/fastest?
  21. I need to get an array of IDs in the config.php files to workaround something. Is there any way to do this, I have tried wire('pages') but dont seem to be having much joy.
  22. Bug report posted: https://github.com/processwire/processwire-issues/issues/1223
  23. Yes I did try that as well, I think because there is no parent its throwing it off. Will have to be a normal template I guess with email and password field and set a cookie when they login rather than check the member role.
  24. I have a site where the members are organisations, I have setup these members using: https://processwire.com/blog/posts/processwire-core-updates-2.5.14/#multiple-templates-or-parents-for-users That way we have nice access control. Those organisations would like to give access to employees, so I went through the process again and thought these could be added below the organisation, but this time I didnt add to the $config->usersPageIDs as these would all be different (the main organisation). Everything works ok, but the user cannot be found by using $users->find("email=address"), so I cant log them in, it can be found with $users->get(2365). I have tried adding check_access=0 but nothing seems to be working, any ideas?
×
×
  • Create New...