Hi,
i have trouble setting up a new cmp page with modx 3. It always worked with modx 2 and an existing cmp does also work with modx 3. i just can’t create a new one.
i can create my schema, and i can also parse it. but when i want to create the tables i get a 500 error in the developer console on this url: https://www.rifflblech.com/assets/components/migx/connector.php. no additional details and also no output in modx’s error logs.
my xml schema:
<?xml version="1.0" encoding="UTF-8"?>
<model package="events" baseClass="xPDOObject" platform="mysql" defaultEngine="InnoDB" version="1.1">
<object class="Event" table="events" extends="xPDOSimpleObject">
<field key="name" dbtype="varchar" phptype="string" precision="250" null="false" default="" />
<field key="play_time" dbtype="varchar" phptype="string" precision="250" null="false" default="" />
<field key="play_place" dbtype="varchar" phptype="string" precision="250" null="false" default="" />
<field key="play_mode" dbtype="int" precision="10" phptype="integer" null="false" default="0"/>
</object>
</model>
I follow this tutorial: MIGX DB CMP and XPDO in MODX Revolution - YouTube
Are there any known issues? Is there a newer tutorial?
Thanks