« August 2010 »
S M T W T F S
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30 31        

This is hot

Upgrade VIA Epia-Board to current 2.6.28.7
600 times viewed
23.02.2009 18:41
t3blog Update to version 0.8.1 (Security, Bugfixes)
156 times viewed
03.02.2010 14:33
LaTeX Font Selection
83 times viewed
29.01.2010 17:17
linux.bigga.de now with RSS Feed
81 times viewed
25.11.2009 09:36

[blog...]

Currently the posts are filtered by: t3blog
Reset this filter to see all posts.

19.06.2010
20:37

Link t3blog and tt_news Articles on Your TYPO3-Site

Quite often I want to set a link to an article I wrote somewhere else on this TYPO3 page. This is no problem, if this article is on a separate page with a unique ID.

 

But howto set a link to a t3blog article or a tt_news article?

 

As usual, there are several possibilities:

 

I tried them all. To link a tt_news article is no problem with all of it. But howto link a t3blog-article? This seems to be not so easy if you're using realurl!

[...]

By adding the following Typoscript to your page TSconfig (Page->Edit->Options), tinymce_rte shows you the articles and t3blog-categories when selecting the blog-record folder (in my case ID is 3):

RTE.default {  
linkhandler {      
tx_t3blog_post {          
default { 
# instead of default you could write the id of the storage folder            
# id of the Single News Page             
parameter = 3            
additionalParams = &tx_t3blog_pi1[blogList][showUidPerma]={field:uid}
additionalParams.insertData = 1
select = uid,title as header,hidden
sorting = crdate desc
}
}        
       tx_t3blog_cat {            
default {                
parameter = 3                
additionalParams = &tx_t3blog_pi1[blogList][category]={field:uid}                
additionalParams.insertData = 1                
select = uid,catname as header,hidden                
sorting = crdate desc            
}

}
}

Unfortunately it is not possible to select the tags from the menu. This is because all tags of one post are stored in the tagClouds field of the tx_t3blog_post table. So still have to add an external link to your page and add e.g. "blog/tags/typo3" if you're using realurl, your blog is located on page "blog" and you want to select the "typo3" tag.

back

15.04.2010
17:45

Howto Change Language of tx-pagebrowse by DMITRY DULEPOV

Recently, t3blog changed with 0.8.3 the pagebrowser and requires now to install tx-pagebrowse by Dmitry Dulepov.

 

Using the new pagebrowser needs to change your CSS settings otherwise it looks like the default and not like you maybe used to have it.

 

On my German Blog, www.dresden-west.de, the pagebrowser remains English and I now examined why. The solution is the missing language file. It's not comming with the extension itself. But you have to pull it manually:

 

  1. goto the Extension Manager
  2. select "Translation handling"
  3. select your languages you want to pull (e.g. "German")
  4. press "Update from Repository"

Now it should be in German or whatever language you have selected.

 

back

03.02.2010
14:33

t3blog Update to version 0.8.1 (Security, Bugfixes)

After a long time, snowflake updated yesterday the Typo3 t3blog extension. The version number jumped from 0.6.2 to 0.8.0 and immediately after to 0.8.1.

What a step!

 

Maybe the security vulnerabilities found in t3blog were the reason for submitting the fixed and updated version. 

 

New is a view for the most read posts. Nice feature, but there seems to be missing some parts. E.g. in the widget selector the title is missing and it only works as pi2-widget if you add the following line to your template:

plugin.tx_t3blog_pi2.views < plugin.tx_t3blog_pi1.views

 

The page browser changed completely and uses now the extension pagebrowse. Ok, I had to adjust the CSS settings, but now it's working again.

 

Also "my bug" has been fixed - almost. There remains a problem with the category-tags. I fixed it locally. Let's hope that snowflake keeps maintaining the extension.

 

In the updated documentation is also a reference to a blog near by me:

http://blog.slub-dresden.de

 

Update 2010-02-04:

I've added two bug reports to bugs.typo3.org:

  • Bug 13425: this reports about the views-widget issues I wrote in this post. And of course I added a patch.
  • Bug 13426: another problem with the widget usage. In this case the blogList-widget and only if you use the storagePid. A patch fixes this problem (at least for me).

 

Update 2010-02-10:

My two patches are accepted by snowflake and will be included in next release: Bug 13425Bug 1342. Thank you Dominic!

 

 

back

02.12.2009
18:15

Bugfix for t3blog RSS feed showing wrong category names

Recently I discovered RSS feeds as cool feature of t3blog. So I imported this blog as feed in my main website www.bigga.de. But I wondered about the category names above the titles. It seemed to be switched "linux" and "typo3".

 

Today I got deeper in the code and found the reason for this. The category names were not switched but totally wrong because it took the amount of categories (you may assign multiple to one blog entry) as selector for the category name in table tx_t3blog_cat.

 

This maybe right in former times but in current release 0.6.2 you have to join table tx_t3blog_post_cat_mm as well.

 

I fixed this issue for me and made a bug report for Typo3 on bugs.typo3.org

 

You find my simple patch also here.

 

back

25.11.2009
09:36

linux.bigga.de now with RSS Feed

Recently I added the RSS widget of t3blog to my blog. Now you may subscribe to this RSS feed (see on the left or on top in in your browser).

 

Because the configuration was a little tricky (as usual) I want share my template Typoscript setup settings with you:

plugin.tx_t3blog_pi2 {
  rss {
    generator=T3Blog
    feedTitle= Linux Typo3 and other Pains
    feedCopyright= Alexander Bigga
    feedManagingEditor= Alexander Bigga
    feedWebMaster= Alexander Bigga
    feedLink= "http://linux.bigga.de/blog/"
    feedDescription= [ daily hacking ]
    feedImage = "http://linux.bigga.de/typo3conf/ext/t3blog/icons/rss.png"
    postItemCount=5
    list.5 >
    list.10 >
    list.20 >
    list.40 >
  } 
}

 

xmlnews = PAGE
xmlnews {
  typeNum = 100
  config {
    disableAllHeaderCode = 1
    additionalHeaders = Content-type:text/xml
    linkVars = L
    no_cache = 1
         xhtml_cleaning = 0
         admPanel = 0
  }
  10 = USER
  10 {
    # Call the user function
    userFunc = tx_t3blog_pi1->main
    widget.rss < plugin.tx_t3blog_pi2.rss
    template = TEXT
    template.field = rss
  }
page.headerData.500 = TEXT
page.headerData.500.value = <link rel="alternate" type="application/rss+xml" \
      title="RSS-Feed" href="http://linux.bigga.de/blog/rssType/2.0/rssContent/Posts/rss.xml" /> 
 

back

[ 22.07.2010 ]