2.5.x - 90% complete, want to beta it ? - Another Web Company
ArcadeDownloadsNewslettersForum MenuNavigationWhat AWC OffersWiki ToolsLogin or Create Account

Log in

You must have cookies enabled to log in to Main Site - Local.

 

2.5.x - 90% complete, want to beta it ?

From Another Web Company

Image:Locked.jpg Viewed 59224 times, With a total of 334 Posts
Have a suggestion, improvement, change or non-beta Forum Entension bug ? Please add them to the todo list

Jump to page 1Prev 1610111213141516171819Next 16Last
Clicked A Few Times
Wiki Edits: 4
Threads 2
Posts 50
While doing some testing with the new permission setup:

Quote:Kitsu's Site
Notice: Undefined index: edit_count in ...extensions/awc/forums/includes/post_phase.php on line 276

Notice: Undefined index: m_posts in ...extensions/awc/forums/includes/post_phase.php on line 277

Notice: Undefined index: m_topics in .../extensions/awc/forums/includes/post_phase.php on line 278

Notice: Undefined index: m_advh in .../extensions/awc/forums/includes/post_phase.php on line 280

Notice: Undefined index: m_advw in .../extensions/awc/forums/includes/post_phase.php on line 281

Notice: Undefined index: m_adv in .../extensions/awc/forums/includes/post_phase.php on line 282

Notice: Undefined index: group in .../extensions/awc/forums/includes/post_phase.php on line 284

Notice: Undefined index: m_sig in .../extensions/awc/forums/includes/post_phase.php on line 289

Notice: Undefined index: m_sig in .../extensions/awc/forums/includes/post_phase.php on line 214

Notice: Undefined index: m_topics in .../extensions/awc/forums/includes/post_phase.php on line 236

Notice: Undefined index: group in .../extensions/awc/forums/includes/post_phase.php on line 270


Found on THIS page.
Edited On 1:38:53 AM - Saturday 28th, February 2009 by AWC

Clicked A Few Times
Wiki Edits: 4
Threads 2
Posts 50
Due to a sever accident during adjustments... Would it be possible to have a confirm page added into the delete option? or something to make it harder to accidentally click delete instead of submit?

By the gods... I nearly gave myself a heart attack.

Clicked A Few Times
Wiki Edits: 4
Threads 2
Posts 50
Oh, in reference to that, That's to deleting a forum.

Gets Around
Wiki Edits: 24
Threads 21
Posts 160
Kitsufox add after <?php on the file: /extensions/awc/forums/includes/post_phase.php

error_reporting(E_ALL & ~E_NOTICE);

this is not a nice fix, but must going...
Freggers Wiki (German)

Clicked A Few Times
Wiki Edits: 4
Threads 2
Posts 50
I tried that, but it's still happening. It seems to be isolated to the page where we've got a guest post.

Clicked A Few Times
Wiki Edits: 4
Threads 2
Posts 50
Since that didn't change a thing, I decided to revert back to the original version.

Gets Around
Wiki Edits: 24
Threads 21
Posts 160
Then testing it with:
error_reporting(0);

Clicked A Few Times
Wiki Edits: 4
Threads 2
Posts 50
I'm just gonna wait for a patch from AWC, Ferggern. But thank you for helping out. The denizens of my forum know we're using beta software, and it's only happening where guests post (which isn't permitted in most of the forum), so it's not a real pressing matter for us.

Forum Vet
Wiki Edits: 2898
Threads 135
Posts 1397
Thanks for the helping hand, Freggern.


Kitsufox, pretty sure the Recent Posts is fixed, ill make the needed changes for the Notice errors (forgot to test the forum with Guest ) and ill look back into the main page problem (thought that would have gone away in the very last update posted here)

Aside from them Notice errors, hows the new permissions working for you ?

Will have a new download ready in a couple hours at most.

_
Edited On 1:43:38 AM - Saturday 28th, February 2009 by AWC
~ What was once an opinion, became a fact, to be later proven wrong ~
  • Forum Ver. 2.5.10 has been released (6/19/2010), Download here.


Clicked A Few Times
Wiki Edits: 4
Threads 2
Posts 50
The permissions have been working wonderfully. It's so nice to not have the entire staff labeled mod anymore.

The only issue I've got (which was JUST brought to my attention, literally 30 seconds ago) is that threads aren't being hidden in the 'Today's Post' list when it's not something they can visit (Force could see the title, but not the contents, so everything else worked just fine)

I love the new permissions. They're absolutely just what CoSC needed.

Forum Vet
Wiki Edits: 2898
Threads 135
Posts 1397
Yea... i forgot all about the search file and the new permissions system, working on it now.

Gald to hear the new perm system is working well for you.

Gets Around
Wiki Edits: 24
Threads 21
Posts 160
AWC I have a proplem on the site with the SocialProfil extension...
http://www.freggers-wiki.de/wiki/index.php?title=Benutzer:Freggern

When on the Pinnwand (Pinboard) are post for one post it adds a new
Whos here now: on the botton

Can you include a check like with a global variable that the pinwand don't include the Whos here now several times ?

Forum Vet
Wiki Edits: 2898
Threads 135
Posts 1397
Freggern, someone else is have this problem too.


Can you explane this again...
Quote:Freggern Feb 28th 4:32 pm
When on the Pinnwand (Pinboard) are post for one post it adds a new...


I understand you have another extension which is causing the Forums - Whoes Online to make extras, but i do not understand why.

_

Gets Around
Wiki Edits: 24
Threads 21
Posts 160
Here is my Idear to fix it, on my wiki its going:

Change in awc_forum.php
    if(isset($whos_here->installed)){
        $whos_here->load_ses($WhoWhere);
        $out->mBodytext .= '<br /><br /><br />' . awcs_forums_whos_here_skin_wiki($whos_here->whos_here) ;
    }

to
    global $freggern_fix;
    if(isset($whos_here->installed) && $freggern_fix != true){
        $whos_here->load_ses($WhoWhere);
        $out->mBodytext .= '<br /><br /><br />' . awcs_forums_whos_here_skin_wiki($whos_here->whos_here) ;
        $freggern_fix = true;
    }


so the whos_here can't add more then one times

Forum Vet
Wiki Edits: 2898
Threads 135
Posts 1397
Quote:Freggern Feb 28th 5:58 pm
Here is my Idear to fix it, on my wiki its going:

Change in awc_forum.php
    if(isset($whos_here->installed)){
        $whos_here->load_ses($WhoWhere);
        $out->mBodytext .= '<br /><br /><br />' . awcs_forums_whos_here_skin_wiki($whos_here->whos_here) ;
    }

to
    global $freggern_fix;
    if(isset($whos_here->installed) && $freggern_fix != true){
        $whos_here->load_ses($WhoWhere);
        $out->mBodytext .= '<br /><br /><br />' . awcs_forums_whos_here_skin_wiki($whos_here->whos_here) ;
        $freggern_fix = true;
    }


so the whos_here can't add more then one times



Thats a good idea, the change which will take place will be:
- OLD
function AWC_FORUMS_BeforePageDisplay_Menu_WhoesHere(&$out) {


- NEW
function AWC_FORUMS_BeforePageDisplay_Menu_WhoesHere(&$out) {        
global $awcsf_menu_whoeshere_beforepagedisplay ;
 
        if($awcsf_menu_whoeshere_beforepagedisplay == 'yes') return true ;
        $awcsf_menu_whoeshere_beforepagedisplay = 'yes';


By doing it that way, it will also cut down on some un-needed function() routines and should fix another members Menu problem.

Can you remove your edits and test that ^^ out and see how it works ?

It seams like you know about the Global variables, one thing you want to watch out for when using things like this with MedaiWiki extensions is to pick unique names so other peoples (or even your self) don't use the same name and cause problems with the variable being change by mistake in other parts of the code.



Quote:AWC Feb 28th 4:50 pm
Can you explane this again...
Quote:Freggern Feb 28th 4:32 pm
When on the Pinnwand (Pinboard) are post for one post it adds a new...


Can you please explain this again so i can test and see why this is happening.



Took alittle break today guys... feeling alittle sick.
Shuold have a new download ready pretty soon, only acouple more little change which need to be made.
_

Gets Around
Wiki Edits: 24
Threads 21
Posts 160
Quote:AWC Mar 1st 4:48 am

Thats a good idea, the change which will take place will be:
- OLD
function AWC_FORUMS_BeforePageDisplay_Menu_WhoesHere(&$out) {


- NEW
function AWC_FORUMS_BeforePageDisplay_Menu_WhoesHere(&$out) {        
global $awcsf_menu_whoeshere_beforepagedisplay ;
 
        if($awcsf_menu_whoeshere_beforepagedisplay == 'yes') return true ;
        $awcsf_menu_whoeshere_beforepagedisplay = 'yes';


By doing it that way, it will also cut down on some un-needed function() routines and should fix another members Menu problem.

Can you remove your edits and test that ^^ out and see how it works ?

Works perfekt ....
Quote:AWC Mar 1st 4:48 am

It seams like you know about the Global variables, one thing you want to watch out for when using things like this with MedaiWiki extensions is to pick unique names so other peoples (or even your self) don't use the same name and cause problems with the variable being change by mistake in other parts of the code.

I know that... but I wan't show you my idear and not a clear code... nomely I user clear variables...



Quote:AWC Feb 28th 4:50 pm
Can you explane this again...
Quote:Freggern Feb 28th 4:32 pm
When on the Pinnwand (Pinboard) are post for one post it adds a new...



By the socialprofile extension give it a funktion
http://www.mediawiki.org/wiki/Extension:SocialProfile#Board

When the Board have no post, whos here display correkt...
1 post on the board the Whos here ... display 2 times
2 post on the board the Whos here ... display 3 times
3 post on the board the Whos here ... display 4 times
...


Forum Image:Icon-double-arrow.gif AWC's Corner Image:Icon-double-arrow.gif AWC's MediaWiki Forum Extension
Jump to page 1Prev 1610111213141516171819Next 16Last



Whos here now: Members 0 Guests 2 Bots/Crawlers: 3


AWC's: 2.6.0 MediaWiki - Stand Alone Forum Extension
Forum theme style by: AWC