Support Forum

5.0 Up and running. Minor Issues.

53 Answers

New Answer

MP Mr Papa
Mr Papa
Member

the math spam is a permission… if you are using drag and drop, just set all permission sets to have the bypass spam control permission set to true…

you have lots of jquery errors on your pages…   use firefox with firebug and the console open when you load a page… you will see them…

big one:

“NetworkError: 404 Not Found – http://mygarageshop.com/forum/general-discussions/jquery.js/”

so appears you are trying to hard code load js???  on forum pages?  its going to be coming from these:

<!–
<script type=”text/javascript” src=”jquery.js”></script>
<script type=”text/javascript”>
$(document).ready(function(){
  $(“form”).submit(function(e){
    alert(“Submitted”);
  });
});
</script>

<script src=”http://code.jquery.com/jquery-latest.js”></script>
<script type=”text/javascript”>
    $(document).ready(function(){
      $(“.mg-FacebookContainer”).mouseleave(function(){
        $(“.mg-FacebookContainer”).scrollTop(0);
      });
    });
</script>

also would suggest turning off wp comments on the forum page… that comment opening/closing box is quite annoying! 😉

MY MyGarageShop
MyGarageShop
Member

I should have noted that this problem was there before I tried to add in my site specific items…

 

But I removed all of it and the problem still exists…

My theme is derived from twentyeleven with just a different header and foooter so it is not a theme related issue.

But to be sure I switched to twenteyeleven and the problem still exists.

 

I do not know what is causing this problem, but everything you mentioned is gone now and the problem is still there.

I really need some help with this one.

YS Yellow Swordfish
Yellow Swordfish
Member

Probably need to take this one step at a time so the first thing would be to eliminate any further script conflicts. I don’t believe this should have a bearing on tinyMCE but if we can get rid of it then it would be for the best as we would then have a clean slate. Something – theme or plugin – is loading the jQuery ui script from the google CDN. This, at l;eats n the forum page, is already being loaded for the wp scripts repository which means it is being loaded twice. If we can eradicate that issue then as far as I can tell that removes known conflicts. Then we can try and troubleshoot the tinyMCE issue.

MY MyGarageShop
MyGarageShop
Member

deactivated everything including simple press.

then activated simple press and got this immediately after clicking activate…

Warning: Cannot modify header information – headers already sent by (output started at /problem-with-post-edit-buttonome/content/93/8516993/problem-with-post-edit-buttontml/production/wp-content/themes/mygaragetheme/functions-inc-formatting.php:12) in /problem-with-post-edit-buttonome/content/93/8516993/problem-with-post-edit-buttontml/production/wp-includes/pluggable.php on line 866

Warning: Cannot modify header information – headers already sent by (output started at /problem-with-post-edit-buttonome/content/93/8516993/problem-with-post-edit-buttontml/production/wp-content/themes/mygaragetheme/functions-inc-formatting.php:12) in /problem-with-post-edit-buttonome/content/93/8516993/problem-with-post-edit-buttontml/production/wp-includes/pluggable.php on line 866

 

then site was down I could not do anything I had to delete the simplepress plugin directory to get back in to dashboard.

Next step?

MY MyGarageShop
MyGarageShop
Member

ok correction…

if I refresh I can get back to the site I do not have to delete the simple press plugin directory…

 

I did not have this before the 5.0 upgrade? worked great with 4.x

what should be my next step.

YS Yellow Swordfish
Yellow Swordfish
Member

So it is curious. What was the code at that line in the theme file?
And have you corrected the ui script loading from google?

YS Yellow Swordfish
Yellow Swordfish
Member

So the editor appears to working now. What changed?

MY MyGarageShop
MyGarageShop
Member

I gutted my site and now I am putting it back together a piece at a time till it stops working them I will tell you what I find.

YS Yellow Swordfish
Yellow Swordfish
Member

But when I just looked at it all seemed to be fine and the editor was working…

MY MyGarageShop
MyGarageShop
Member

no all plugins were deactivated, all my custom code was removed, it was COMPLETELY STRIPPED…

now it is almost back together… I think I have it narrowed down to shortcodes that are used in the forum…

 

the funny part is they have not changed for a year, and they worked great in every version of simple press and everything else before?

 

I will soon have everything back and will let you know what I find

MY MyGarageShop
MyGarageShop
Member

Im closer… there seem to be 2 things affecting it creating 2 different errors

 

One is a plug-in dont know which one yet,  and…

One is the shortcode I mentioned earlier…

MY MyGarageShop
MyGarageShop
Member

Andy,

I am still looking into the shortcodes issue but I found one of the issues.

With all of my plugins disabled and almost all of my site back together…

 

It stops working when I have just Simple Press plug in and WP UI – Tabs (see below)

You played together in the previous version?

 

WP UI – Tabs, accordions and more.
Easily add Tabs, Accordion, Collapsibles to your posts. With 14 fresh Unique CSS3 styles and multiple jQuery UI custom themes.
Version 0.8 | By Kavin | Visit plugin site

 

Anyway I went further and found a check box in their advanced configuration setting

 

 

I checked it and the editor works… but their plug in does not… so I tried another advanced option they have.

 

 

I checked it and the editor works… and their plug in works…

 

but I still have another issue. I will get back to you

YS Yellow Swordfish
Yellow Swordfish
Member

It’s nice to see these plugin authors offering some useful options…

MY MyGarageShop
MyGarageShop
Member

ok editor is working the change in WP-UI made everything work… EXCEPT… The tabs dot work in the forum now (and they did in 4.x)

you can see the difference if you go to

http://mygarageshop.com/featured/project-mediamikes/ then click on the linked topic and you will see the tabs go away

 

As far as being able to post…

I followed what Mr Papa said and allowed bypass spam in permissions and math is now gone…

But the drag and drop part shows up which is what I want but it does not work, (FYI it works on registration form?)

 

you can click the save button but of course it does not save.

The best way to see what is happening is to try it yourself.

 

username forumtest

password forumtest

 

try posing in general discussions.

We are closer than this morning…

YS Yellow Swordfish
Yellow Swordfish
Member

Embedded in the page output is this piece of inline script:

<script type="text/javascript">
    $(document).ready(function(){
        $(".mg-FacebookContainer").mouseleave(function(){
            $(".mg-FacebookContainer").scrollTop(0);
        });
    });
</script>

Change all of the ‘$’ for ‘jQuery’.