Nema niekto skusenosti s tymto novym blogom lebo som si ho zaplatil a ked som ho nainstaloval ...sice mozem v adminovi pisat prispevky do blogu ale zobrazi sa mi az ked zadam toto:
Code: Select all
http://www.''yoursite''.com/index.php?route=information/blog
###### INSTALL INSTRUCTIONS ########
1) Upload the files from the upload folder to your server. No files will be overwritten.
2) Modify admin/view/template/common/header.tpl as below:
Find this:
<li><a href="<?php echo $information; ?>"><?php echo $text_information; ?></a></li>
And add this below it:
<li><a href="<?php echo str_replace('information', 'blog', $information); ?>"><?php echo str_replace('Information', 'Blog', $text_information); ?></a></li>
3) In the admin edit your usergroup to have permissions on catalog/blog, if it doesn't already. This is under System -> User Groups. Usually Top Administrator
4) Under Catalog -> Blog, create your first blog entry.
5) Add a link on your site to
Code: Select all
http://www.yoursite.com/index.php?route=information/blog
6) Optionally, you may want to include your blog entries in your google sitemap:
Find this:
$this->load->model('catalog/information');
Add this above it:
//BLOG EXTENSION SITEMAP INCLUSION
$this->load->model('catalog/blog');
$blogs = $this->model_catalog_blog->getBlogs();
foreach ($blogs as $blog) {
$output .= '<url>';
$output .= '<loc>' . str_replace('&', '&', HTTP_SERVER . 'index.php?route=information/blog&blog_id=' . $blog['blog_id']) . '</loc>';
$output .= '<changefreq>weekly</changefreq>';
$output .= '<priority>0.5</priority>';
$output .= '</url>';
}
//END BLOG EXTENSION SITEMAP INCLUSION
Congratulations, installation is complete

[/size]
Vsetko som robil podla tohto navodu a aj tak nic, ak by mal niekto skusenost tak prosim poradte...Velke diky...