-
Posts
2,086 -
Joined
-
Last visited
-
Days Won
51
Everything posted by wbmnfktr
-
[SOLVED - kind of] Pagintion Link redirects
wbmnfktr replied to Peter Troeger's topic in General Support
Ok... those modules you mentioned shouldn't interfere here in any kind. Even PagePathHistory shouldn't kick in there but you can check if there is anything set in the settings tab. Could you post the whole page could or more than just that snippet? Maybe there is something in it.- 8 replies
-
- pagination
- uikit
-
(and 2 more)
Tagged with:
-
Check if mod_rewrite is enabled as it is needed. I don't know the easiest way in Mint/Ubuntu to do so - or at least not how it is done nowadays. ? But something sudo a2enmod mod_rewrite comes into my mind. You want to look this up to be on the safe side. Another thing is the Apache configuration. In order to make it work on my local machine I needed the AllowOverride all line in my config. <VirtualHost processwire.test:80> DocumentRoot "/var/www/html/processwire" ServerName processwire.test ServerAlias processwire.test <Directory "/var/www/html/processwire"> AllowOverride all allow from all Options None Require all granted </Directory> </VirtualHost> So... in my opinion it's most likely a server-side issue and not a PW-issue here.
-
Setting the value of a field when loading a page for editing
wbmnfktr replied to BillH's topic in General Support
Maybe it's enough to hook into it before the page is ready to be saved. wire()->addHookBefore('Pages::saveReady', function($event) { -
[SOLVED - kind of] Pagintion Link redirects
wbmnfktr replied to Peter Troeger's topic in General Support
Just a few thoughts... Are there enough children/pages? The selector needs limit AND start if I remember correctly. Home (id=1) needs correct url settings for each language (for example: blank, de, fr, ...) Enable config->debug to see if there are warnings and take a look at the logs - just to make sure. Just looked into Pagination in ProcessWire but didn't find anything special you could try in addition to that.- 8 replies
-
- 1
-
- pagination
- uikit
-
(and 2 more)
Tagged with:
-
If you are using FormBuilder you might want to take a look at the FormBuilder section of this forum as well. There are many solutions to all kinds of issues. I your case - but that is just a guess - it seems either your hosting is issues sending the mail (security modules in Apache maybe or missing modules) or your form wasn't embedded in the correct way. Saw this a few times when I added the form twice on a page or missed some scripts.
- 10 replies
-
- 1
-
- wiremail
- wiremailsmtp
-
(and 5 more)
Tagged with:
-
Design: polimorf.de Development: muskaat.de They team up for tasks like that and I'm also part of Muskaat. ? So feel free to take a look at the references there. Located in Neumünster - close enough to Hamburg for meetings.
-
Your last screenshot says it's working. So... what's the (new) issue now? P.S.: there is no need for ASAP.
- 10 replies
-
- 3
-
- wiremail
- wiremailsmtp
-
(and 5 more)
Tagged with:
-
It's not much, but it's honest work! Matomo is really nice and with its new Tag Manager really powerful. So better set a timer or you will play with it for hours!
-
It's just my experience but... a lot of hosting companies here don't have http/2 enabled in their default/smaller webhosting plans. Therefore I rarely think about the benefits of http/2. ?
-
After disabling Ghostery, Adblock or Privacy Shields (in Brave) Google Analytics loads, sets cookies. At least in Chrome-based browsers and their default settings. In Firefox it gets blocked - even without any additional extensions. To get more numbers you could use Cloudflare CDN (free plan) with built-in statistics and the module PageHitCounter. Meta-Keywords aren't that necessary anymore. At least not in Google (they say so and we believe them ? ) but there are some meta search engines out there that used them in the past. TL;DR: forget them. Meta-Description: oh yes... you want to use it and want to optimize it. There are some really good explanations, guides and such over at Backlinko. Btw. I really like the "letter art" in the source code. Update: In addition to that you could also try Clicky Analytics or even a self-hosted Matomo instance. 3 to 4 sources of stats. ?
-
In case your template already has an icon assigned per default, you might want to try this instead: $wire->addHookBefore('Page::getIcon', function(HookEvent $event) { $page = $event->object; if($page->template == 'event' && !$page->datetimeend) { $page->template->icon = 'exclamation-triangle'; } }); Otherwise the already defined icon shows up as text in your page listing.
-
Fieldset (open) (a field) and the Minimal Fieldset module is what I use for things like this.
-
Thank you @ceberlin for the link. I just looked into the article and will take a look at the tools they provide and how they work - hopefully this week. Those can easily be set in the texts you already show in the banner. That's how I do it most of the time.
-
All template files are located in /site/templates/ open that folder in VS Code/Atom/whatever and look through the files. Which site profile are you using? Or is it a custom one?
-
Possible bug: path to translatable template files
wbmnfktr replied to theoretic's topic in Multi-Language Support
Not related to the translation issue but developing under Windows should work the same as on Linux - in terms of file paths and such - with the right tools. Try Laragon, which is free and awesome. With Laragon in place there shouldn't be any difference in about 95% of all use cases - compared to Linux. -
That's easy: https://www.facebook.com/business/help/952192354843755?id=1205376682832142 https://processwire.com/docs/tutorials/default-site-profile/ Get the Facebook Pixel code (1) and add it to your template files (2).
-
$config->httpHosts = array('codeweavers.io', 'blog.codeweavers.io'); Have you set this? And one other thing that might be a good idea to make it more bulletproof. Change the root names from cw-home and blog to something like lkajsd and oiquwe to avoid any future conflicts with page names. I learned this lesson some time ago.
-
I think you didn't run in this trap but just to mention it: test it with another browser and a real guest/visitor and not with the admin/superuser. Yes... enabling this by default should do the trick then.
-
Ok... well... I don't know. There are only a few things and thoughts left so far. check what has changed in the last days/weeks since it broke maybe GD or ImageMagick (don't know if this exists in 2.5.x) are failing ask the hosting company if there were any changes (security efforts, file scanners, whatever) remove any restrictions on that field use another browser use another user check console for errors check disk space Last and final thought: Make a backup, test it locally and take it apart.
-
Just a guess but I think this will work for already existing pages and files as well. I never used this feature for any of my projects - at least I can't remember so. Just give it a try in a dev environment on your local machine. Shouldn't take more than 30 minutes to get this up and running for a test ride. If I remember this correctly @Jens Martsch - dotnetic could answer this probably.
-
It looks like you could use: $config->pagefileSecure More details here: https://processwire.com/api/ref/config/ and of course via search in the forum. ?
-
First of all... thank you @adrian for the introduction and the great work with this module. In the last couple of days I created a DEV branch with some minor changes and fixes I found while testing the latest version (0.4.11). If you are interested in playing around with that version, grab a copy over at Github - the DEV branch is linked below. As always: backup your site and previous module first. All changes so far: FIXED: Vanilla JS version notice toggle didn't work when MANAGE disabled FIXED: Version change didn't trigger reset INFO: Added usage examples (assets/html) CHANGED: Removed CLOSE option ADDED: Datalayer details to README Issue tracking on Github was also enabled. This could make things easier in the future. Feel free to open an issue there whenever you find a bug. Don't forget to add the obvious details (ProcessWire version, PHP version, expected behaviour, your module settings and custom code). DEV-Branch https://github.com/webmanufaktur/CookieManagementBanner/tree/dev Issues https://github.com/webmanufaktur/CookieManagementBanner/issues
-
Module: AIOM+ (All In One Minify) for CSS, LESS, JS and HTML
wbmnfktr replied to David Karich's topic in Modules/Plugins
As you can read in the previous posts there are some issues with the module right now. There haven't been any updates so far in the official repository. So you might have to dig through errors and fix them. Right now I wouldn't recommend this module in any project unless you want to take care of all possible issues. What's the main feature you are looking for? There are several other modules out there so maybe we can find a solution for your needs.