Adding a Blog

Permalink
Hi I'm aware this is not a blog cms as such, however could someone recommend the best solution to somehow intergrate into a current c5 site or point me in the right direction
Cheers!

claire
 
kutis replied on at Permalink Reply
kutis
and add external link to your sitemap in c5
PerryGovier replied on at Permalink Reply
PerryGovier
I'm sure people have done this before. Integrate wordpress as a subdomain? I'd like to hear what works and what doesn't.
Remo replied on at Permalink Reply
Remo
I'm usually fine with a simple RSS integration.

As far as I know no one ever did more than RSS so far. Integrating web application is always a bit tricky since the host and the guest application are sharing the same way of communication (GET, POST)...

Unless you want to use an ugly iframe or a simple rss integration you would need quite a lot of time to integrate it really nicely..
Lazza replied on at Permalink Reply
Lazza
If you are lucky or choose accurately your template. Here is the Gimp Italian site, which I administrate.http://gimpitalia.it/
As you can see both concrete5 and Wordpress share the same template, and with some css tweaks (and also a hacked navbar for wordpress) it's pretty the same thing.
Of course it's not the best thing to use two different cms because you have a lot of separated stuff, but it's ok.
Not to mention that there are a lot more addons available with one click in wordpress, and they are all free as in beer and FOSS.
jason1 replied on at Permalink Reply
i would like very much to do something similar but i want to install a rich text editor very similar to what http://www.writerscafe.org has....if you sign up and go to add writing you will see what i mean and i am brand new to this cement cms. so i am a bit lost as to how to get my add ons such as the log in to work. i want to set up a community basically and have video uploads etc. my site ishttp://www.griffinfilm.com
what is your advice to get me going here.
Lazza replied on at Permalink Reply
Lazza
Mmm... I think I don't have the technical knowledge for helping you about this.
jason1 replied on at Permalink Reply
i would like very much to do something similar but i want to install a rich text editor very similar to what http://www.writerscafe.org has....if you sign up and go to add writing you will see what i mean and i am brand new to this cement cms. so i am a bit lost as to how to get my add ons such as the log in to work. i want to set up a community basically and have video uploads etc. my site ishttp://www.griffinfilm.com
what is your advice to get me going here.
plschneide replied on at Permalink Reply
plschneide
Hi I was planning on going the same route for WordPress and Concrete.

Did you add a "single page" in concrete to embed Wordpress? I have tried this and can't seem to get the wordpress to display anything (or rather the single page that is supposed to be Wordpress to display anything)

What did you do in Concrete to make Wordpress part of the structure?
Lazza replied on at Permalink Reply
Lazza
It's just an external link. Wordpress template is hacked (I mean, a hard-coded cut'n'paste) to have the same menu items. If I change the page structure in concrete5 I have to manually retouch it in Wordpress.
plschneide replied on at Permalink Reply
plschneide
I was hoping it was a tad more elegant, but that will work!
plschneide replied on at Permalink Reply
plschneide
I was hoping it was a tad more elegant, but that will work!
Lazza replied on at Permalink Reply
Lazza
I have a nice news for you. I managed to hack it a bit more to actually auto-update itself for the menu. BUT it's not so nice. I don't query the database because I find it a lot complex using Concrete5 behaviour, so I actually just grab the homepage source code and then parse it a bit. This code is inside my WP theme instead of the proper Wordpress menubar generator:
<?php
$navurl = htmlentities(file_get_contents("YOURURLHERE"));
preg_match('/&lt;ul class=&quot;nav-header&quot;&gt;(.*?)&lt;\/ul&gt;/',$navurl,$navarray);
$purified = preg_replace('/class=&quot;nav-selected first&quot;/','',$navarray[0]);
$purified = preg_replace('/class=&quot;nav-selected&quot; /','',$purified);
$purified = preg_replace('/li class=&quot; &quot;&gt;&lt;a href=&quot;\/blog\/&quot;/','li class=&quot;current_page_item&quot;><a href=&quot;/blog/&quot;',$purified);
echo html_entity_decode($purified)."</ul>";
?>
Mnkras replied on at Permalink Reply
Mnkras
i might work on a hacky bridge between WP and C5 no ETA on it tho