MyBB Community Forums

Full Version: Game Section
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Php 5.3 section in the 1.4.11 and it's not there in the 1.4.09
Try running a backup of you forum on XAMPP.
Other then that, its php3. You could downgrade your php, but thats dangerous.
Nvm don't do that, it will then screw up other stuff.
No idea, just wait for pareteje..
XAMPP????

yea probably should wait for pareteje
i do not want to mess up what i got set up maybe the next time i fomat i will try it out

I do not think running IIS 7.5 and apache on the same computer will be nothing but trouble trying to share localhost probly could turn of IIS but i know nothing about apache
Wait your site is on your computer?

w/e

Try it on another computer, see if it worked.
(2010-01-08, 09:01 PM)Mark.M Wrote: [ -> ]Wait your site is on your computer?

w/e

Try it on another computer, see if it worked.

yea my live site is on my computer i do have a laptop but i can not use it for testing apache at the moment i got other stuff i am trying also IIS
The computer that hosts my site is the best computer i own
Win 7
4 tb hard space on 8 drives
dual core extream 3 gig
8 gig ddr 2
nvidea 8800 ultra
and on borard soound
Wish pareteje would stop by and have a look i wonder if he would answer at his site
(2010-01-06, 10:54 PM)faviouz Wrote: [ -> ]Will the Game Section be updated for 1.6?

It already works. It's tested and there were no bugs found. That's why the next versions, or maybe I wait until the final, will be released for 1.6.

You can let it work by doing this:
Open inc/plugins/games.php and find:
		"compatibility" => "14*"

Replace with:
		"compatibility" => "16*"

(2010-01-07, 03:16 AM)Howman Wrote: [ -> ]Ok I found out that MyBB 1.4.09 and game section (games1.2RC2.1) work fine

On my IIs 7.5 and Php 5.3.1 Rc 1 x64

As soon as i upgrade to MyBB 1.4.11 my 500 error comes back going to try and update game section on mybb 1.4.09 to games1.2RC3.2 see if that still works
So MyBB 1.4.09 and the gamesection games1.2RC3.2 work still on my IIS
So MyBB 1.4.10 and the gamesection games1.2RC3.2 DO NOT WORK on my IIS

So what ever changed in mybb 1.4.10 and on is messing up My gamesection

My Problam is with the class_core.php if i move the class_core.php from 1.4.09 into 1.4.11 my gamesection works again

So how would i fix this

So, you have no problem when you use the class_core.php file of 1.4.9, it works perfectly?

I only found this change which is a real change:
		// Determine Magic Quotes Status

		if(get_magic_quotes_gpc())

		{

			$this->magicquotes = 1;

			$this->strip_slashes_array($_POST);

			$this->strip_slashes_array($_GET);

			$this->strip_slashes_array($_COOKIE);

		}

		set_magic_quotes_runtime(0);

		@ini_set("magic_quotes_gpc", 0);

		@ini_set("magic_quotes_runtime", 0); 

To:
		// Determine Magic Quotes Status (< PHP 5.3)
		if(version_compare(PHP_VERSION, '5.3', '<'))
		{
			if(get_magic_quotes_gpc())
			{
				$this->magicquotes = 1;
				$this->strip_slashes_array($_POST);
				$this->strip_slashes_array($_GET);
				$this->strip_slashes_array($_COOKIE);
			}
			set_magic_quotes_runtime(0);
			@ini_set("magic_quotes_gpc", 0);
			@ini_set("magic_quotes_runtime", 0); 
		}

And this was deleted:
		// Old version of PHP, need to register_shutdown_function
		$this->use_shutdown = true;
		register_shutdown_function(array(&$this, "__destruct"));

So, try to undo this changed in the core file of 1.4.11 and see if it works Wink (And tell which one works Wink)
Great! Any new features or something for 1.6?
Nope, since 1.2 will be released for both 1.4 as 1.6. Game Section 1.3 will contain new features. Most notable is the ModCP.