Recent Topics

1 Feb 09, 2010 12:48    

My b2evolution Version: 3.3.3

I just upgraded from 2.x to 3.3.3 yesterday

deleted everything except media and htaccess and did the db upgrade, I'm seeing two odd things and I wonder if anyone has any ideas.

1 ) - I get this message in the admin side -

WARNING: You are running an outdated development version (). Version 3.3.2-2009-11-09 is available for download. It is strongly recommended that you upgrade.

??? is this a known issue?

2 ) - After publishing a new post I get returned to "index.php" rather than the dashboard "admin.php" - which while not a deal breaker is sure annoying... specially when I have 20 or so posts to do.

how can I fix that?

2 Feb 09, 2010 23:54

Answer to 2) - it's a one of the new 'features' introduced in V3 which I find not necessary and annoying. I think I read that this will be 'fixed' in the new version.

3 Feb 10, 2010 03:49

What version do you see on Tools > System tab?
You can ignore that warning, anyway.

4 Feb 10, 2010 11:07

b2evolution version
3.3.3 released on 12/15/09

You are running the latest version of b2evolution.

Funny, I never used the tools/system before - so I guess that's ok ....

That admin redirect tho - it's way annoying after posting

5 Feb 10, 2010 11:40

open up your ..\inc\items\items.ctrl.php

find lines approx 511-515 and comment the line 515 as below;

	if( ! $was_published && $edited_Item->status == 'published' )
		{	/* The post's last status wasn't "published", but we're going
			   to publish it now. Redirect to the blog: */
			$edited_Item->load_Blog();
			//$redirect_to = $edited_Item->Blog->gen_blogurl();
		}

no need for explanation (:

/* fp> I noticed that after publishing a new post, I always want
* to see how the blog looks like. If anyone doesn't want that,
* we can make this optional...
*/

6 Feb 10, 2010 12:12

Rats.... commented out the line and it's the same behavior. 8|

7 Feb 10, 2010 12:34

CapnRob wrote:

Rats.... commented out the line and it's the same behavior. 8|

now that does not make sense. it should have worked

8 Feb 10, 2010 14:53

and 406+

		if( $edited_Item->status == 'published' )
		{	// fp> I noticed that after publishing a new post, I always want to see how the blog looks like
		  // If anyone doesn't want that, we can make this optional...
			$edited_Item->load_Blog();
		  $redirect_to = $edited_Item->Blog->gen_blogurl();
		}

and 548+

		// fp> I noticed that after publishing a new post, I always want to see how the blog looks like
		// If anyone doesn't want that, we can make this optional...
		$edited_Item->load_Blog();
		$redirect_to = $edited_Item->Blog->gen_blogurl();

¥

9 Feb 10, 2010 22:36

THAT did it - thanks a huge bunch - it shaves 2 operations off of every post - when I do 18 - 30 at a time this gets time consuming.

Just a thought, maybe this shouldn't be the default or possibly an opt-out ?

:D

10 Feb 10, 2010 22:43

CapnRob wrote:

THAT did it - thanks a huge bunch - it shaves 2 operations off of every post - when I do 18 - 30 at a time this gets time consuming.

Just a thought, maybe this shouldn't be the default or possibly an opt-out ?

:D

/* fp> I noticed that after publishing a new post, I always want
* to see how the blog looks like. If anyone doesn't want that,
* we can make this optional...

the above counts as b2evo pop. / 100 x 99.9999....

no puns intended, not that your thoughts does not matter, they do, they just dont count (;


Form is loading...