User Blog Mod

Misc MOD Downloads for phpBB3 -- Any MOD that does not fit into any other category
Forum rules
Image Please feel free to download any MOD's here, support for each MOD is located it's own thread.

To post your own MOD, please first read the MOD Guidelines

Re: User Blog Mod

Postby autinhyeu » 13 Oct 2008, 12:07

Great ;) Thanks you for this MOD.
But i cant change path to /blog/
i have installed phpBB3 in root folder (http://www.autinhyeu.com), now, i want path of blog is http://www.autinhyeu.com/blog/ with rewrite url ;)
i have do:

1. upload file in "Change Blog Path" folder to root/
2. edit file .htacces in root/ same instruction of you :D
3. Edit PHPBB_ROOT_PATH in 3 file same below:
blog.php is
Code: Select all
define('PHPBB_ROOT_PATH', './');
include(PHPBB_ROOT_PATH . 'blog.' . substr(strrchr(__FILE__, '.'), 1));

blog/blog.php is
Code: Select all
define('PHPBB_ROOT_PATH', './../');
include(PHPBB_ROOT_PATH . 'blog.' . substr(strrchr(__FILE__, '.'), 1));

adn blog/view/blog.php is
Code: Select all
define('PHPBB_ROOT_PATH', './../../');
include(PHPBB_ROOT_PATH . 'blog.' . substr(strrchr(__FILE__, '.'), 1));

4. i have edit config.php file with:
Code: Select all
Find:
@define('PHPBB_INSTALLED', true);

After, Add:
@define('BLOG_ROOT', '');

5. Click "Yes" option in "SEO urls"

But it dont work :(

Please help me!!!
Thanks you :)
autinhyeu    
Cadet I
Cadet I
 
Posts: 12
Joined: 18 Apr 2008, 04:40
Location: Vietnamese
Favorite Team: Inter Milan
Gender: Male
phpBB Knowledge: 3


Re: User Blog Mod

Postby ameisez » 21 Oct 2008, 08:26

After site transfer, my blog menu becomes vertically centered.

Any idea how to put it back to top.
blogbug.jpg
BLOG MENU PLACEMENT ERROR
ameisez    
Lieutenant
Lieutenant
 
Posts: 241
Joined: 23 Jan 2008, 01:15
Gender: Male
phpBB Knowledge: 2

Re: User Blog Mod

Postby EXreaction » 21 Oct 2008, 09:56

Refresh your theme.
My phpBB3 Mods: Advertisement Management | Anti-Spam ACP | Auto Database Backup | Enable HTML | Advanced Subscriptions | Custom Profile Groups | From Author PM List | FAQ Manager | Forum Anniversary List | One Click Ban | Forum Sponsors | Smilies Categories | Drag 'n Drop Forum List | Soft Delete

Interested in becoming a Jr MOD Validator and helping out validation of mods @phpBB.com? Apply here
User avatar
EXreaction    
Supporter
Supporter
 
Posts: 1316
Joined: 03 Jun 2006, 09:10
Location: Plymouth, WI
Gender: Male

Re: User Blog Mod

Postby ameisez » 21 Oct 2008, 12:05

I did, but still its the same. I also tried refreshing the board itself but still the same.
ameisez    
Lieutenant
Lieutenant
 
Posts: 241
Joined: 23 Jan 2008, 01:15
Gender: Male
phpBB Knowledge: 2

Re: User Blog Mod

Postby Sniper_E » 21 Oct 2008, 12:26

If you want to get the left menu up to the top of your page you can edit the template/blog/view_blog_main.php

FIND
Code: Select all
      <td id="left_menu">
REPLACE WITH
Code: Select all
      <td id="left_menu" style="vertical-align: top">
Is that what you're asking ameisez? You could always add valign: top; to the #left_menu class.
Which way would EXreaction do it?
Image
No is NEVER an Option and NEVER is the only Option when it comes to Giving Up!
User avatar
Sniper_E    
STG Jedi Master
STG Jedi Master
 
Posts: 6981
Joined: 31 May 2006, 06:29
Location: Shreveport, LA
Favorite Team: The STG Team
Gender: Male
phpBB Knowledge: 6

Re: User Blog Mod

Postby ameisez » 21 Oct 2008, 14:46

Sniper_E wrote:If you want to get the left menu up to the top of your page you can edit the template/blog/view_blog_main.php

FIND
Code: Select all
      <td id="left_menu">
REPLACE WITH
Code: Select all
      <td id="left_menu" style="vertical-align: top">
Is that what you're asking ameisez? You could always add valign: top; to the #left_menu class.
Which way would EXreaction do it?

As expected. Another solution to the problem from you. :good:

Thanks a lot!
ameisez    
Lieutenant
Lieutenant
 
Posts: 241
Joined: 23 Jan 2008, 01:15
Gender: Male
phpBB Knowledge: 2

Re: User Blog Mod

Postby EXreaction » 21 Oct 2008, 19:34

If refreshing your theme did not work likely something was broken/missing when you transfered the files.

There are many other CSS attributes other than that which will make it display strangely.
My phpBB3 Mods: Advertisement Management | Anti-Spam ACP | Auto Database Backup | Enable HTML | Advanced Subscriptions | Custom Profile Groups | From Author PM List | FAQ Manager | Forum Anniversary List | One Click Ban | Forum Sponsors | Smilies Categories | Drag 'n Drop Forum List | Soft Delete

Interested in becoming a Jr MOD Validator and helping out validation of mods @phpBB.com? Apply here
User avatar
EXreaction    
Supporter
Supporter
 
Posts: 1316
Joined: 03 Jun 2006, 09:10
Location: Plymouth, WI
Gender: Male

Re: User Blog Mod

Postby ameisez » 21 Oct 2008, 19:51

Yes, I think you're right.

I am still checking actually if all files were properly uploaded because I leave it uploading and the next day the PC was restarted due to auto windows update. i failed to see the log if it was all properly uploaded.

So far this is one of the problem I saw. Nothing major so far. If something emerge I will let you know.

Thanks for your wonderful support on your MOD.

By the Way, do you have instruction on how to make random and recent blog to appear as blocks in Board3Portal by Avaren.

Thanks
ameisez    
Lieutenant
Lieutenant
 
Posts: 241
Joined: 23 Jan 2008, 01:15
Gender: Male
phpBB Knowledge: 2

Re: User Blog Mod

Postby EXreaction » 21 Oct 2008, 21:44

You can try the javascript feed.
My phpBB3 Mods: Advertisement Management | Anti-Spam ACP | Auto Database Backup | Enable HTML | Advanced Subscriptions | Custom Profile Groups | From Author PM List | FAQ Manager | Forum Anniversary List | One Click Ban | Forum Sponsors | Smilies Categories | Drag 'n Drop Forum List | Soft Delete

Interested in becoming a Jr MOD Validator and helping out validation of mods @phpBB.com? Apply here
User avatar
EXreaction    
Supporter
Supporter
 
Posts: 1316
Joined: 03 Jun 2006, 09:10
Location: Plymouth, WI
Gender: Male

Re: User Blog Mod

Postby ameisez » 22 Oct 2008, 00:30

Uhmmnn... :blink:

sorry... no idea what that means... :grin:
ameisez    
Lieutenant
Lieutenant
 
Posts: 241
Joined: 23 Jan 2008, 01:15
Gender: Male
phpBB Knowledge: 2

PreviousNext

Return to Miscellaneous MODs, Hacks and Downloads

Who is online

Users browsing this forum: YandexBot and 14 guests

cron