We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 2226
    • 2 Posts
    Hi,

    I've just upgraded a site from Evolution 1.0.8 to Evolution 1.0.12 and some problems with the dbEdit Modul happend.

    Using the Module, Selecting Rows and showing the Edit Form works fine. But when i try to save changes the Module id
    <input type="hidden" name="id" value="4">
    in the form with method post gets lost.

    An alert popup with the message
    No record found for id 0
    is shown and the dbEdit Modul is closed.

    The message comes from the file execute_module.processor.php.

    Any ideas?

    Thanks in advance
    Alexander [ed. note: aschmitz last edited this post 10 years, 2 months ago.]
    • You have to search/replace
      action="index.php"

      with
      action="index.php?id=<?php echo $module_id; ?>"

      in a few module files.

      Or use the fixed one on: https://github.com/Jako/ModX-Evo-dbEdit
        • 2226
        • 2 Posts
        Thanks for your fast reply, that solved the Problem.