Jump to content

zoeck

Members
  • Posts

    440
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by zoeck

  1. I had the same problem with 3.0.218. I had to delete the module ".Modules" in the modules table in the database. After that, the error was gone. Thought this was only a local problem ?
  2. I have the same problem, freshly downloaded 3.0.218 DEV version @ryan is there a problem here with the current version? /edit: reverted to 3.0.217 DEV and it's working...
  3. I think you have to pass the variable to your included latte file: {include '../blocks/' . $block->type . '.latte', block: $block}
  4. I am currently switching from HTMX to Vuejs with Processwire as the backend. But this will also be more a SPA ? I am positively surprised by Vue….
  5. @Jan Romero i don't think so ?
  6. You can renew the ProFields for $39 -> Manage Purchases If there is no "Renew Now" button there, you will need to contact Ryan first. (this is what Ryan wrote here) It's not a subscription at all, it just extends the updates by 1 year ?
  7. if($input->urlSegment1 == 'photos') { // display photo gallery } else if($input->urlSegment1 == 'map') { // display map } else { // display main content } You mean like this? Or what exactly do you mean by whitelist ("Without manually adding"?!)
  8. Have you looked at the instructions for URL Segments? https://processwire.com/docs/front-end/how-to-use-url-segments/
  9. Possibly the same problem as here: If Tracy is installed, you should deactivate it in the template (you can do this in the Tracy settings): No debug bar in selected frontend templates Disable the debug bar on pages with the selected templates.
  10. Do you already know the lister function of the Processwire? Simply go to Pages -> Find, then you can display a table with pages (with adjustable columns). There is also an extended (paid) variant: ListerPro
  11. Do you want to simply access existing Processwire pages or create new ones? Or do you have your own table ("kontrundgang") where the data should go? You can have a look at the Database API: https://processwire.com/api/ref/wire-database-p-d-o/ By the way: you should never execute unsanitized values in a sql statement!
  12. Of course you can do that with Processwire, there is also a module for it ?
  13. Can you tell the error
  14. I actually always use Google to search the forum ? just add "site:processwire.com/talk" Example:
  15. <?php if($page->id == **YOURLANDINGPAGEID**) return; ?> Just Add this to the top of your _prepend.php and _append.php (and isert your id ?) Of course, this also works with a template check: <?php if($page->template == "**yourtemplatename**") return; ?>
  16. Check your config file for something like this: $config->prependTemplateFile = '_init.php'; $config->appendTemplateFile = '_main.php'; I think this will be the line with the _main.php ? This is a standard configuration in the Regular Site Profile
  17. Renew the Profields licence (Store -> Manage Purchases, it costs $39) with the account that bought the licence at the time, and then go to the Profields Board and download the new version ? If there is no possibility to renew, you have to contact ryan, he will unlock it.
  18. You have too hook the Lister: $wire->addHookBefore('ProcessPageLister::execute', function(HookEvent $event) { /* @var ProcessPageLister $lister */ $lister = $event->object; // I'm not sure, but the parent of the "Search Lister" has the ID 0? if($lister->parent->id !== 0) return; // Set sort $lister->defaultSort = 'title'; bd("Changed Search Sort"); });
  19. You can use a hook for this ?
  20. Use " instead of ' ? (in wire()->message)
  21. You have to use $config->pagefileSecure https://processwire.com/api/ref/config/#api-pagefileSecure like @wbmnfktrSaid.. (then you have to set the rights to the page/Template!)
  22. Something like the ImportPagesCSV Module?
  23. Have you also checked if the configuration of phpinfo() is correctly displayed? Just check this values: upload_max_filesize post_max_size memory_limit max_execution_time max_input_time Is an error displayed in the browser dev tools? Or also in the Processwire log file?
  24. Did you increase the PHP settings post_max_size and upload_max_filesize or only one of them? I think the normal setting is 32MB
  25. Or configurable as in the Tracy Bar ?
×
×
  • Create New...