PDA

View Full Version : Problem with thread edit


Psyd0x
01-03-2015, 02:33 PM
when I click the save button after editing the post it will stay like this forever until i refresh the page.
http://prntscr.com/5o0mvw

But after I refresh the page the changes are applied

Anyone know from what the problem is?

HM666
01-03-2015, 02:39 PM
That is probably related to a mod you have installed on the forum. Try this:

Global disable: open your includes>config.php file and find:

<?php

and under place:

define('DISABLE_HOOKS', true);

Save and upload again to your server in the includes directory.

If you find that it works after disabling the plugins globally then re-enable the plugins by putting // in front of the code so it looks like this:

//define('DISABLE_HOOKS', true);

Save and upload again.

Then you will have to go through your mods one by one until you find the one that is causing the conflict.

nerbert
01-03-2015, 05:55 PM
I think you mean immediately after the opening tag

so put the line right after <?php

HM666
01-03-2015, 06:11 PM
I think you mean immediately after the opening tag

so put the line right after <?php

Thanks I changed it. :)

Psyd0x
01-11-2015, 10:13 AM
tried still have the problem without the plugins.

kh99
01-11-2015, 12:02 PM
Do you have a lot of people subscribed to the thread, and if so, what are your email settings for "use mailqueue" and "use cron based sending"? Someone else was having a similar problem recently and it turned out to be a delay due to sending the subscription emails. That person seems to have fixed it by the mailqueue and cron-based sending.

It could also be a javascript problem. Maybe open your browser javascript console before saving and see if you get any errors there.

HM666
01-11-2015, 01:54 PM
Come to think of it I've seen similar problems when a template was changed and the JavaScript was taken out or altered incorrectly.