[habari-users] Re: unable to post comments - Array to string conversion in system/classes/format.php line 575

2016-10-17 Thread Konzertheld
Hi Timo, can you still post comments (ignoring the message)? Am Freitag, 23. September 2016 17:16:54 UTC+2 schrieb Timo Ollech: > > Hi all, > > I don't know since when this happens, but when I try to post a comment on > my blog https://www.iromeister.de/ an error message occurs: > Array to strin

[habari-users] Re: Habari & PHP7

2016-08-24 Thread Konzertheld
Hey there, as you see, development is not that active, unfortunately. There is a work-in-progress next Habari in our GitHub repository that includes a major new feature - namespacing all classes. That will fix the conflict you mentioned. Unfortunately, a lot of other stuff is broken, as there a

[habari-users] Re: Still under development?

2015-09-19 Thread Konzertheld
Hi, AFAIK there has never been an official end of Habari. All the people who did the biggest part are now too busy to continue work on Habari, some have also lost interest. For s9y, there is only an import plugin s9y to Habari. https://github.com/habari-extras/s9yimport You might be able to c

[habari-users] New social networking plugins

2015-04-26 Thread Konzertheld
ade easily. You will have to register your Habari site as an "app" or whatever it's called with the social service you use. All plugins can be found on my GitHub account: https://github.com/Konzertheld Feel free to leave feedback or ask any questions. Happy coding! Christian --

[habari-users] Re: Modifying a theme

2014-01-03 Thread Konzertheld
You should be able to remove the two blocks from the sidebar in the theme section of your admin. They have propably been added when you changed themes. Am Dienstag, 31. Dezember 2013 16:19:07 UTC+1 schrieb Marcos Taracido: > > Hi, I creating my blog with Habari... using Mzingi theme... Is it pos

[habari-users] Re: Modifying a theme

2013-12-31 Thread Konzertheld
Hi, of course it is possible to modify the theme! If you just want to change few elements (for example, only CSS, sounds like what you said), a child theme might be the most efficient way. See this wiki page: http://wiki.habariproject.org/en/Parent_and_Child_Themes You can also copy the Mzingi

[habari-users] Re: OEmbed plugin

2013-12-29 Thread Konzertheld
will be detected automatically, no need - and no chance - to make edits. Am Samstag, 14. Dezember 2013 23:09:53 UTC+1 schrieb Konzertheld: > > Hello people, > > as a client of mine needs it, I made a simple OEmbed plugin. You can just > grab a URL and either throw it into a field in

[habari-users] OEmbed plugin

2013-12-14 Thread Konzertheld
dash block, this will give you a one-click opportunity to publish content (the title is automatically grabbed from the JSON). https://github.com/Konzertheld/oembed_content If you have any feedback, I'd be happy to see your comment here or your fork on GitHub. I'm pretty sure ther

[habari-users] Re: Coreblock for HTML use?

2013-12-09 Thread Konzertheld
Simpleblock should do what you need. https://github.com/habari-extras/simpleblock I'm not sure what you mean by "text coreblock" but simpleblock is capable of adding HTML and JavaScript as a block by simply entering it in the block config. If you have problems using it, let us know (don't forge

[habari-users] Thoughts on GitHub issues

2013-09-26 Thread Konzertheld
how that works from a user perspective. So, what I would like to know: *If you come across an issue in FlickrSilo / Pingback / another core plugin / the core itself, where would you think is the right place to put it on GitHub?* * * Cheers, Konzertheld -- -- To post to this group, send email

[habari-users] Re: Availability of the post object in theme.php or plugin?

2013-08-29 Thread Konzertheld
Long question simple answer: You should be able to access the current post(s) everywhere in your theme class with $this->post or $this->posts. $this->post will be the first post for multiple pages. $theme->post should also work outside of the class in your templates. Am Donnerstag, 29. August 2

Re: [habari-users] addon/plugin passocde

2013-08-20 Thread Konzertheld
The German error message in his post is just saying the plugin file had syntax errors. Here's what Chris said translated to German (and I would say the same): Hört sich an als würdest du ein Plugin für 0.10 laden, aber 0.9.1 benutzen. Habari 0.10 wurde auf PHP-Namespaces umgestellt, deshalb kan

[habari-users] Re: New theme: Sublimate

2013-08-01 Thread Konzertheld
too few! I meant not enough themes without sidebars! :D Am Donnerstag, 1. August 2013 12:18:19 UTC+2 schrieb Konzertheld: > > There are way too many themes without a sidebar, so thumbs up for that. :) > I like it. How do you create the navigation bars? Are they somehow > configur

[habari-users] Re: New theme: Sublimate

2013-08-01 Thread Konzertheld
There are way too many themes without a sidebar, so thumbs up for that. :) I like it. How do you create the navigation bars? Are they somehow configurable or auto-created or just plain HTML? There's an "m" missing in "nickname" in the comment area, btw. :) -- -- To post to this group, send em

[habari-users] Re: New theme: Manozouille

2013-07-23 Thread Konzertheld
Hi, thanks for sharing! I like it. It's very simple and clean, yet nice to look at and good to read. :) Am Dienstag, 23. Juli 2013 02:45:29 UTC+2 schrieb Kévin Legrand: > > Hello, > > I create a theme for a personal project and I thought it would be > interesting to share with the community and

[habari-users] Re: simple, because i'm a noob.

2013-06-19 Thread Konzertheld
Depending on what Habari version you use, this could also do what you want: page_selector( null, array( 'leftSide' => 2, 'rightSide' => 2, *'**hideIfSinglePage' => true* ) ); ?> -- -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send email

[habari-users] Re: simple, because i'm a noob.

2013-06-19 Thread Konzertheld
The obvious way is to check if there is only one page. You could get the page count in your theme.php and save it in a variable with $this->assign( 'pagecount', Utils::archive_pages( $theme->posts->count_all(), $items_per_page ) ); and then do a simple if($pagecount>1) before you use the page_s

Re: [habari-users] Child themes

2013-04-06 Thread Konzertheld
Thanks Owen, that helped. I expected the assets folder to work without the theme.php (as it does now with the change). The rest was clear, I just wanted to change some of the css. :) Am Sonntag, 7. April 2013 01:56:43 UTC+2 schrieb ringmaster: > > On 8/20/2012 5:53 PM, Guido Erlinger wrote: > >

[habari-users] Re: Child themes

2013-04-06 Thread Konzertheld
I'd like to bump this as I am experiencing the same while trying to make a child theme of Wazi in Habari 0.9. Am Montag, 20. August 2012 23:53:34 UTC+2 schrieb helpy: > > Hello, > > I tried to start working with child themes in the development version of > habari. > > According to the wiki one

Re: [habari-users] Moderator's spam report for habari...@googlegroups.com

2013-04-05 Thread Konzertheld
Weird. I already answered that and made him a coordinator. But that's not the first time a message from that thread disappears. Am Freitag, 5. April 2013 15:41:25 UTC+2 schrieb Chris Meller: > > > > > On Thu, Apr 4, 2013 at 10:09 PM, > > wrote: > >> This message is being sent to you because you

[habari-users] Re: Chinese support

2013-04-04 Thread Konzertheld
Do you mean a post title or the title of your Habari site? Which version of Habari are you using? If you use 0.9, please upgrade to 0.9.1 and check if the error persists. Am Montag, 25. März 2013 10:29:36 UTC+1 schrieb Christopher Meng: > > It seems when title contains chinese words it cannot be

[habari-users] Re: How to Integrate Habari with my website?

2013-04-04 Thread Konzertheld
Hi Kamran, yeah, parsing the atom feed would be the best way. It is the default way to get Habari content automated. Konzertheld Am Dienstag, 26. März 2013 09:59:23 UTC+1 schrieb Kamran: > > Hello everyone, > > I have made a blog <http://phonemart.pk/blog>using habari 0.9.

[habari-users] Re: I am a beginner on Habari and am having trouble installing it

2013-04-04 Thread Konzertheld
Hello, with Windows XP you should be able to extract the archive without any external programs. XP handles zip files as folders by default; if that is not the case, you should have some context menu entry saying "Extract all" or so. When unzipped, the files have to be uploaded with an FTP clien

[habari-users] Re: Translations

2013-04-03 Thread Konzertheld
You are now a coordinator of the french translation. Thank you! Am Mittwoch, 3. April 2013 13:52:25 UTC+2 schrieb Pierre-Yves Gillier: > > I could deal with french translations. My Transifex username is *pivwan.* > > On Monday, February 25, 2013 8:46:09 PM UTC+1, Matt Read wrote: >> >> We are swit

Re: [habari-users] Translations

2013-04-01 Thread Konzertheld
Well, it's not much effort, and it gives us coordinators for each language. Meaning: If someone volunteers here we can give him some higher privileges, so there's someone who's good with that language to have an eye on what other contributors to that language do. Like I am making sure the German

[habari-users] Re: Translations

2013-03-28 Thread Konzertheld
You are now a coordinator of the polish language and should be able to translate. Thank you! Am Mittwoch, 27. März 2013 23:52:57 UTC+1 schrieb Dawid Niedźwiedzki: > > I could deal with the Polish translation. My Transifex username is * > tiritto*. > > W dniu poniedziałek, 25 lutego 2013 20:46:09

Re: [habari-users] Help with a Theme

2013-03-05 Thread Konzertheld
Hi Kamran, Habari does not track post views itself. There are plugins like https://github.com/habari-extras/relativelypopular - you might want to have a look at them. Feel free to extend them to your needs. You can get the comments and with that the number of comments per post by Comments::get

Re: [habari-users] Re: Disable comments per default

2013-01-19 Thread Konzertheld
There is a plugin called silencer that disables comments for all newly published posts, if that helps. There is also one that closes comments for posts older than a certain time. I don't remember it's name unfortunately. You could combine them to disable comments for all your posts. Am Samstag,

Re: [habari-users] post date and time missing in edit view

2012-12-21 Thread Konzertheld
As an aside, for me, the language changes to "en" when set to default. It doesn't keep the value "default". But I'm running a 0.10-alpha, so that is propably not related. Also, even if the settings are empty, the fields in the manage posts view are not empty, though I have no idea where the for

[habari-users] Re: Move to Transifex from Luanchpad

2012-11-14 Thread Konzertheld
I like the fact you can search either the translated or the original strings. Launchpad didn't offer that and it annoyed me from time to time. Also, it allows me to login with Google. And apart from that, it looks clean and nice and it's as easy to translate strings there as in Launchpad. I lik

Re: [habari-users] Event content disappears

2012-08-18 Thread Konzertheld
ldude: > > Good to hear it. > > That line shouldn't be there :-) It was part of my attempts to get > presets working and I forgot to remove it :-) > > > On Thu, Aug 16, 2012 at 10:55 PM, Konzertheld > > > wrote: > >> Thanks, that worked. What di

Re: [habari-users] Event content disappears

2012-08-16 Thread Konzertheld
> > https://github.com/lildude/linkblog/commit/0e5f0b9e9086a831c2888e0df38f32e6858939e3 > > You probably need to do the same thing for your "event" content type. > > HTH > Colin > > > On Wed, Aug 15, 2012 at 10:29 PM, Konzertheld > > > wrote: > >> Hi community, >> >>

[habari-users] Event content disappears

2012-08-15 Thread Konzertheld
is not theme related. Charcoal also does not display them. The date is correct. I just published the latest one, the date is today, it should be on top but it is not. I have no idea what happened. If you have any ideas please let me know. Konzertheld -- To post to this group, send email to habari-us

[habari-users] Re: Log is always empty

2012-07-12 Thread Konzertheld
the scheduling... no idea what happened but I truncated the cronjob table and a bit later the problem fixed itself. Am Samstag, 7. Juli 2012 01:59:11 UTC+2 schrieb Konzertheld: > > Yep, already did that (no effect). > > Am Donnerstag, 5. Juli 2012 14:41:58 UTC+2 schrieb mikelietz:

[habari-users] Re: Log is always empty

2012-07-06 Thread Konzertheld
Yep, already did that (no effect). Am Donnerstag, 5. Juli 2012 14:41:58 UTC+2 schrieb mikelietz: > > Have you checked the habari__logs table for corruption or REPAIRed it? > http://dev.mysql.com/doc/refman/5.1/en/repair-table.html > > On Monday, July 2, 2012 1:59:35 PM UTC-4, Ko

Re: [habari-users] Re: Log is always empty

2012-07-04 Thread Konzertheld
oderating a comment? > > > On Wed, Jul 4, 2012 at 4:25 PM, Konzertheld wrote: > >> Minimum severity is information. >> >> I think I don't have access to the error logs. At least there is nothing >> named "apache" or "error" in the logs directory,

[habari-users] Re: Log is always empty

2012-07-04 Thread Konzertheld
3 UTC+2 schrieb mikelietz: > > What is the Minimum Severity set to on your Options page? > > Does anything show up in the server error logs? Are you using a database > prefix (like 'habari__')? > > On Monday, July 2, 2012 1:59:35 PM UTC-4, Konzertheld wrote: >> &

[habari-users] Log is always empty

2012-07-02 Thread Konzertheld
nymore (do not get published). I had both problems before but can't remember if there was a real fix or if it just disappeared... Regards Konzertheld -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send email to habari

[habari-users] 404 fallback

2012-01-08 Thread Konzertheld
r a bug? Header and footer are included and between them there is a raw output which is definitely not made by me. Greetings Konzertheld -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send email to habari-users-unsubscr...@googlegrou

[habari-users] Re: domain name

2011-11-27 Thread Konzertheld
Hey alice, could you give us the link to your site (old and new, if possible)? Also make sure your .htaccess is configured correctly. If you need help with .htaccess, just ask. Did I get it correctly the site shows up with your theme and title and everything but no entries? So everything is fin

Re: [habari-users] Re: Core dash modules do not appear in plugin list

2011-09-29 Thread Konzertheld
I now deactivated all my plugins which took my felt an hour, the active plugin list is now no longer shown and the database entry looks like this: a:1:{s:15:"CoreDashModules";s:58:"/system/plugins/coredashmodules/coredashmodules.plugin.php";} I'll now go and re-activate all the plugins and live

[habari-users] Re: 0.7.x plugin compatibility

2011-09-28 Thread Konzertheld
As every developer may gain access to the SVN, there already is something like a central repo. The devs just have to put their stuff there. There is also a wiki page but it's outdated too because we have to rely on the devs to tell us when they made something. It's not that nobody wants it, it's

Re: [habari-users] Re: Core dash modules do not appear in plugin list

2011-09-26 Thread Konzertheld
Thanks for your reply. The latest log activity block has a config option for the number of items, I think. Possible it was removed somewhen. The point is, I don't see the plugin in my plugin list at all. Though it appears in the database. Here is the entry, maybe you know how to tell if somethin

[habari-users] Re: 0.7.x plugin compatibility

2011-09-26 Thread Konzertheld
The upper link should contain the most recent versions. A lot of plugins work with 0.7 when they are modified a bit (upgrade the xml, a work of less than a minute) so you should give it a try. If you don't know how to upgrade the xml I'm sure I or someone else will find the time to explain it to

[habari-users] Re: Core dash modules do not appear in plugin list

2011-09-26 Thread Konzertheld
I updated to the latest version from Git yesterday, so it's some 0-8-alpha. -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send email to habari-users-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.co

[habari-users] Re: Core dash modules do not appear in plugin list

2011-09-22 Thread Konzertheld
Yes, everything is fine except I can't configure them because they are not on the plugin page. On Sep 22, 8:19 am, Amanda Moore wrote: > Do they show up on your dashboard? -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send email to habari

[habari-users] Core dash modules do not appear in plugin list

2011-09-04 Thread Konzertheld
Hey there. The title says all... when I open the admin plugins page, Core Dash Modules do not appear there although activated and appearing on the System Information page. Any ideas? Regards Konzertheld -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from

[habari-users] Re: Is Habari Suitable For A Middle School Student Newspaper?

2011-08-25 Thread Konzertheld
nctionality in that way. Hope that helps. I don't know which of the features that are currently not available are planned for the future. One of the core developers might answer here. Konzertheld On 24 Aug., 16:42, luke wrote: > Good day everybody. > > I am helping a middle

[habari-users] Re: Pingback: Source url does not exist

2011-08-14 Thread Konzertheld
The error is reproducible. The target blog is Wordpress. And by the way, I tried to ping a Habari blog before - nothing happened (the ping was simply not sent without comment in the logs). -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send e

[habari-users] Pingback: Source url does not exist

2011-08-14 Thread Konzertheld
tried to ping. Any ideas? Konzertheld -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send email to habari-users-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/habari-users

[habari-users] Re: Picasa silo not working: connection to Google fails

2011-05-29 Thread Konzertheld
Currently, it's working again... but sometimes the connection still fails. Maybe it's a problem on Google's side, but it's Google, so that's propably not the reason... On 16 Mai, 15:35, Apache wrote: > Just wondering how people are getting on with the Picasa silo - my business > partner created t

[habari-users] Re: Table habari__sessions is marked as crashed and should be repaired

2011-05-19 Thread Konzertheld
kely the only one with a > problem. > > > > > > > > > -------- > > >    Konzertheld <mailto:konzerth...@konzertheld.de> > > May 19, 2011 11:10 AM > > > Today, when I accessed /admin,

[habari-users] Table habari__sessions is marked as crashed and should be repaired

2011-05-19 Thread Konzertheld
Today, when I accessed /admin, the Habari setup came up. As Habari has already been installed, I tried to make a database backup because something is obviously wrong. Doing so, I got this message: Table './mydatabasename/habari__sessions' is marked as crashed and should be repaired The frontend i

[habari-users] Re: Cronjob problems

2011-04-26 Thread Konzertheld
Hey... um... wonder healing... the problem just... disappeared. Very strange. It was there for weeks, I reproduced it again and again and now it is gone. Weird. Thanks for your reply anyway. Konzertheld On 26 Apr., 07:53, Colin wrote: > Hi Konzertheld > > You are right, Habari's

[habari-users] Re: Picasa silo not working: connection to Google fails

2011-04-26 Thread Konzertheld
t;tmp" does not exist on my webspace. I can't activate Curl. It's only a hosted webspace acount. There is a setting url_fopen which I can change (but does not affect my problem). Konzertheld On 26 Apr., 08:50, Colin wrote: > Hi Konzertheld > > I've tested thi

[habari-users] Cronjob problems

2011-04-25 Thread Konzertheld
s so I don't believe there are actual cronjobs installed. Again, any idea is appreciated. I don't even know where to start this time, as I have no idea what is going wrong. Regards, Konzertheld -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from thi

[habari-users] Picasa silo not working: connection to Google fails

2011-04-25 Thread Konzertheld
ing a theme integrating with it and was planning to extend the silo's functionality... Regards, Konzertheld -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send email to habari-users-unsubscr...@googlegroups.com For more options, visit

[habari-users] Re: Text fields in plugin settings are escaped

2011-03-13 Thread Konzertheld
( strtolower( __CLASS__ ) ); >   $ui->append( 'textarea', 'txtarea', ...    //  Append the text area >   $ui->txtarea->raw = TRUE;               // Force it's contents to be saved > without any processing > > HTH > Colin > > On Thu, Mar 3, 2011

[habari-users] Re: Scheduled posts are no longer published

2011-03-13 Thread Konzertheld
27;s the scheduler/cronjob. The > > problem seems to be that Habari thinks that my clock is 06.xx instead > > of 09.00 causing the scheduler do act up. If I instead of setting the > > scheduled time to 09.43 I set it to 06.43 it is published as it > > should. > > &

[habari-users] Scheduled posts are no longer published

2011-03-12 Thread Konzertheld
ished when they are saved again after scheduling them (with the save button instead of the publish button), but atm it does not matter. They simply stay as scheduled. No errors in the logs. Any idea? Konzertheld -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe

[habari-users] Re: partyTime plugin

2011-03-06 Thread Konzertheld
Hey. Yeah, it's possible. Look at this: $params["content_type"] = Post::type('event'); $params["status"] = Post::status('published'); $params["nolimit"] = ""; // disables limit $params["has:info"] = "eventdate"; $params["orderby"] = "ABS(info_eventdate_value) DESC"; $events = Posts::get($params);

[habari-users] Re: Text fields in plugin settings are escaped

2011-03-03 Thread Konzertheld
Is there really nobody who has an idea about this? On 7 Jan., 04:23, Konzertheld wrote: > Hi. > I'm developing a plugin called Bricks which provides text snippets. > Better: should provide - I'm surrently stucked at saving text field > values from the plugin config

[habari-users] Text fields in plugin settings are escaped

2011-01-06 Thread Konzertheld
ds are flying around somewhere... but I'll create a ticket for that after checking. Regards, Konzertheld -- To post to this group, send email to habari-users@googlegroups.com To unsubscribe from this group, send email to habari-users-unsubscr...@googlegroups.com For more options,

[habari-users] Re: Need rights to upload new plugin

2010-11-28 Thread Konzertheld
s/plugins/foo/trunkhttps://svn.habariproject.org/habari-extras/plugins/foo/tagshttps://svn.habariproject.org/habari-extras/plugins/foo/branches > > Of course replacing 'foo' with the name of the plugin. > > On Nov 28, 2010, at 11:09 PM, Konzertheld wrote: > > > &g

[habari-users] Re: Need rights to upload new plugin

2010-11-28 Thread Konzertheld
ins/foo/branches > > Of course replacing 'foo' with the name of the plugin. > > On Nov 28, 2010, at 11:09 PM, Konzertheld wrote: > > > > > Hi, I made a new plugin and would like to commit it to the habari- > > extras svn. I already have write access to existi

[habari-users] Need rights to upload new plugin

2010-11-28 Thread Konzertheld
Hi, I made a new plugin and would like to commit it to the habari- extras svn. I already have write access to existing plugins, but I get 405 method not allowed when trying to create folders. Please grant me the rights I need. And, is there a guide on how to commit a new plugin? Do I have to creat