DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:blogtng

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
plugin:blogtng [2014-07-19 11:55] – [Bug and feature request] Klap-inplugin:blogtng [2023-09-01 16:14] (current) Klap-in
Line 3: Line 3:
 ---- plugin ---- ---- plugin ----
 description: A next generation blog plugin for DokuWiki description: A next generation blog plugin for DokuWiki
-author     : Gina Häußge, Michael Klier, Andreas Gohr+author     : Dokufreaks (previous authors: Gina Häußge, Michael Klier, Andreas Gohr)
 email      : freaks@dokuwiki.org email      : freaks@dokuwiki.org
 type       : syntax, action, helper type       : syntax, action, helper
-lastupdate : 2014-04-27 +lastupdate : 2023-02-16 
-compatible : 2013-05-10 "Weatherwax"2010-11-07 "Anteater"2011-05-25 "Rincewind""Angua"2012-10-13 "Adora Belle"+compatible : Hrun, Ponder Stibbons, Binky, Weatherwax, Anteater, Rincewind, Angua, Adora Belle
 depends    : sqlite depends    : sqlite
 conflicts  conflicts 
 similar    : blog, discussion, tag similar    : blog, discussion, tag
 tags       : blog, discussion, tags, sqlite, !discontinued tags       : blog, discussion, tags, sqlite, !discontinued
-securitywarning: Listings don't respect acls, pages that belong to a blog are displayed even if the current users can't access them+securitywarning: 
  
 downloadurl: https://github.com/dokufreaks/plugin-blogtng/zipball/master downloadurl: https://github.com/dokufreaks/plugin-blogtng/zipball/master
Line 27: Line 27:
 ===== Download and Installation ===== ===== Download and Installation =====
    
-Use the url of the download button above in the Plugin Manager. Or alternativelyclick this button to download a compressed  file.  Unpack the file in ''dokuwiki/lib/plugins'' and rename the resulting directory to give ''dokuwiki/lib/plugins/blogtng''+Search and install the plugin using the [[plugin:extension|Extension Manager]] 
 + 
 +Alternativelyrefer to [[:Plugins]] on how to install plugins manually in ''dokuwiki/lib/plugins/blogtng''
  
 ==== Dependencies ==== ==== Dependencies ====
 The next dependencies are required: The next dependencies are required:
  
-  - SQLite-Extension for PHP5. On Debian systems install with<code bash>aptitude install php5-sqlite</code>+  - SQLite PHP Extension. On Debian systems install with e.g. <code bash>aptitude install php7-sqlite</code>
   - The helper plugin [[Sqlite]]   - The helper plugin [[Sqlite]]
  
Line 572: Line 574:
  
 E. g. the following pages are using the BlogTNG-Plugin: E. g. the following pages are using the BlogTNG-Plugin:
 +  * [[http://adam.nz/blog/]] (English) (Jan-2016)
   * [[http://harpanet.com]] (English) (Jun-2013)   * [[http://harpanet.com]] (English) (Jun-2013)
   * [[http://www.andrwe.org]] (English)   * [[http://www.andrwe.org]] (English)
Line 579: Line 582:
   * [[http://www.rocking-minds.org]] (English)   * [[http://www.rocking-minds.org]] (English)
   * [[http://blog.slucas.fr]] (French, English)   * [[http://blog.slucas.fr]] (French, English)
-  * [[http://chrisge.org]] (German, English) 
   * [[http://www.heiko-barth.de/blog/]] (German)   * [[http://www.heiko-barth.de/blog/]] (German)
   * [[http://htrd.su/]] (Russian)   * [[http://htrd.su/]] (Russian)
   * [[http://blog.flower-platform.com]] (English)   * [[http://blog.flower-platform.com]] (English)
   * [[http://www.joebenimble.com/]] (English)   * [[http://www.joebenimble.com/]] (English)
- +  * [[http://ingegnerialibera.altervista.org/blog/doku.php]] (Italian)
  
 ===== Bug and feature requests ===== ===== Bug and feature requests =====
Line 667: Line 668:
         if ($this->entry['commentstatus'] == 'closed' || $this->entry['commentstatus'] == 'disabled') return;         if ($this->entry['commentstatus'] == 'closed' || $this->entry['commentstatus'] == 'disabled') return;
         if(!$this->commenthelper) {         if(!$this->commenthelper) {
-            $this->commenthelper =plugin_load('helper', 'blogtng_comments');+            $this->commenthelper = plugin_load('helper', 'blogtng_comments');
         }         }
         $this->commenthelper->tpl_form($this->entry['page'], $this->entry['pid']);         $this->commenthelper->tpl_form($this->entry['page'], $this->entry['pid']);
Line 688: Line 689:
 >> Did you see the question [[plugin:blogtng#How to disable toc]]? That will shine some light.  >> Did you see the question [[plugin:blogtng#How to disable toc]]? That will shine some light. 
 >>  --- [[user>Klap-in|Klap-in]] //2014-07-19// >>  --- [[user>Klap-in|Klap-in]] //2014-07-19//
 +>>> Sorry if my question wasn't clear...  I use the [[https://www.dokuwiki.org/template:mnml-blog | mnml-blog template]] with the ''blogtng'' plugin.  My problem is that none of the TOC's show.  I'm glad they don't show in the blog pages, but I would like to see them in regular pages, but I don't.  When I look at websites that use the same template, they don't seem to have that problem.  I looked at [[plugin:blogtng#How to disable toc]] but it doesn't help me. --- Patrick //2014/08/02//
 +>>>> Finally figured it out.  I needed to flip ''<?php tpl_content( false )?>'' to ''<?php tpl_content( true )?>''  in ''lib/tpl/mnml-blog/main.php'' --- Patrick //2015/04/11//
 +
 +
  
 +==== Cannot save with selected Blog ====
  
-==== How to put a comment on non blog page====+>:?: Since Release 2014-05-05a "Ponder Stibbons" the article can not be saved to selected Blog 
 +> THNX,--- Peter //2014/08/20//
  
->:?How to put a comment on non blog page? Release Last  +==== Tag link ==== 
-> Thanks,--- Briga //2014/07/18// +If I click on a tag the result page does not show all the articles with the stated tag. examplehttps://www.monjo.com/index?btng[post][tags]=film
-+
->> Using a different plugin, because your question is not in the scope of this plugin. See [[plugin:Discussion]] Plugin +
->> --- [[user>Klap-in|Klap-in]] //2014-07-19//+
plugin/blogtng.1405763715.txt.gz · Last modified: 2014-07-19 11:55 by Klap-in

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki