• Resolved Carsten Lund

    (@carsten-lund)


    Hi there, I’m testing the Docket Cache plugin which is a persistent WordPress Object Cache that is stored as a plain PHP code.

    I receive this error only on the search page:

    BP Profile Search 5.3.5 error: Form ID “4936” is empty or nonexistent.

    Any idea, why I get this error?

    Regards
    Carsten

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Carsten Lund

    (@carsten-lund)

    Hi Andrea, I went with another cache plugin, which do not create this conflict, so it’s not an issue to me anymore.

    Regards
    Carsten

    Plugin Author Andrea Tarantini

    (@dontdream)

    Hi Carsten,

    Thanks for letting me know, I’ll take a look anyway just in case…

    Thread Starter Carsten Lund

    (@carsten-lund)

    Hi Andrea, good to know, if I try this plugin again.

    Thanks

    Hi,

    The quick fix is, replace unserialize with maybe_unserialize

    File: bps-start.php
    Line: 75

    Before:
    $options[$form] = isset ($meta['bps_options'])? unserialize ($meta['bps_options'][0]): $default;

    After:
    $options[$form] = isset ($meta['bps_options'])? maybe_unserialize ($meta['bps_options'][0]): $default;

    Thanks.

    Plugin Author Andrea Tarantini

    (@dontdream)

    Thank you Nawawi!

    I’ll add this change to the next BP Profile Search version.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Search page error with Docket Cache’ is closed to new replies.