Log in Register FAQ Memberlist Search Welcome to RCF - WHF Forum Index
alt : test.swf
Welcome to RCF - WHF
4fx3.gif 
calendar_open_closeCalendar 
Blog MOD
Post new topic   Reply to topic View previous topic :: View next topic
Goto page: 1, 2  Next
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support Add To Bookmarks
Blog MOD
PostPosted: 12/15/2006 12:02 AM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 PM
Location: Klang, Malaysia
malaysiC.gif
Nightrider , can i know does this MOD can install by EM ? Or need to install the MOD with manually?

The Blog Mod (old mod Forum Weblogs Mod)
(Current Version - 0.2.3, Released May 18, 2005)

http://www.phpbb.com/phpBB/viewtopic.php?t=226958&postdays=0&postorder =asc&start=0

I was download and upload into my FTP admin/mod filez. Just want to know how to using the EM to install this MOD?
Back to Top
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: Blog MOD
PostPosted: 12/16/2006 1:00 AM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 PM
Location: Klang, Malaysia
malaysiC.gif
I got a error msg after i tranfres all blog mod files into my FTP. I didn't using the easy mod to install since this mod are no have the EasyMod installation setup.The error msg is at my MyphpAdmin.. SQL ERROR MSG

Code:
Warning: Cannot modify header information - headers already sent by (output started at /usr/local/cpanel/base/3rdparty/phpMyAdmin/libraries/header_meta_style .inc.php:27) in /usr/local/cpanel/base/3rdparty/phpMyAdmin/libraries/common.lib.php on line 1154
Back to Top
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: Blog MOD
PostPosted: 12/16/2006 1:12 AM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 PM
Location: Klang, Malaysia
malaysiC.gif
I got another msg on my forum adminstration panel..when i click the blog admin button..it got a error msg :

Code:
phpBB : Critical Error

Could not query config information

DEBUG MODE

SQL Error : 1146 Table 'wtfone_phpb1.WEBLOG_CONFIG_TABLE' doesn't exist

SELECT * FROM WEBLOG_CONFIG_TABLE

Line : 59
File : weblogs_common.php
Back to Top
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: Blog MOD
PostPosted: 12/16/2006 6:59 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:15 PM
Location: St Pete, FL
peace.gif
Ok, try this:

OPEN
weblogs_common.php

FIND
Code:
include($phpbb_root_path . 'language/lang_' . $use_lang . '/lang_weblog_main.' . $phpEx);

AFTER ADD
Code:
include_once($phpbb_root_path . 'includes/constants.'.$phpEx);

Save and upload to your includes folder...

headbang
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: Blog MOD
PostPosted: 12/17/2006 5:29 AM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 PM
Location: Klang, Malaysia
malaysiC.gif
Nightrider, i add the code edi, still having that problem.
Back to Top
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: Blog MOD
PostPosted: 12/17/2006 5:49 AM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:15 PM
Location: St Pete, FL
peace.gif
No, you have a different problem now.  If you notice in your error message above, the WEBLOG_CONFIG_TABLE is upper case, which is a constant that wasn't being assigned because the constants.php file wasn't included.  Now that the constant is assigned, the error message is different:

Code:
phpBB : Critical Error

Could not query config information

DEBUG MODE

SQL Error : 1146 Table 'wtfone_phpb1.phpbb_weblog_config' doesn't exist

SELECT * FROM phpbb_weblog_config

Line : 60
File : weblogs_common.php

So now this tells you that you failed to run the included db_update.php file before completing the MOD install.  If you had used EM, it would have run the SQL queries included in the MOD script.  So now to complete the MOD install, you need to upload the db_update.php file to your phpBB forum folder root and run it from your browser.  Once the database modifications have been successful, you can delete the db_update.php file...

munky2
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: Blog MOD
PostPosted: 12/17/2006 6:35 AM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 PM
Location: Klang, Malaysia
malaysiC.gif
Nightrider wrote:
No, you have a different problem now.  If you notice in your error message above, the WEBLOG_CONFIG_TABLE is upper case, which is a constant that wasn't being assigned because the constants.php file wasn't included.  Now that the constant is assigned, the error message is different:

Code:
phpBB : Critical Error

Could not query config information

DEBUG MODE

SQL Error : 1146 Table 'wtfone_phpb1.phpbb_weblog_config' doesn't exist

SELECT * FROM phpbb_weblog_config

Line : 60
File : weblogs_common.php

So now this tells you that you failed to run the included db_update.php file before completing the MOD install.  If you had used EM, it would have run the SQL queries included in the MOD script.  So now to complete the MOD install, you need to upload the db_update.php file to your phpBB forum folder root and run it from your browser.  Once the database modifications have been successful, you can delete the db_update.php file...

munky2


I can't complete the simple sub forum and blog mod..i don't get ur anwser.

~~~Headache~~~
Back to Top
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: Blog MOD
PostPosted: 12/17/2006 5:30 PM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:15 PM
Location: St Pete, FL
peace.gif
I already provided instructions above your message on how to complete The Blog MOD installation.  Once you do as a mentioned, The Blog MOD should be working correctly...

munky2
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Re: Blog MOD
PostPosted: 12/18/2006 11:18 PM Reply with quote
Citation
masteranu84
Citation
Posts 487
Word Cnt. 35,729
BDay Oct 3
Sign Libra
Sex Sex:Male
Joined: Oct 29, 2006
Local time: 5:15 PM
Location: Klang, Malaysia
malaysiC.gif
Nightrider wrote:
I already provided instructions above your message on how to complete The Blog MOD installation.  Once you do as a mentioned, The Blog MOD should be working correctly...

munky2


I forget to tell u , im manually copy the all blog mod file into my FTP ..not using the EM to install.
Back to Top
View user's profile Find all posts by masteranu84 Send private message   Visit poster's website Yahoo Messenger MSN Messenger Phoogle Map
Re: Blog MOD
PostPosted: 12/19/2006 3:39 AM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30757
Word Cnt. 2,628,690
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 1:15 PM
Location: St Pete, FL
peace.gif
So did you run the DB Update file that came with the MOD yet?  The MOD won't be fully installed until you update your database...

dontknow
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
 Post new topic  Reply to topic
Information
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum
All times are GMT - 5 Hours
Goto page: 1, 2  Next
Page 1 of 2


Add To Bookmarks

 
  
  


  Google

Powered by phpBB © 2001, 2005 phpBB Group

Page generation time: 0.093s (PHP: 63% - SQL: 37%) - SQL queries: 57 - GZIP disabled - Debug on