Jump to content

benbyf

Members
  • Posts

    806
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by benbyf

  1. Is there any working example links at all?
  2. Ha yeah I saw that, I thought it worked well together as the instant visual works with me brain :)
  3. Anyone seen this? https://llmstxt.org/ Wondered how you might achieve a page that has all the text found in the site templates and convert to md using PW???? Could be an interesting project...?
  4. Hi, This is a basic module to add some classes and css to teh logs list page based on the amount of time since the log has been edited. less than a minute: Red -> purple -> grey less than a week https://github.com/benbyford/HighlightRecentLogs I hooked to the ProcessLogger module ___execute() function and basically overwrote it. Felt abit nasty to me, I wondered if there would have been a better way of doing it?
  5. @AndZyk do you include /wire/ in your repo then and why?
  6. Feel like this is a perennial question and probably a duplicate...BUT I have a load of new PW sites and in the past I've git'ed on the template/ folders to gitlab, bitbucket, github or similar. What are people doing to version control with PW as I would love to add more than the templates folder ideally (as I often make custom Modules) but wondered what people's strategies are?
  7. Ok my bad, i think its because i chose a course that had a pop up saying i cant use the form for that course, so a UX problem rather than a tech one in that case.
  8. FYI, just had a quick look on firefox and I get jquery not found errors on the booking form page which means I'm unable to proceed
  9. I'm gonna say yes, but would require some more development to achieve... I've also got a newer version personally that does subscriptions but havent got round to putting it up
  10. Hi, Thanks for your purchase!! Will check it out and get back to you asap
  11. Was looking to make a local tech job board website but havent got round to it yet.
  12. Thanks for your help, but not sure thats the issue. I will however check the latest version of PW to check support and report back
  13. Really good point, totally forgot to add it in the information. Have added now. Summary of license: Unlimited use of software on own projects No modifications or derivative works No commercial use other than applications and services produced by Licensee No attribution is required Free software updates up to next major update e.g. where major release is v1.0.0 to v2.0.0 not v1.0.1
  14. Hi Everyone! So I've been working with PW for over ten years now!!! Big thanks to @ryan and everyone in the community (genuinely such a warm community). I've made a few modules in my time as well as tutorials and this was the first that I thought might work as a commercial module: MembersMessaging This module enables you to easily setup a messaging system for your users through your site. Allow your website users to message other users on the site given a user name or similar information. Module uses the notions of threads, messages and users to describe the message relationship -> A thread is a page storing n messages including: time posted, created by user and message text, the user ids in that thread, which users have unread messages in that thread, whether messages are encrypted (and it's salt). User pages have a list of all threads they are apart. In your templates you can add: a compose message form, threads and their messages, thread reply forms, message and threads counts, as well as delete and delete all messages. You can view messages in the admin (unless encrypted set to True) and view message stats and module usage in admin page Members. Purchase here How to install? - Install Processwire - Add MembersMessagingModule folder to modules folder in processwire: /site/modules/ - Login to your site admin and navigate to Modules: yoursite.com/[admin]/module - Configure the module settings: yoursite.com/[admin]/module/edit?name=MembersMessaging` - Follow the instructions below to add messaging to your templates How to use Example usage: $mm = $modules->getModule("MembersMessaging"); echo $mm->execute(); echo $mm->js(); echo $mm->css(); Full api here. Configuration Module allows you to configure whether: to allow new threads to yourself to allow new threads to guest user role to trash or unpublish threads deleted from frontend to use select or textinput for username input to allow an All keyword to signal thread should include all users to change all keyword to something else to notify a user via email they have been sent a new message to set email sender address to change username output from user name field to some other field specified to change default max threads and messages to display to encrypt messages (using basic encrypt strategy that encrypts each message on server before DB save, and is decrypted on request) Roadmap: Available here. ------- I'm not really sure how much interest there would be in this module so I've posted it to GumRoad for now, but will be looking to work on a PW store front if theres any interest in it and other modules - I've got ideas for other modules such as deffered page publishing, image folder GUI, protected field, field dependencies, pages contraits. I'm also available for hire currently to work on sites or modules https://www.benbyford.com
  15. Hi @jbaharvar happy to throw my hat into the ring too. I've been using Processwire since 2012 and have worked on various websites, modules and apps using it: some sites ive made https://www.benbyford.com/works/?f=website
  16. Super, thanks. I remember seeing this ages ago but then didnt use or realise it would be default behaviour.... so now I know ?
  17. I have a site that uses both static requests and then continues with partial requests to urls using ajax and blocking out if(ajax) in my template. When making the static requests I use the built in caching in PW or Procache. However in order to recieve the partial request i have to use a cache burting GET parameter. Is there any way of making both of these requests cachable...? Only thing I could think of was having different urls with duplicate content.
  18. I've not come across this before but in the default install for PW3.0.226 if you add some HTML into _main.php template file: <div id="content"> <?php // template code rendered here by PW ?> </div> and then add the same html container to the template named file e.g. home.php <div id="content"> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam mattis eros vitae metus sodales eget suscipit purus rhoncus. Proin ultrices gravida dolor, non porttitor enim interdum vitae. Integer feugiat lacinia tincidunt. Nulla laoreet tristique tristique. Sed elementum justo a nisl elementum sit amet accumsan nisi tempor. Nulla quis eros et massa dignissim imperdiet a vitae purus. </p> </div> when rendered I dont get double content containers but just one with the Lorem ipsum... What is this behaviour called??? Is there settings for it? Can it be disabled? confusing as hell.
  19. Been thinking this would be a good idea for a while, super glad someone got round to doing it!!
  20. Just hit into this recently, seems very concerning... is this something that needs to be fixed or has already been in later PW verisons?
  21. Thanks @BitPoet but no dice. It's also complaining about gropimage no longer working but im unable to change those fields to normal image fields... just text by default - wonder if thats part of it.
  22. Just upgrading from PWP3.0146 to latest as well as php7.4 to php8.0 and getting this error on any page in the admin with an image field Method. Any help would be wicked. FieldtypeFile::getValidFileExtensions does not exist or is not callable in this context
  23. Thought this website was neat for seeing visually the SQL relationships, just wondered if anyone is interested in writing one up for PW? https://drawsql.app/templates
  24. Thats cool. Maybe there's a hook somewhere for whenever there is a log save event instead maybe...
  25. Thanks, am i write in saying this is something in need to execute in my modules or templates for each log??? Would be nice to have a site wide log config setting.
×
×
  • Create New...