Jump to content

Klenkes

Members
  • Posts

    405
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by Klenkes

  1. what about the module SimpleContactForm. https://processwire.com/modules/simple-contact-form/ Wouldn‘t do that what you want?
  2. I did. I checked 3.0.190 and it worked. I checked 3.0.197 and it doesn't work anymore. Somewhere in between it happened.
  3. Tried your copy on my local dev server and it shows the same behavior like in the video. Both languages are there until I save or publish. Then additional langs vanish.
  4. Sorry, at the moment I only have PW 3.0.184 multilang availabe, and there it works as it should. I will try later with a more recent version.
  5. Or if you want to jump right into it, you can always read about HannaCode. It's like Shortcodes in WP. Just don't forget to add the TextFormatter to your field!
  6. I just tried with PW 3.0.191 and kept everything default. Seems to work for me with a dot as a separator but not with a comma. Comma leaves the field empty afer save.
  7. You probably have to convert each field from singlelanguage to a multilanguage field in the fields settings. Not a big deal! i.E. Textarea to Textarea(Multilanguage)
  8. How about this in your config.php $config->paths->templates = 'YOUR_PATH_TO/site/templates/pages/'; $config->urls->templates = '/site/templates/pages/';
  9. I did something like you want. Add this hook to ready.php: $wire->addHookBefore('ProcessPageSearchLive::execute', function(HookEvent $event) { $event->wire()->addHookAfter('FieldtypePageTitle::wakeupValue', function(HookEvent $event) { $page = $event->arguments(0); // specify your template if($page->template == 'tool') { // get the fields you like $prefix = $page->pre; $suffix = $page->suf; // add your data to the list $event->return .= " | {$prefix} {$suffix}"; } }); });
  10. I have a client who fights with his logouts as well. I am almost sure(98%) his Avira Antivir deletes or blocks something during his session.
  11. With Formbuilder you can save your submitted data either as entries or normal pages. You may then query those entries or pages and output them as you see fit. Thoroughly sanitized I don't see why this wouldn't work. Depends on your Processwire skills. But I am sure there are people in the forum with more experience in that matter.
  12. This is weird. I set up a clean installation as well, single language with shipped blank profile, and cannot create a new page with template basic-page. However... I can create a new template and create exactly 1 new page with it. A second page redirects me to the edit screen of the former created page... what's going on here?
  13. @ryan I am unable to create pages with 3.0.191 I wanted to use the quiet days to set up a small website for a friend. DEV 3.0.191, multilanguage German and English with German as the default, as I did countless times. The website was pretty basic with only AOS and Combo modules. When I wanted to setup a basic page structure I noticed that I cannot create pages, as PW redirected me to Admin - Access - Users, with the warnings that the page name is already in use, the page has been created, and has been renamend to xxxx-100, which wasn't the case. No page was created. A downgrade to 3.0.190 solved the problem and everything works as it should. Screenshot: Translations: The page /de/bio/test-100, using template Standardseite(basic-page) has been created.(not true) Warning! the page name test is already in use and has been changed to test-100(not true)
  14. Unfortunately not. The thing is that it works just perfectly for me, but not the client in his home. I will check on other machines and browsers tomorrow, but I think it's an issue with the clients setup.
  15. @wbmnfktr Thanks for the pointers! The hoster is All-Inkl. in Germany, so no fancy cloud service. PW logs don't say much, just: this request was aborted because it appears to be forged Unfortunately the client doesn't live nearby, so no chance of dropping by and checking myself. At some point he will get frustrated and eventually agrees to use some sort of Teamviewer with me. My gut feeling says inhouse routing, AntiVirus program or VPN, but my guts are old now...
  16. I always thought this is a problem that only other people have... An unhappy Wordpress user asked me to replicate everything in ProcessWire and I was happy. Today was the day it went online and he gets logged out after a few minutes. Not me. Only him! I read a lot of forum posts. They almost all deal with permissions and loggouts for all users. But in this case it's only him! Since he used Edge to edit the old WP site, I told him to change to Firefox but not much change. Session seems to last longer... but I'm afraid that's only wishful thinking on my side. It can't be serverside because it works fine for me since the last three weeks. In config.php I always set $config->sessionFingerprint = 0; I am out of ideas... (and coffee)
  17. You are right! If you add some gibberish, the server has to respond with a Error 500. If it doesn't, the htaccess is not read by the server, and therefore URLs like /about-me/ won't work, aka as rewriting. This should be your first task. Get the htaccess to work.
  18. @Craig The dashboard doesn't work anymore ? I think due to security changes in browsers they refuse to show the Iframe, at least Chrome and Firefox. This is what shows in the console: Refused to display 'https://app.usefathom.com/' in a frame because it set 'X-Frame-Options' to 'sameorigin'. (index):7374 crbug/1173575, non-JS module files deprecated. (anonymous) @ (index):7374 DevTools failed to load source map: Could not load content for https://www.xxxxxxx.de/site/modules/WayFathomAnalytics/iframeResizer.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE iframeResizer.min.js:8 [iFrameSizer][Host page: fathom-stats-iframe] IFrame has not responded within 5 seconds. Check iFrameResizer.contentWindow.js has been loaded in iFrame. This message can be ignored if everything is working, or you can set the warningTimeout option to a higher value or zero to suppress this warning.
  19. No big thing, but since the upgrade I noticed gaps on my iPad mini. It's not only visible via screensize, it has to be the device.
  20. On the DETAILS tab, at the botton marked: Markup/HTML Options(Content Type) (Your Content Type in the setting above has to be Markup/HTML)
  21. aaand... not to forget, in the CKE field you can set: Update image alt attributes (Replace blank alt attribute with image description) If an image description is set, it will be used automatically.
  22. "Are you tired of your URLs being just too darn short? Worry no further!" https://aaa.aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa.com/ "Your date will be impressed with the sheer size of your URLs" ?
  23. @kixe Thank you for this module! It saved me countless hours(probably days) of pain.
×
×
  • Create New...