News:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu

Adk Blog (A blog system for each user)

Started by lucas-ruroken, August 30, 2010, 05:12:44 PM

Previous topic - Next topic

lucas-ruroken

David... the module is probably not active because... no user of your site has any topic in their blogs
Adk Portal 3.1 is coming....

Design your universe!

lucas-ruroken

The mod works fine with some portals (adk, sp, ez, tp). With the other portals... maybe it will require an adaptation
Adk Portal 3.1 is coming....

Design your universe!

Kindred

#522
ah... I discovered an issue with EZPortal as well..


// EzPortal main page
if ($ezpSettings['ezp_portal_enable'] == 1 && empty($board) && empty($topic) && !isset($_REQUEST['blog']))
{
require_once($sourcedir . '/EzPortal2.php');
return 'EzPortalForumHomePage';
}
// Action and board are both empty but blog is called... BLOG!
elseif (empty($board) && empty($topic) && isset($_REQUEST['blog']))
{
require_once($sourcedir . '/BlogAdminSettings.php');
return 'BlogMain';
}
// Action and board are both empty... BoardIndex!
elseif (empty($board) && empty($topic))
{
require_once($sourcedir . '/BoardIndex.php');
return 'BoardIndex';
}


note the addition of the "is it a blog" check to the ezportal homepage view...
&& !isset($_REQUEST['blog'])
and the change of the blog check to elseif instead of if

additionally, it seems that EZPortal (and I suspect others) does not respect the addition of mod actions other than the ones made by the same author (and thus hard coded)

I have found the table which controls the list of visible actions, but I have been (so far) unable to make it stop displaying the extra columns which I want turned off.
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

David111567

Quote from: lucas-ruroken on February 23, 2012, 07:48:08 AM
David... the module is probably not active because... no user of your site has any topic in their blogs

My apologies for not responding quicker....I just spent 4 days in the hospital.

To address the above....no user can CREATE a blog because it says it's inactive.  Also. this mod is on  2 other sites which HAD blogs....and now they're not accessable.  All are running SP. I've been using the mod for a very long time with SP with no issues until now.  Also...the formatting issue remains on all sites. The blogs RIGHT-SIDE blocks are all flushed to the extreme left (see screenshot, previous post)...and the formatting is way off.

However...when I uninstall the 3.0 version and re-install 2.0 version of the mod...there are no issues.

Love this mod.   I hope we can use it once again.

David

David111567

Quote from: Kindred on February 24, 2012, 12:36:27 PM
ah... I discovered an issue with EZPortal as well..

additionally, it seems that EZPortal (and I suspect others) does not respect the addition of mod actions other than the ones made by the same author (and thus hard coded)


Would that explain some of the things I'm seeing as well?  Perhaps the way it's wrapping is due to a conflict with the portal and the way IT wraps as well? I'm not PHP savvy as you are, I think. I know a lot...but...not as much as I would like to.


sdd

Quote from: lucas-ruroken on February 23, 2012, 07:49:39 AM
The mod works fine with some portals (adk, sp, ez, tp). With the other portals... maybe it will require an adaptation
TinyPortal not work.

Kindred

yes, sdd... I suspect that any portal which is not designed with the blog in mind will have the same problem that I noted for ezportal.

Yes, david... there could be problems wrapping this inside the portal. As I said, ezportal seems to ignore that the blog is a spearate action and displays it with the modules defined for the portal homepage.
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

bojanbgrd

Quote from: lucas-ruroken on February 22, 2012, 12:15:36 PM
Quote from: Billy boy on February 22, 2012, 08:52:19 AM
Oh, sorry.. Here it is
Thank you :)

Attached...


Here's my feed...Still the same error :(((( 

QuotePHP Fatal error:  Call to undefined function checkNotify() in /home/astroriz/public_html/index.php on line 179

Thank you anyway :)

David111567

Quote from: Kindred on February 26, 2012, 06:12:37 PM
Yes, david... there could be problems wrapping this inside the portal. As I said, ezportal seems to ignore that the blog is a spearate action and displays it with the modules defined for the portal homepage.


2.0 of this mod works flawlessly with SP. Would there be any reason why I couldn't continue using 2.0 until this stuff is resolved... or is that not such a good idea?   

sdd

lucas-ruroken,
can make changes to index.php for TP?

Joseph H

Cheap webhosting +24 hours

Kindred

Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

Joseph H

I upgraded to 2.0.2 but when i press blog it says ''Error this module is not active'' but im sure i activated it in its settings
Cheap webhosting +24 hours

embleme20

hello
firstly,thank you for this great mod
i have installed this mod,activated, but it is still an error saying this module is not activated when i cilick to BLOG in my forum menu
smf version 2.0.2
adk portal 2.1

impreza

It's a great modification, cool as you would have added a picture to describe the modifications to see how this works without installation.
Portal ToTemat.pl - Filmy i Artykuły

David111567

Quote from: embleme20 on March 01, 2012, 01:09:36 PM
hello
firstly,thank you for this great mod
i have installed this mod,activated, but it is still an error saying this module is not activated when i cilick to BLOG in my forum menu
smf version 2.0.2
adk portal 2.1


Yep...same problem with me...only with Simple Portal instead of ADK. 

I would suggest going back to version 2.0 of this mod because it works along side ANY portal, flawlessly.  I hope the author will correct the problem soon because it's a great mod.

NanoSector

Quote from: tomeh on March 01, 2012, 02:11:05 PM
It's a great modification, cool as you would have added a picture to describe the modifications to see how this works without installation.
Screenshots of how the mod looks? ???
My Mods / Mod Builder - A tool to easily create mods / Blog
"I've heard from a reliable source that the Answer is 42. But, still no word on what the question is."

lucas-ruroken

Quote from: Kindred on February 24, 2012, 12:36:27 PM
ah... I discovered an issue with EZPortal as well..

Thanks... issue added

Quote from: David111567 on February 26, 2012, 10:14:24 AM
My apologies for not responding quicker....I just spent 4 days in the hospital.

To address the above....no user can CREATE a blog because it says it's inactive.  Also. this mod is on  2 other sites which HAD blogs....and now they're not accessable.  All are running SP. I've been using the mod for a very long time with SP with no issues until now.  Also...the formatting issue remains on all sites. The blogs RIGHT-SIDE blocks are all flushed to the extreme left (see screenshot, previous post)...and the formatting is way off.

However...when I uninstall the 3.0 version and re-install 2.0 version of the mod...there are no issues.

Love this mod.   I hope we can use it once again.

David

I added this to the bugtracker to check it. I'll release 3.1 soon, i'm gonna view all of your issues

Quote from: sdd on February 28, 2012, 03:36:29 AM
lucas-ruroken,
can make changes to index.php for TP?

Issue added to the tracker ;)

Quote from: Donnxxl on February 28, 2012, 05:31:51 PM
I upgraded to 2.0.2 but when i press blog it says ''Error this module is not active'' but im sure i activated it in its settings

You need to create a new topic on the blog... also, This issue was added to the tracker

Quote from: Yoshi2889 on March 01, 2012, 02:36:47 PM
Quote from: tomeh on March 01, 2012, 02:11:05 PM
It's a great modification, cool as you would have added a picture to describe the modifications to see how this works without installation.
Screenshots of how the mod looks? ???

I don't understand too
Adk Portal 3.1 is coming....

Design your universe!

fedxrx

The simple Portal Script works fine.

I have one other problem with the "about me" each time I click on another users "about me" it just goes out to the text editor with a title "changing course - about me"

I think there is something wrong here., any fix??


Also blog posts do not show in recent posts could this be implemented ?

lucas-ruroken

can you add some screen to understand better?
Adk Portal 3.1 is coming....

Design your universe!

Advertisement: