Jump to content

Gideon So

Members
  • Posts

    508
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Gideon So

  1. Hi @Vincenzo If the folder permission without the execution bit then the affected user cannot enter the folder. Yes. You need to make the /var/www/html folder with the execution bit for user www-data. Gideon
  2. Hi @cosmicsafari If I remember correctly, The dropdown value MUST match the the field's settings in FormBuilder. Otherwise FormBuilder won't process the form. I think you have to process the form with one of the formbuilder hook. https://processwire.com/store/form-builder/hooks/ Gideon
  3. Hi @wbmnfktr Welcome to the TailwindCSS party. It is fun and the new always JIT and standalone CLI is awesome. Gideon
  4. Hi @Thromisios Welcome to the PorcessWire community. I came from non coder background, too. I first started learning ProcessWire basics by following this tutorial. Gideon
  5. Do you check if the form is submitted to avoid double submit of the form?? Gideon
  6. Look like it is related to MySQL 8.0.17
  7. Hi @Fuzzy No screenshot found and is there any error message you can find from the log? Gideon
  8. He needs a A 13-field form and a 13-field form is not a simple contact form IMO. Gideon
  9. Hi @neophron I think the findIDs function only returns the IDs of the found pages but not full wire page objects. https://processwire.com/api/ref/pages/find-i-ds/ You should try using: <?php foreach ($pages->findMany('id=1223|1224|1225, sort=-created')->children as $item) : ?> or <?php foreach ($pages->find('id=1223|1224|1225, sort=-created')->children as $item) : ?> Gideon
  10. Hi @wishbone I fully understand your feeling. I came from a non coder background, too. If you are willing to pay for a working contact form. I suggest you to buy Ryan's FormBuilder. Gideon
  11. Hi @wishbone Maybe you can take a look at this module. Gideon
  12. Hi @benbyf Read the following post to solve aiom error with php8. Gideon
  13. Hi @Spiria The backend looks amazing. Would you please share how you make it? Gideon
  14. This error also happens with PHP 8. Modify line 707 $_timestamp = ''; to $_timestamp = null; Solve the error. Gideon
  15. Hi @Angelino Yiu need to install language support core module first. Then install multilanguage text field, multilanguage textarea field and multilanguage page name. Then you can add new language to your site at setup -> Language Gideon
  16. @adrian Thanks. I will check it out later. Gideon
  17. Hi @esspea Maybe you can post the css link html code here and tell us some more about your development environment. Then we can help. Gideon
  18. Hi @Stick Click on your name at the top right corner and then click "Profile" in the drop down menu. Then click click on the profile photo besides post counts. Gideon
  19. Hi @joe_g Repeaters are actually pages resides under the admin page which is not accessible to roles other than superuser. Gideon
  20. Hi @joe_g Try add check_access=0 to your selector. https://cheatsheet.processwire.com/selectors/built-in-page-selector-properties/check_access-0/ Gideon
  21. Hi @bubu2110, What fieldtype is arch?? Is it a image field or some other field type? It looks like a image field to me as you echo arch->url. If it is indeed a image field type, you could use the code I provided to you to simplify your code and see if the error still exists. Gideon
  22. Hi @bubu2110 Try the following code. <img src="<?= $pages->get("/globale-einstellungen/")->arch->first()->url ?>" class="arch" /> Gideon
  23. @Roych , Use hanna code and hanna code dialog in a ckeditor field may fits your need. Gideon
  24. Hi @fruid Try to validate your page with https://validator.w3.org/. Gideon
×
×
  • Create New...