AFL UTM Tracker Documentation

  1. Home
  2. Docs
  3. AFL UTM Tracker Documentation
  4. Fluent Forms Integration
  5. Fluent Forms Issues

Fluent Forms Issues

Here are the suspected Fluent Forms issues.

1. Blank entries page / unable to export entries

The issue might be because the Fluent Form Submission Meta database table by default does not use database indexing. This will caused slow read time from the database especially on cheaper web hosting server. Since our UTM report data is stored in this table, slow read time might cause server timeout.

What is database indexing?

Indexes are used to find specific column values quickly. Other plugins like Gravity Forms and WooCommerce do use database indexing in their database table.

https://dev.mysql.com/doc/refman/8.0/en/mysql-indexes.html

Therefore, you will have to manually add the database index to the Fluent Forms database table. Please get your web developer to perform the following.

  1. Before you begin, please make a backup of your database.
  2. You will need admin access to your database either through phpMyAdmin / Adminer / HeidiSQL / the provided database editor tool from your web hosting panel.
  3. Login to your database.
  4. Look for the wp_fluentform_submission_meta table.

For phpMyAdmin / Adminer user

  1. Go under Indexes > Alter Indexes.
  2. You will need to add column index for the response_id and meta_key column.
  3. Select the following (see screenshot below).
    • Index Type: Index
    • Column (length): response_id
    • Column (length): meta_key
    • Name: afl_meta
  4. Click Save.
  5. Go to the SQL command menu to execute the following command.
OPTIMIZE table wp_fluentform_submission_meta
wp_fluentform_submission_meta table
Optimize table command
Optimize table command

For HeidiSQL user

  1. Go to the Indexes tab > Click on the green Add button > Rename index to afl_meta.
  2. In the section below:
    • Right click on the response_id column > Add to index > afl_meta
    • Right click on the meta_key column > Add to index > afl_meta
  3. Click Save.
  4. Look for the Query tab and execute the following query.
OPTIMIZE table wp_fluentform_submission_meta
HeidiSQL Index
HeidiSQL Index
Optimize table command
Optimize table command