Searchable Custom Pages

Searchable Custom Pages 1.1.8

没有下载权限
XF 兼容性
  1. 2.3.x
  2. 2.2.x
摘要
This add-on allows you to make custom pages searchable by using a custom database table
Summary

This add-on allows you to make custom pages searchable by using a custom database table that is shared by XenForo and your in-house system. Built to work alongside Custom PHP Pages, but can work without it.

MySQL database administration knowledge is required.

Installation Instructions
  1. Install the add-on zip file (this is an add-on package without extra files)
  2. Navigate to Admin > Setup > Options > Searchable custom page options and confirm the settings are correct, then save. The forum database user must have SELECT access to the source database.
  3. Navigate to Admin > Tools > Cron Entries and run 'Searchable Custom Pages: Pull' once. This adds pages to the search index for the first time; it will also run automatically at midnight.
Sample

Custom table:
Custom table.webp

Why do members want to download [vbresults.com] Searchable Custom Pages from here? Because this resource was immediately available as of 2025-06-10, It received professional maintenance and updates when it was released synchronously on NullPro.



Search term:
Search Result.webp



Custom table schema (Note: you can set any schema you want using the settings):

SQL:
CREATE TABLE `pages` (
  `page_id` smallint(4) NOT NULL,
  `page_type` varchar(25) NOT NULL,
  `target` varchar(200) NOT NULL,
  `title` varchar(200) DEFAULT NULL,
  `description` varchar(300) DEFAULT NULL,
  `active` tinyint(1) NOT NULL,
  `created` timestamp NOT NULL DEFAULT current_timestamp(),
  `updated` datetime DEFAULT NULL ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `pages`
--
INSERT INTO `pages` (`page_id`, `page_type`, `target`, `title`, `description`, `active`, `created`, `updated`) VALUES
(1, 'products', '/products/1', 'Product 1', 'Text for Product 1 search result.', 1, '2025-06-05 00:00:00', '2025-06-05 07:19:21');
Source table columns:

代码:
[category]
key=page_type
[page]
page_id=page_id
title=title
description=description
pathname=target
active=active
page_date=created
last_update=updated
Inflection map (if you have more than one page type, you can define them here):
代码:
[plural]
products=Products
[singular]
products=Product

Search result:
Search Term.webp



Disclosure: This add-on is fully functional and is only receiving updates if/when it is broken by a core XF update or a bug is found. It could occasionally receive feature updates.
作者
axtona
浏览
172
扩展类型
zip
文件大小
29.3 KB
首次发布
上次更新
评分 0.00 星 0 个评分
Link was Broken? Please 发送消息 给 NP 团队,我们会尽快为您处理!
支持开发者 如果您对测试满意或项目已成功盈利,可点击「更多信息」按钮,通过购买来支持开发者!

最新更新

  1. 1.1.8 - change log
    Bug fix.
  2. 1.1.0 - change log
    Bug fixes.
  3. 1.0.2 - changelog
    Changed minimum PHP version from implicit 8.0 to explicit 7.1.

来自 axtona 的更多资源

Brazilian Language [PT-BR] A
Like the other available Brazilian Portuguese translation
SEO Audit A
SEO Audit 1.1.0
A comprehensive SEO auditing dashboard for XenForo administrators.
XenForo媒体图库 / XFMG A
XenForo媒体图集是官方的XenForo扩展程序,可让您在XF2中添加图集

相似的资源

Custom PHP Pages A
allows creating any number of custom PHP pages with or without the XF layout.
浏览
311
已更新
[AndyB] Custom search A
Search posts using multiple criteria.
浏览
395
已更新
[AndyB] Custom title manager A
Allows viewing and managing custom user titles.
浏览
311
已更新
顶部