You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is impossible to add/edit/delete posts on fluxbb 1.5.1+ (PostgreSQL) due to uncommited transactions where o_redirect_delay == 0.
Please fix it.
Thx
Possible solution:
diff -up fluxbb/include/functions.php.orig fluxbb/include/functions.php
--- fluxbb/include/functions.php.orig 2013-02-22 13:15:11.000000000 +0200
+++ fluxbb/include/functions.php 2013-06-10 22:34:39.801129005 +0300
@@ -1290,6 +1290,9 @@ function redirect($destination_url, $mes
// If the delay is 0 seconds, we might as well skip the redirect all together
if ($pun_config['o_redirect_delay'] == '0')
{
// End the transaction
$db->end_transaction();
header('Location: '.str_replace('&', '&', $destination_url)); exit; }
Hi
It is impossible to add/edit/delete posts on fluxbb 1.5.1+ (PostgreSQL) due to uncommited transactions where o_redirect_delay == 0.
Please fix it.
Thx
Possible solution:
diff -up fluxbb/include/functions.php.orig fluxbb/include/functions.php
--- fluxbb/include/functions.php.orig 2013-02-22 13:15:11.000000000 +0200
+++ fluxbb/include/functions.php 2013-06-10 22:34:39.801129005 +0300
@@ -1290,6 +1290,9 @@ function redirect($destination_url, $mes
// If the delay is 0 seconds, we might as well skip the redirect all together
if ($pun_config['o_redirect_delay'] == '0')
{
With best regards,
Nikolay Ulyanitsky
http://pkgs.org/
http://fluxbb.org/development/core/tickets/866/
The text was updated successfully, but these errors were encountered: