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 61271 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
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: 29
Threads 22
Posts 170
Then testing it with:
error_reporting(0);
Freggers Wiki (German)

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: 2924
Threads 141
Posts 1433
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.11 has been released (8/27/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: 2924
Threads 141
Posts 1433
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: 29
Threads 22
Posts 170
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: 2924
Threads 141
Posts 1433
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: 29
Threads 22
Posts 170
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: 2924
Threads 141
Posts 1433
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: 29
Threads 22
Posts 170
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 Vet
Wiki Edits: 2924
Threads 141
Posts 1433
Thanks Freggern.


Quote:Krillmeed Mar 1st 11:50 am
When i click on my site Todays post, it list the posts Replies, Views, Last, Action, But not the forum. I had a check here and it does. Is something wrong?

Yes, it will be fixed in the next upload.


Quote:Krillmeed Mar 1st 12:45 pm
Since the update i do not think that the forum tag works on my main page, at least its not updating to new posts. Here it is

 imgBeforeThreadTitle=http://www.htpcnz.net/images/d/d9/Bullet.jpg


This is no biggy at the moment, but when you have time, can you tell me why its not working

Its not nice to hotlink picture like that
When you upgraded to 1.14, did you make sure the localsettings edit here was still present.
In the next forum upload it will do this automaticly along with fixing the Forum Menu (PM's dont register correctly on the main page).


Quote:Krillmeed Mar 1st 1:21 pm
When i mark a topic to be moved, then click on move, get the pop up and say ok, the page that then appears has the window with the list of forums to move it to, the button on the right of that seems to be squashed up, and has no name on it, plus the buttons on the right ie Admin panel also seem to be messed up. Just thought i would report this, i can use this option and have. Worked perfectly

ok.
When text is missing you can check in your language section and see if its missing there, thats probably the case.


Quote:Krillmeed Mar 1st 1:34 pm
Even though i subscribe in one way or another to all topics, nothing is showing in Sub - email and Sub - List, also not in my MemCP, have a missed a setting somewere





Thought it was working here, but noticed that they are old posts. So i guess it is on a list of things to come Sorry for being such a pain today, but you did ask for a Beta tester


ok

Forum Regular
Wiki Edits: 13
Threads 25
Posts 206
Thanks for the headsup over the hotlinking, i got the script from him, but forgot to put my own image link in. Will change it now Also will post new version problems here as well from now own
Krillmeed. A dream that became a reality and spread throughout the internet.

Forum Regular
Wiki Edits: 13
Threads 25
Posts 206
Forgot to mention, the
$wgParserCacheType = CACHE_NONE;
is in my local settings

Forum Vet
Wiki Edits: 2924
Threads 141
Posts 1433
Quote:Krillmeed Mar 1st 1:21 pm
When i mark a topic to be moved, then click on move, get the pop up and say ok, the page that then appears has the window with the list of forums to move it to, the button on the right of that seems to be squashed up, and has no name on it, plus the buttons on the right ie Admin panel also seem to be messed up. Just thought i would report this, i can use this option and have. Worked perfectly

fixed

For a current list (im tring to update it as soon as something is fixed) read the bottom of the first post in this thread or http://wiki.anotherwebcom.com/Current_Forum_Beta_Release#New_Changes

_

Forum Vet
Wiki Edits: 2924
Threads 141
Posts 1433

New download

http://wiki.anotherwebcom.com/Current_Forum_Beta_Release#Lastest_download_changes

Still have to scan the whole forums code for the new permissions system, but how it sits now should be close.


If you where having a problem with any of the fixs listed, please post back what the problem was and if the fix is working... Been alittle sick the last day or so... so thee might be some things ive missed.


Gonna start to write up alittle some with the basic how-to's for some of the new options.

_


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 0 Bots/Crawlers: 1


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