MyBB Community Forums

Full Version: MyPlaza v0.5 (Beta)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
in some of the pages here is the fixed files for it please search.
What about a directory module and also what happened to the download in the plaza thing Toungue. Could you tell me where i could find the latest version of myplaza too as mines outdated
I thought of a neat idea for a module for this.

Have it where you can "buy" access to certain groups, like one for people who have a lot of money on the forum. The forum admin can restrict viewing of a "Rich People" forum to those who bought access to the group.

Could also be used for veteran members who earned enough money to access something like that, etc.
Soshite Wrote:I thought of a neat idea for a module for this.

Have it where you can "buy" access to certain groups, like one for people who have a lot of money on the forum. The forum admin can restrict viewing of a "Rich People" forum to those who bought access to the group.

Could also be used for veteran members who earned enough money to access something like that, etc.

http://community.mybboard.net/showthread.php?tid=25492
And is like requested for the 4th time.
Amazing plugin good sir.
It's a tad bit buggy, yet works great.
I can't wait to see where this goes.
A request: Perhaps you could make it so members can make their own shops.
Jag100 Wrote:What about a directory module and also what happened to the download in the plaza thing Toungue. Could you tell me where i could find the latest version of myplaza too as mines outdated
What's a directory module?
Do you mean the auto-updater? It only works for v0.4 (v0.32's one is broken).
You'll be able to use the auto-updater to install v0.41 when it comes out.
The auto-updater requires Advanced Modules to be enabled and configured properly.

v0.41 is nearly complete, with aforementioned bugs fixed, help docs included, anda fair number of changes to the Inventory module (mainly to make it work better as a Medals/Awards thing as well).
I'm also trying to add more to the development documentation (it's really basic right now).

Soshite Wrote:I thought of a neat idea for a module for this.

Have it where you can "buy" access to certain groups, like one for people who have a lot of money on the forum. The forum admin can restrict viewing of a "Rich People" forum to those who bought access to the group.

Could also be used for veteran members who earned enough money to access something like that, etc.
I have a "buy into usergroup" module planned.
As for automatically granting people access to a certain forum, if they have a certain amount of money - yes it's possible, but I probably won't make it...

DarkNeji Wrote:Amazing plugin good sir.
It's a tad bit buggy, yet works great.
I can't wait to see where this goes.
A request: Perhaps you could make it so members can make their own shops.
Yeah, I know there's quite a number of bugs - it's why it's still in early stages of development Toungue
What would members place in their own shops?
ZiNga BuRgA Wrote:One thing to note - I'm not a graphics person, so the icons aren't really that great... >_> Also, the ones I've used are in PNG format, so, if you (or some other user) loves IE6, the icons will look like... erm... poo (in IE6). If anyone is willing to contribute better icons (preferrably GIF) then feel free!
Or you can use a javascript png icon fix...
put this in "png.js" or sumthin and use this code in the header
<script type="text/javascript" src="jscripts/png.js"></script>
/*
PNG Picture Transparency Fix For Older Browsers.
This is BUTT'MUNCHA'S coding!
DO NOT TAKE CREDIT FOR MY WORK OR I WILL SUE YOU!
*/

var arVersion = navigator.appVersion.split("MSIE")
var version = parseFloat(arVersion[1])

if ((version >= 5.5) && (document.body.filters)) 
{
   for(var i=0; i<document.images.length; i++)
   {
      var img = document.images[i]
      var imgName = img.src.toUpperCase()
      if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
      {
         var imgID = (img.id) ? "id='" + img.id + "' " : ""
         var imgClass = (img.className) ? "class='" + img.className + "' " : ""
         var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "
         var imgStyle = "display:inline-block;" + img.style.cssText 
         if (img.align == "left") imgStyle = "float:left;" + imgStyle
         if (img.align == "right") imgStyle = "float:right;" + imgStyle
         if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
         var strNewHTML = "<span " + imgID + imgClass + imgTitle
         + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
         + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
         + "(src=\'" + img.src + "\', sizingMethod='scale');\"></span>" 
         img.outerHTML = strNewHTML
         i = i-1
      }
   }
}
zinga burga i've created demo tested myplaza here...

http://www.myplaza.exabytes.us.to/

any tested will be here before can use hehehe.

any bug i will tell you later.

to test myplaza use this username & password

username : demo
password : demo123
boomhowza Wrote:Or you can use a javascript png icon fix...
The Javascript fix has issues of it's own, primarily sizing issues.
IE6 is a big piece of crap anyway, so I'm not going to bother making it look fancy on IE6.

fardly83 Wrote:zinga burga i've created demo tested myplaza here...

http://www.myplaza.exabytes.us.to/

any tested will be here before can use hehehe.

any bug i will tell you later.

to test myplaza use this username & password

username : demo
password : demo123
Thanks fardly83, though the login doesn't work.
The demo link on the first should be suffice for some basic testing/fiddling around. I do do my own testing, and sometimes screw things up though Confused
All IE6 users should have upgraded to IE7 by now. Not the developer's fault if the person is too lazy to upgrade.

If the person is using something older than WinXP, then they know that, and could run other browsers if they wanted. Or the forum admin could apply the PNG fix themselves.