Jump to content

Krlos

Members
  • Posts

    183
  • Joined

  • Last visited

Recent Profile Visitors

3,491 profile views

Krlos's Achievements

Sr. Member

Sr. Member (5/6)

103

Reputation

  1. Hello @boltwood, and welcome to the ProcessWire forum! About your question: it seems like the issue might be related to assigning the correct template to your page. Double-check that under Settings > Template in the page editor, the custom template you’ve created is properly assigned. This ensures that when you click “View,” ProcessWire will render your custom template instead of the default one with “Default content.” Also, I highly recommend visiting PWTuts, a great resource with detailed tutorials about ProcessWire. It’s a fantastic place to find step-by-step guides that will help you better understand the CMS and unlock its full potential. If you have any more questions, feel free to ask here. The community is always happy to help. Good luck, and enjoy your ProcessWire journey!
  2. Hi, I have a client who wants to offer file downloads (PDF, Word, Excel, etc.) to some of their clients. However, he have emphasized that the files must be highly protected. Specifically, the files should: 1. Be accessible only to users with the appropriate role.(different roles for different files) 2. Not be directly accessible from the internet. 3. Remain unreadable or encrypted even if the web server is hacked. Is there any way to achieve this with ProcessWire? I’ve only built standard websites before, and I’ve never worked on something like this. To be honest, I feel unsure about how to implement this. I would greatly appreciate any advice or recommendations. Thank you!
  3. I totally get where you’re coming from and appreciate your support for open-source values. Personally, I keep renewing my Pro module membership even when I don’t need the new features. For me, it’s a way to back Ryan for all the amazing work he does. Plus, having access to support has been a lifesaver a few times when the forum couldn’t help. Maybe reach out to Ryan directly through the ProcessWire website to see if there’s a way to donate. I’m sure any support would go a long way for the project! Another idea could be setting up something like a Patreon or similar platform where the community could collectively fund updates to specific modules or even new features that aren’t currently on the ProcessWire roadmap. That might be a cool way for everyone to contribute in a more focused way!
  4. I highly recommend KnownHost.com. I have a fully managed VPS with them, and in seven years, I’ve had zero issues.
  5. Me too, there are no compatibility issues on any of my sites, some on version 2.5 and 3.
  6. I always recommend pwtuts.com, it has great content for beginners.
  7. In your site/config.php file, ensure that the $config->httpHosts is properly updated with only the domain you're currently using, which is plant-directory.something.edu. Since you've switched addresses, you don't need the old domain unless you're maintaining multiple environments (like a dev or staging environment). You can try this configuration: $config->httpHosts = array('plant-directory.something.edu'); If you have a development or staging site (e.g., dev.plants.something.edu), you can include both: $config->httpHosts = array('dev.plants.something.edu', 'plant-directory.something.edu'); ProcessWire sometimes caches configuration files. You can clear the cache by doing the following: Log in to your ProcessWire admin panel and navigate to Modules > Core > Clear compiled files (if you can log in).
  8. I did something similar using image tags. I placed all the photos in an image gallery and assigned the 'cover' tag to the desired photo to be used as the cover. Then: $image = $page->images->find("tags=mytag")->first(); My client actually loved this approach because we created new tags, and they can now assign them according to the position where the photo will be used
  9. Interesting, does this module work similarly to the Token module in Drupal?
  10. @Tiberium, Wow... just wow. Thank you so much for providing the code! I really appreciate your help. I’ll give it a try later today and let you know how it goes. Thanks again for your support!
  11. Hi everyone, I'm working on a multilingual site in ProcessWire with three languages: Spanish (default), English, and Portuguese. I've already implemented a manual language switcher that works correctly, but I would like the site to automatically detect the user's browser language and redirect them to the specific language version. Users with their browser language set to Spanish should be redirected to mysite.com Users with their browser language set to English should be redirected to mysite.com/en Users with their browser language set to Portuguese should be redirected to mysite.com/pt Users with any other browser language should be redirected to mysite.com/en Can anyone guide me on how to achieve this? I would appreciate any advice, code examples, or modules that could help me implement this functionality. Thanks in advance!
  12. I recommend checking out PW Tuts pwtuts.com. There, you can find basic concepts that will help you understand the fundamentals and allow you to create quite advanced websites.
  13. I'm glad you found the solution, and I appreciate you coming back to post it to help others. There's nothing more annoying than when someone says, 'It doesn't matter, I already solved it.'
  14. @TomPich welcome to Processwire! There are two modules that could solve your need https://processwire.com/modules/settings-factory/ https://processwire.com/modules/process-general-settings/
×
×
  • Create New...