dab
-
Posts
152 -
Joined
-
Last visited
Posts posted by dab
-
-
& this from Google search (not tested):
- 1
-
Password reset here:
- 1
-
4 minutes ago, benbyf said:
fixed, so shouldnt 500 now, but just let you know that the postcode coulndt be found.
Now perfect!
-
Fantastic site, great job ?
Ditto some random postcodes threw an error e.g. IV42 8YD, IV41 8WZ (selected off the web to compare against my home postcode).
- 1
-
I've been using this: 7g firewall with my Processwire sites:
https://perishablepress.com/7g-firewall/
Seems to be working effectively.
- 1
-
Is this any use?
-
Not sure if this is the correct way, but on my map template I wrap my code with:
if($page->marker->address) {
}
e.g.
if($page->marker->address) { $map = wire('modules')->get('MarkupLeafletMap'); $options = array( 'markerFormatter' => function($page, $marker_options) { if ($page->marker_icon->title) { $marker_options['icon'] = $page->marker_icon->title; } if ($page->marker_colour->title) { $marker_options['markerColor'] = $page->marker_colour->title; } // And the icon colour. This is another text field. Colour values like White, Black or an RGB value are ok here. if ($page->marker_icon_colour->title) { $marker_options['iconColor'] = $page->marker_icon_colour->title; } return $marker_options; }, 'popupFormatter' => function($page) { $out[] = "<strong>$page->headline</strong>"; return implode('<br/>', $out); } ); $content.= $map->render($page, 'marker', $options); }
If no address is entered, no map is shown.
-
Have a look at delayed output strategy. You have one main "template"(_main.php) & can then simply create a new template for a sub-section page where you just add code for regions/sections of your _main template where you want to show different content (summaries, other content etc.).
I found the intermediate templates a good starting point to see how _main.php & e.g. home.php or basic.php interact.
Once you've learnt this, look at markup regions - super powerful (once mastered)!
-
@adrianThanks for the speedy reply. Most odd, WHM/Cpanel was reporting PHP 7.2, but I double checked with a "phpinfo" file & it showed PHP5.6! I reset the PHP version to PHP 7.2.32 & it's cleared the error.
Apologies for the incorrect info & thanks for the fix for <7 (& for such a great module)!
- 1
-
Has anyone come across this error?
Parse error: syntax error, unexpected ':', expecting ';' or '{' in /home/********/public_html/site/assets/cache/FileCompiler/site/modules/TracyDebugger/includes/PwApiData.php on line 516
PW 3.0.148, Tracy Debugger 4.21.20, PHP 7.2.
line 516 is
private function phpdoc_params(ReflectionMethod $method) : array {
Have tried a reinstall & cleared complied files from > Modules. No errors on other sites on same server with same setup.
-
@Robin S thank you you are lifesaver - I missed this completely. With the addition to the hook it's working perfectly now!
- 1
-
I noted that you can't add an unpublished page to the list of pages a user can edit.
It results in error: "Unpublished page /en/members/test/ is not allowed in field "Pages user may edit". To allow unpublished pages, edit the “editable_pages” field and see the setting on the “Details” tab."
I'm not sure where to find this - or if it is applicable as Page Edit Per User is a hook in to the system.
- 1
-
@ryan I love this module, makes it super easy to allow users access to edit their own pages, thank you!
I can't find a way to allow users to publish/unpublish their pages....
I added these lines to the module
public function init() { $this->addHookAfter('Page::publishable', $this, 'hookPageEditable'); } /** * Page::publishable hook * */ public function hookPagePublishable($event) { if($event->return) return; $event->return = $this->onMyBranch($event->object); }
& bingo, an "unpublish" button appears & a user can unpublish thier page. However, if they do, they lose access to it (it disappears from the page tree) & only a superuser (site admin) and republish it.
Please can you help with this - page publish/unpublish would make this module just perfect!
Many thanks ?
-
Many thanks! Both worked. I had tried with {....} but obviously also needed the double quotes. I was outputting directly to .csv which was clearly not the best way to debug! Thanks again.
-
Stumped with this....please can anyone help?
I'm trying to find pages with a field that matches the search page's parent's title.
This works $items = $pages->find('template=items-ordered,supplier=Acme Biscuits'); Not this...(did no find any pages). $items = $pages->find('template=items-ordered,supplier=$page->parent->title');
With thanks ?
-
Are you getting any errors?
-
Thanks, very good to hear of other's experiences. I looked at Snipcart, but was put off by the fees (2%/ transactions + gateway fees) just made it too expensive. Yes, back end of foxy is ugly & I needed some help with some aspects of the coding, but have found it usable for simple ecommerce projects.
- 1
-
I've used Padloper for two Processwire sites, but not found it suitable for other projects due to only working with Paypal & Stripe payment gateways; neither being the client's gateway of choice.
More recently I've used Foxycart; now on 4 ecommerce sites. I've really enjoyed the challenge integrating it into my sites with the help of some amazing Processwire forum members here ? (XML & JSON datafeeds).
It's compatible with over 100 payment gateways & the datafeeds can be used for updating stock levels, recording orders on to your Processwire site. I think it's worth a look if your project needs to use a specific payment gateway.
- 1
-
On 11/16/2019 at 11:06 PM, B3ta said:
That’s really generous!
I would be more than happy to take a look and use it for my next project.
How can I get the files?
Sorry for the delay getting back. Let me know which bits you need help with & I can post up some code.
You can make a start with the Foxy.io code from here: https://docs.foxycart.com/v/2.0/start
-
Snipcart looks nice (though I've not tried it). I looked at it & the 2% of transactions fees on top of payment gateway fees put me off, plus only a few payment gateways are supported.
I've used Foxy.io (Foxy Cart) with ProcessWire on a site & it works really well*. Fees are low (approx £16/month) & loads of payment gateways are supported.
I'm happy so post/share code if anyone needs it.
*Big thanks go to both @netcarver an @Macrura for helping me with some of the datafeed integrations back to ProcessWire.
- 2
-
I'm having problems adding a second category to check for emails & save to pages no PW errors (or php errors).
On "save" no new Email Category is added.
Anyone else encountering difficulties? I'm using ProcessEmailToPage v. 1.3.3, PW 3.0.123 & php PHP 7.2.
Thanks Nick
-
I used this to get the access token:
https://api.instagram.com/oauth/authorize/?client_id=CLIENT-ID&redirect_uri=https://www.yourdomainhere.co.uk/processwire/module/edit?name=InstagramFeed&response_type=code
1. Replace CLIENT-ID with your own CLIENT-ID code
2. I removed the trailing slash off suggested code on Processwire Module instructionshttp://page.dev/processwire/module/edit?name=InstagramFeed/
Works OK for me, but I am getting error code "[InstagramFeed]: No user" too, but otherwise feed working OK.
-
On 1/16/2019 at 1:45 PM, Jan P. said:
Hello,
we found the following solution that is quite similar to the suggestion from Autofahrn. Our setup includes two languages
- de (german) as default for *.de domain (default language)
- en (english) for *.com domain
In _init.php there is just:if (preg_match("/(:2284|\.com)/", $config->httpHost)) { $user->language = $languages->get('englisch'); }
Your question no. 2: It is important that you configure the settings for your root page to "/" for each language. In that case PW doesn't prefix your URL paths for the children.Be careful! In case you use the front page editor - when a child page has the same path for every language, the front page editor is not able to save the page correctly. You have to use the backend. But if there are differences, for example *.com/imprint and *.de/impressum - the front page editor works fine.
This works beautifully, thanks.
& if any users need help on configuring their DNS (to point 2 domains to a single install of PW) on WHM use the >cPanel > Domains > Aliases function to add your extra domains (after enabling on > Server Configuration > Tweak Settings > Domains > "Allow users to park subdomains of the server’s hostname".
-
@psy, thanks....so sorry...... PushAlert said I had to download the .js files. Apologies for not following the README properly - thanks for being so patient!
- 1
Getting weird errors non-stop!
in General Support
Posted
I use https://perishablepress.com/7g-firewall/ on many sites, stops bots etc.