Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[MyBB] MyPlaza v0.5 (beta version)
Author Message
.:ʕΘЯg@nʔ:.™
Elite EPerson

Posts: 1,613.1974
Threads: 235
Joined: 14th Apr 2007
Reputation: 3.87089
E-Pigs: 67.0595
Offline
Post: #251
RE: [MyBB] MyPlaza v0.42 (preview version 9)
Pirata Nervo Wrote:I told you to use freeweb7...
However I told you to don't upload ANYTHING until january starts..lol
Freeweb7 is better! 100 000 mb of bandwith and 7000 mb of space.

cool I'll wait thanks for the tip

[Image: hw_wow_sig.php?cardCharacterName=Tetriz]
(This post was last modified: 29/12/2007 04:04 AM by .:ʕΘЯg@nʔ:.™.)
29/12/2007 04:03 AM
Find all posts by this user Quote this message in a reply
ZiNgA BuRgA
Smart Alternative

Posts: 17,022.2988
Threads: 1,174
Joined: 19th Jan 2007
Reputation: -1.71391
E-Pigs: 446.1274
Offline
Post: #252
RE: [MyBB] MyPlaza v0.42 (preview version 9)
Your host should warn you if you exceed load limits.

I'm doubting MyPlaza would cause heavy load.  Despite it's complexity, it actually runs much faster than other plugins.
And yes, it runs a lot faster than MYPS, you may be surprised to hear.
29/12/2007 06:49 PM
Visit this user's website Find all posts by this user Quote this message in a reply
.:ʕΘЯg@nʔ:.™
Elite EPerson

Posts: 1,613.1974
Threads: 235
Joined: 14th Apr 2007
Reputation: 3.87089
E-Pigs: 67.0595
Offline
Post: #253
RE: [MyBB] MyPlaza v0.42 (preview version 9)
ZiNgA BuRgA Wrote:Your host should warn you if you exceed load limits.

I'm doubting MyPlaza would cause heavy load.  Despite it's complexity, it actually runs much faster than other plugins.
And yes, it runs a lot faster than MYPS, you may be surprised to hear.

no no I did not to mean to say it was MyPlaza

I was just saying It sucks that I lost it with my site :(

[Image: hw_wow_sig.php?cardCharacterName=Tetriz]
(This post was last modified: 31/12/2007 04:37 PM by .:ʕΘЯg@nʔ:.™.)
29/12/2007 10:52 PM
Find all posts by this user Quote this message in a reply
.:ʕΘЯg@nʔ:.™
Elite EPerson

Posts: 1,613.1974
Threads: 235
Joined: 14th Apr 2007
Reputation: 3.87089
E-Pigs: 67.0595
Offline
Post: #254
RE: [MyBB] MyPlaza v0.43 (preview version 10)
MySQL error: 1054
Unknown column 'u.nameformat' in 'field list'
Query: SELECT s.sid, s.ip, s.uid, s.time, s.location, u.username, u.invisible, u.usergroup, u.displaygroup, u.nameformat FROM mybb_sessions s LEFT JOIN mybb_users u ON (s.uid=u.uid) WHERE s.time>'1199142723' ORDER BY u.username ASC, s.time DESC

that's what i got win i updated to v0.43 now i can get rid of it

[Image: hw_wow_sig.php?cardCharacterName=Tetriz]
(This post was last modified: 31/12/2007 04:38 PM by .:ʕΘЯg@nʔ:.™.)
31/12/2007 04:29 PM
Find all posts by this user Quote this message in a reply
ZiNgA BuRgA
Smart Alternative

Posts: 17,022.2988
Threads: 1,174
Joined: 19th Jan 2007
Reputation: -1.71391
E-Pigs: 446.1274
Offline
Post: #255
RE: [MyBB] MyPlaza v0.43 (preview version 10)
Did you deactivate the Userformatting module?  If so, you need to activate it.
31/12/2007 06:43 PM
Visit this user's website Find all posts by this user Quote this message in a reply
.:ʕΘЯg@nʔ:.™
Elite EPerson

Posts: 1,613.1974
Threads: 235
Joined: 14th Apr 2007
Reputation: 3.87089
E-Pigs: 67.0595
Offline
Post: #256
RE: [MyBB] MyPlaza v0.43 (preview version 10)
witch i could

win i go in to Modules I get this

Fatal error: Call to undefined function: stripos() in /homepages/16/d200218465/htdocs/CBT/admin/myplaza.php on line 26

[Image: hw_wow_sig.php?cardCharacterName=Tetriz]
(This post was last modified: 01/01/2008 03:42 AM by .:ʕΘЯg@nʔ:.™.)
31/12/2007 11:09 PM
Find all posts by this user Quote this message in a reply
ZiNgA BuRgA
Smart Alternative

Posts: 17,022.2988
Threads: 1,174
Joined: 19th Jan 2007
Reputation: -1.71391
E-Pigs: 446.1274
Offline
Post: #257
RE: [MyBB] MyPlaza v0.43 (preview version 10)
.:ʕΘЯg@nʔ:.? Wrote:witch i could

win i do in to Modules I get this

Fatal error: Call to undefined function: stripos() in /homepages/16/d200218465/htdocs/CBT/admin/myplaza.php on line 26
Oops - I see you're using an older version of PHP.

Try this, in /admin/myplaza.php, near the top, there should be something like:

PHP Code:
1
2
3
4
5
6
7
// exclude links from index.php, since IE6 likes to send us the wrong referrer at times
if(isset($_SERVER['HTTP_REFERER']) && !stripos($_SERVER['HTTP_REFERER'], '/index.php?'))
	define('REFERRER', $_SERVER['HTTP_REFERER']);
else
	define('REFERRER', '');

require_once "./global.php";


Replace with:

PHP Code:
1
2
3
4
5
6
7
require_once "./global.php";

// exclude links from index.php, since IE6 likes to send us the wrong referrer at times
if(isset($_SERVER['HTTP_REFERER']) && !stripos($_SERVER['HTTP_REFERER'], '/index.php?'))
	define('REFERRER', $_SERVER['HTTP_REFERER']);
else
	define('REFERRER', '');


Thanks for pointing that one out.

01/01/2008 12:02 AM
Visit this user's website Find all posts by this user Quote this message in a reply
.:ʕΘЯg@nʔ:.™
Elite EPerson

Posts: 1,613.1974
Threads: 235
Joined: 14th Apr 2007
Reputation: 3.87089
E-Pigs: 67.0595
Offline
Post: #258
RE: [MyBB] MyPlaza v0.43 (preview version 10)
Thank you man :)

its all fixed now

[Image: hw_wow_sig.php?cardCharacterName=Tetriz]
(This post was last modified: 01/01/2008 12:15 AM by .:ʕΘЯg@nʔ:.™.)
01/01/2008 12:03 AM
Find all posts by this user Quote this message in a reply
Pirata Nervo
NervOS Developer

Posts: 699.4765
Threads: 39
Joined: 20th Jun 2007
Reputation: -0.79225
E-Pigs: 19.2466
Offline
Post: #259
RE: [MyBB] MyPlaza v0.43 (preview version 10)
Thank you zinga for updating it :D

01/01/2008 05:11 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Dupain
Storm Trooper

Posts: 575.2980
Threads: 8
Joined: 5th Dec 2007
Reputation: -5.35227
E-Pigs: 12.7258
Offline
Post: #260
RE: [MyBB] MyPlaza v0.43 (preview version 10)
i don't have much experience in html but is the download link the codes of the plaza you using here on this forum? and is it copyright?


[Image: biggrin.gif] [Image: yell.gif] [Image: dance.gif]
=O.O= =o.O= =O.o=
[Image: 219486350.png]
wooo =^_^= it's cool to be me! If
01/01/2008 05:42 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 2 Guest(s)

 Quick Theme: