Thanks. Now it's okcanidev wrote: See this topic: http://www.canidev.com/viewtopic.php?f=22&t=362#p1387
Code: Select all
Open: includes/db/dbal.php
Find
<link href="' . $phpbb_root_path . 'adm/style/admin.css" rel="stylesheet" type="text/css" media="screen" />
Replace with
<link href="' . generate_board_url() . '/adm/style/admin.css" rel="stylesheet" type="text/css" media="screen" />
phpBB SEO Ultimate SEO URL v0.7.0
)
Code: Select all
<link href="' . $phpbb_seo->seo_path['phpbb_url'] . 'adm/style/admin_new.css" rel="stylesheet" type="text/css" media="screen" />
Hi,Steve E. wrote:Dear CaniDev,
I am trying out your cBB Blog. I have encountered a problem I can't fix. Perhaps because I had previously tried out a different blog mod (Blog/Knowledgebase Mod 1.0.0), the "blog" link in the header of my site always points wrong: it looks for http://www.mysite.com/blog.php instead of http://www.mysite.com/blog/. How can I fix the link? I can't even figure out where it is calling such a link.
I am running this in 3.0.12. I know you are only guaranteeing it for 3.0.11 but I thought I'd try it anyway.
Thank you.
Steve
var $pathname = 'blog/';
to var $pathname = '../blog/';
in phpbb/includes/hooks/hook_blog.php but when I go to mydomain/blog/install/ the installer says :What's the problem ?There was an error during installation that forces to cancel.
This error may be due to changes made to the files incorrectly on the forum or has corrupted files.
Code: Select all
'constants' => $phpbb_root_path . 'blog/includes/constants.' . $phpEx,
Code: Select all
'constants' => $phpbb_root_path . '../blog/includes/constants.' . $phpEx,
Well, blog/images/ folder is set to CHMOD 777 so it should be good... And I don't know what is "MOD Main Class".Need Requirements
[*]MOD Main Class.
[*]Writable folder "/blog/files/"
Code: Select all
if(file_exists($phpbb_root_path . "blog/includes/constants.$phpEx"))
Code: Select all
if(phpbb_is_writable($phpbb_root_path . "blog/files/"))