Resource icon

Beta LLMO SEO Indexing AI Addon LLMO_Pro_V3_3.1.3_patch1

No permission to download
You will need to go into PhpMyAdmin to execute the following query in order to ensure there are no duplicate entries in the Listener after installing the Add-on, and to make sure the correct Listener is used in XenForo.

Open your database and click on the SQL tab. Then copy and paste the following query into the field labeled "Run SQL query/queries on server 'localhost'", and click the Execute button:

Code:
DELETE FROM xf_code_event_listener
WHERE event_id = 'template_post_render'
  AND callback_class <> 'Sylvain\\LlmoproV313\\Listener\\Template';

INSERT INTO xf_code_event_listener
  (event_id, execute_order, description, callback_class, callback_method, active, addon_id, hint)
VALUES
  ('template_post_render', 10, '', 'Sylvain\\LlmoproV313\\Listener\\Template', 'templatePostRender', 1, 'Sylvain/LlmoproV313', '')
ON DUPLICATE KEY UPDATE
  active = VALUES(active),
  execute_order = VALUES(execute_order),
  callback_method = VALUES(callback_method),
  description = VALUES(description),
  hint = VALUES(hint);

Note: I have tested this query and it works perfectly.
Uninstall previous version and clear template cache before installing this version
  • Like
Reactions: GameNet and akok
Back
Top Bottom