-
Posts
46 -
Joined
-
Last visited
Everything posted by Andreas Augustin
-
Monolog would be nice. With this I could use SaaS's like papertrailapp or loggly
-
I've made some changes to your module to use actual predis with authentication support. SessionHandlerRedis2.module
-
Hi! Thanks for this module! Is it also possible to use it with some Redis SaaS Services like Heroku? This Service uses some authentication on their Redis Server... E.g. redis://password:user@redis-instance.eu-west-1.compute.amazonaws.com:29029
-
Yes I'm running on PHP 7.1.1 and all of the steps are done. I switched to PHP 7.0.15 and the error is now gone. PHP 7.0.15 is okay for me - so I can ingore the error for now
-
Other Question: Can I activate the Toolbar in CKEditor without choosing the Hanna Code Textformater and use the $hanna->render() API?
-
Hi, after installing this plugin I get this error: Notice: A non well formed numeric value encountered in /Applications/MAMP/htdocs/processwire/wire/core/Database.php on line 118 Set-up Info: Hanna Code: ver. 0.2.0 HannaCode Dialogue: ver. 0.0.4 ProcessWire: ver. 3.0.59 PHP: ver. 7.0.0
-
Thank you!
-
Hello! I have a Problem with my language URLs. I created many langauges with the correct locale (E.g. "es" for Spanish) but it doesn't work in the url. If I look in the page settings I see, that the url is wring for the most lanugages. It is "en" instead of "es", "fr" etc. It only works for "de" and "fi". What I am doing wrong?
-
CKEditor Shortcode/HannaCode instead of <img>
Andreas Augustin replied to Andreas Augustin's topic in General Support
I thought this module is only for adding classes etc to <img> tags? And does this module put the tag into the field or does the module this formatting while rendering? -
Hi! How can I modify CkEditor in Processwire? I want to change the output for the uploaded images. Instead of an html <img> tag, I want to insert an Shortcode/Hanna-Code. E.g. [[image caption="Some Caption Text" src="http://url-to-image.com/image.jpg"]] Can someone help me?
-
Use of Translation in Smarty Templates
Andreas Augustin replied to Andreas Augustin's topic in API & Templates
And where should this File be included? in _func.php? -
Use of Translation in Smarty Templates
Andreas Augustin replied to Andreas Augustin's topic in API & Templates
Can you show me some textdomain file example (strings.php)? -
Hi, How can I use the __('Some Words to Translate') feature in Processwire Smarty Templates like {__('Some Words to Translate in Smarty')}?
-
Edit Article-URL for Preview
Andreas Augustin replied to Andreas Augustin's topic in General Support
Good Idea - I have only have to find some logic that the redirect doesn't happen if the request comes from our Webshop System/Server -
Edit Article-URL for Preview
Andreas Augustin replied to Andreas Augustin's topic in General Support
Thanks, that works good. One Problem left: the URL in the Save + View Button is in the function "renderEdit". This is not hookable? :-( -
Edit Article-URL for Preview
Andreas Augustin replied to Andreas Augustin's topic in General Support
I just found, that I have to modify the function protected function ___getViewActions in ProcessPageEdit.module. Is it good to just override this in a module? -
Hello! I have a very special Processwire Setup. Short: We use Processwire for our "Blog", which is embedded in an SAP Hybris Webshop. PW provedes the Contnet via HTML and Hybris render this HTML into the Webshop (Between Default Header, Navigation and Footer) The URLs which are created in PW are the URLs for the local HTML e.g.: http://processwire.webshop.com/en/news/some-article If some Editor creates an article, he want to see the preview in the real webshop embedded. This URL would be: http://www.webshop.coom/en/blog/news/some-article Where and how can I create a Module which overwrites the URL with the correct one in the Admin-Area?