flarum_首先看一下Flarum-下一代论坛变得简单

flarum

Flarum is a forums solution that is currently in public beta and is under active development. Today we’re going to take a look at it, get it set up in a Homestead Improved Vagrant virtual machine, and look at the configuration and the features that Flarum offers. Then, we’ll compare it to some other forums platforms to see how it stacks up at a glance.

Flarum是一个论坛解决方案,目前处于公开测试阶段,并且正在积极开发中。 今天,我们将对其进行研究,并在 Homestead Improvement Vagrant虚拟机中进行设置,并研究Flarum提供的配置和功能。 然后,我们将其与其他论坛平台进行比较,以一目了然地了解其堆叠方式。

环境设定 (Environment Setup)

For our environment, we’ll be using a Homestead Improved Vagrant VM. More details about the setup can be found in this quick tip on getting Homestead Improved up and running. If another type of development environment is to be used, we can skip this step, otherwise, please follow the above HI setup guide before continuing.

对于我们的环境,我们将使用Homestead改进的Vagrant VM。 有关此设置的更多详细信息,请参见 启动和运行Homestead Improvement的快速提示 。 如果要使用其他类型的开发环境,我们可以跳过此步骤,否则, 请按照上述HI设置指南进行操作

For the purposes of this article, the folder used is flarum and the application name (and host set up in /etc/hosts) is flarum.app. In our Homestead.yaml, we should have our flarum.app entry pointing to the home/vagrant/Code directory.

就本文而言,使用的文件夹为flarum ,应用程序名称(和在/etc/hosts设置的/etc/hosts )为flarum.app 。 在我们的Homestead.yaml ,我们的flarum.app条目应指向home/vagrant/Code目录。

Now, after vagrant up we should be able to access our app in our browser via http://flarum.app.

现在, vagrant up我们应该能够通过http://flarum.app在浏览器中访问我们的应用程序。

设置Flarum (Setting up Flarum)

We will be loosely following the Flarum installation guide.

我们将大致遵循 Flarum安装指南 。

First, on our host machine, we download the latest release of Flarum (this article was written using the 0.1.0-beta.2 release). Then, we unzip the contents to our flarum directory.

首先,在我们的主机上,我们 下载最新版本的Flarum (本文使用0.1.0-beta.2版本编写)。 然后,将内容解压缩到flarum目录。

Web服务器配置 (Webserver Configuration)

Next, we vagrant ssh into our Homestead VM, and edit our nginx configuration file.

接下来,我们将vagrant ssh到Homestead VM中,然后编辑nginx配置文件。

sudo nano /etc/nginx/sites-available/flarum.app

We’ll need to add the following lines (they can be added just above the location ~ \.php${} block):

我们需要添加以下几行(可以将其添加到location ~ \.php${}块的上方):

location /api { try_files $uri $uri/ /api.php?$query_string; }
    location /admin { try_files $uri $uri/ /admin.php?$query_string; }

    location /flarum {
        deny all;
        return 404;
    }

Then, we’ll restart nginx to make sure that our changes are saved before we begin:

然后,我们将重新启动nginx以确保在开始之前保存我们的更改:

sudo service nginx restart

数据库配置 (Database Configuration)

While still logged into our Vagrant machine, let’s go ahead and set up the Flarum database. When creating the new user, we will choose and set a password for the Flarum application to use to access MySQL.

在仍然登录我们的Vagrant机器的同时,让我们继续设置Flarum数据库。 创建新用户时,我们将为Flarum应用程序选择并设置一个密码,以用于访问MySQL。

mysql -u homestead -psecret
CREATE DATABASE flarum;
  CREATE USER 'flarum'@'localhost' IDENTIFIED BY 'password'; 
  GRANT ALL PRIVILEGES ON flarum.* TO 'flarum'@'localhost';
  FLUSH PRIVILEGES;

We may then exit the MySQL prompt (CTRL+C). Now, on the host computer, we open our browser and enter flarum.app/. We should see the Flarum installation screen.

然后,我们可以退出MySQL提示符( CTRL+C )。 现在,在主机上,我们打开浏览器并输入flarum.app/ 。 我们应该看到Flarum安装屏幕。

Flarum安装 (Flarum Installation)

We’ll call our test forum “Flarum”. Enter the MySQL connection information. Our user was flarum and our password was password.

我们将测试论坛称为“ Flarum”。 输入MySQL连接信息。 我们的用户是flarum ,我们的密码是password

For administrator credentials, we will use forumsadmin, an email, and a password. For the purposes of this demo, we will just use password.

对于管理员凭据,我们将使用forumsadmin ,电子邮件和密码。 就本演示而言,我们将仅使用password

Note: There is a known bug in this process at the time of this writing. If Flarum does not accept the administrator name (if it is invalid), it will fail silently. Usernames must only contain letters, numbers, dashes, and underscores.

注意 :在撰写本文时,此过程中存在一个已知的错误。 如果Flarum不接受管理员名称(如果该名称无效),它将以静默方式失败。 用户名只能包含字母,数字,破折号和下划线。

If all went well, we will be on the main forum screen. Congratulations – our forum is now functional!

如果一切顺利,我们将在论坛主屏幕上。 恭喜,我们的论坛现已开始运作!

初始调整 (Initial Adjustments)

Let’s page through the Flarum administration menu first. We can access the administration menu from the user menu in the top right.

让我们首先浏览Flarum管理菜单。 我们可以从右上角的用户菜单访问管理菜单。

基本 (Basics)

Under Basics, we can change the banner that currently advises us that Flarum is a beta product, and of course the standard Title, Description, etc.

在“基本知识”下,我们可以更改当前告知我们Flarum是beta产品的标语,当然还有标准的标题,说明等。

权限 (Permissions)

Under Permissions, we have a few basic moderation tools, such as:

在权限下,我们有一些基本的审核工具,例如:

  • Viewing Discussions

    查看讨论
  • Signups

    签约
  • Replying

    回覆
  • Post Editing

    后期编辑
  • Liking

    喜欢
  • Moderation Actions

    审核动作

These can all be applied to user groups, and new groups can be created, allowing us to have multiple levels of trust among our users.

这些都可以应用于用户组,并且可以创建新的组,从而使我们在用户之间具有多个信任级别。

出现 (Appearance)

Under Appearance, we can select the hexadecimal colors we’d like for highlighting and for background elements. We can also toggle on a dark mode or colored header. This is also the place where custom CSS rules can be deployed on top of Flarum’s standard CSS.

在外观下,我们可以选择要突出显示和用于背景元素的十六进制颜色。 我们还可以打开深色模式或彩色标题。 这也是可以在Flarum的标准CSS之上部署自定义CSS规则的地方。

扩展名 (Extensions)

The Extensions tab shows us all of the currently installed extensions. We can click the dotted menu icon next to each (when hovering over it) to disable, enable, or uninstall. In the future, we will be able to use the “add extension” button, but for now, we’ll have to manually install extensions by dropping them into our extensions folder, if we find (or create) any third party ones.

扩展选项卡向我们显示了所有当前安装的扩展。 我们可以单击每个图标旁边的虚线菜单图标(将鼠标悬停在其上)以禁用,启用或卸载。 将来,我们将能够使用“添加扩展名”按钮,但是目前,如果我们找到(或创建)任何第三方extensions ,则必须通过将extensions放到extensions文件夹中来手动安装扩展名。

标签 (Tags)

The last menu, Tags, allows us to create tags that can be used on discussions. Flarum employs a two level tag hierarchy – primary and secondary tags. At the moment, it seems as though the creation dialogue only allows the creation of secondary tags. We can drag these up and deposit them as children of a primary tag, or leave them on the secondary tags list to be displayed alongside the primary tag(s) in the Tag list. This is a bit confusing, hopefully to be cleared up later in development.

最后一个菜单,标签,使我们能够创建可用于讨论的标签。 Flarum采用了两个级别的标签层次结构-主标签和辅助标签。 目前,创建对话似乎只允许创建辅助标签。 我们可以将它们向上拖动并将其作为主要标签的子项存放,或者将它们保留在次要标签列表中,并与“主要”标签中的主要标签一起显示。 这有点令人困惑,希望在以后的开发中予以解决。

主题和扩展 (Themes and Extensions)

Theming is a mixed bag with Flarum. There is an easy way to add one-off styles modifications, in the Appearance section of the admin panel. Flarum uses the CSS preprocessor LESS, which was chosen for a variety of reasons by the developers over Sass and other options.

主题与Flarum混在一起。 在管理面板的外观部分,有一种简单的方法可以添加一次性样式修改。 Flarum使用CSS预处理器 LESS ,开发人员 出于各种原因选择了CSS预处理器 LESS来选择Sass和其他选项。

定制示例 (Example Customizations)

Here is our flarum.app, with Dark Mode turned on via the Appearance administration tab.

这是我们的flarum.app ,通过外观管理选项卡flarum.app了暗模式。

We will do a quick customization to demonstrate how simple it is to make small stylistic changes to the theme.

我们将进行快速自定义,以演示对主题进行小的样式更改是多么简单。

If we go to the Appearance tab in the administration menu, and click ‘Edit Custom CSS’, we can then enter our own custom CSS or LESS.

如果转到管理菜单中的外观标签,然后单击“编辑自定义CSS”,则可以输入我们自己的自定义CSS或LESS。

Our goal for this simple customization will be to alter the color of the ‘Start a Discussion’ button. We would like to make it red, to make it more eye-catching to the new visitor. So, after we identify the class we want to target as IndexPage-newDiscussion, we can go ahead and just write out a single line of CSS:

我们进行此简单自定义的目标是更改“开始讨论”按钮的颜色。 我们希望将其设为红色,以使其对新访客更具吸引力。 因此,在我们确定要定位为IndexPage-newDiscussion的类之后,我们可以继续进行操作,只写一行CSS:

.IndexPage-newDiscussion {background:#ff0000;}

And that’s all there is to it. If we take a look at our home page again, we will see our change in place:

这就是全部。 如果再次查看我们的主页,我们将看到适当的更改:

Changes can, in theory, be made to any of the styles in the app. Now, of course, we will want to alter more than a few small styles when we are using Flarum in production. One way to do that will be to build our own theme files, within the extensions system.

从理论上讲,可以对应用程序中的任何样式进行更改。 当然,现在,当我们在生产中使用Flarum时,我们将希望更改多个小样式。 一种方法是在扩展程序系统中构建我们自己的主题文件。

扩展名 (Extensions)

If we have alterations to the structure, functionality, or appearance of the instance to perform beyond what the administration menu or default extensions offer, we can create our own extension. Extensions will be an integral part of Flarum as the community grows, especially given the ease with which they can be created. A skeleton extension can be generated as the first step to create an extension. The theming portion of extensions is explained more fully on the themes documentation page. With regards to themes, Flarum also helpfully provides a list of the LESS variables used in the site in the variables.less file, and they use a BEM naming convention for CSS classes.

如果我们要更改实例的结构,功能或外观以执行超出管理菜单或默认扩展名所能提供的功能,则可以创建自己的扩展名。 随着社区的发展,扩展将成为Flarum不可或缺的一部分,尤其是考虑到可以轻松创建扩展的情况。 可以将骨架扩展生成为 创建扩展的第一步。 扩展的主题部分在 主题文档页面上有更详细的 说明 。 关于主题,Flarum还帮助在variables.less文件中提供了站点中使用的LESS变量的列表,并且它们对CSS类使用 BEM命名约定 。

一般特征 (General Features)

  • Infinite Scrolling – this is similar to Discourse, another modern forums platform. Users seem to have a very polar response to this – we love it, or we hate it. Historically, forums software limits the amount of topics or replies within a topic to a certain amount per “page”, requiring us to load a new page to view more. In Flarum, a viewer of a conversation can just scroll through a conversation, loading more responses as they go, until the end – however long it is.

    无限滚动 –类似于另一个现代论坛平台Discourse。 用户对此似乎有非常反感–我们喜欢它,或者我们讨厌它。 从历史上看,论坛软件将主题或主题中的回复的数量限制为每个“页面”一定数量,这要求我们加载新页面才能查看更多内容。 在Flarum中,对话的查看者可以滚动浏览整个对话,并随即加载更多响应,直到结束(无论时间长短)。

  • Touch Friendly – this is a feature that makes Flarum really stand out. It’s been touch optimized from the start, with gesture support (swipe right to mark a discussion “read” or left to get more options). The animations aren’t overly bulky and the pages are not noticeably slower to load on mobile, either.

    触摸友好 -这是使Flarum真正脱颖而出的功能。 从一开始就对触摸进行了优化,并提供了手势支持(向右滑动以将讨论标记为“已读”,向左滑动以获取更多选项)。 动画也不会过于庞大,并且页面在移动设备上的加载也不会明显变慢。

  • URLs – Flarum URL formats are intuitive. The url of the tag ‘General’ will be <app base url>/t/general. The URL of our first discussion called ‘test’ which is tagged as ‘general’ will be <app base url>/d/1-test. Also, a post number is appended to the URL to indicate which post within a discussion is being read.

    URL – Flarum URL格式直观。 标签“常规”的url为<app base url>/t/general 。 我们第一次讨论的名为“ test”的URL被标记为“ general”,将为<app base url>/d/1-test 。 另外,URL后面会附加一个帖子编号,以指示正在阅读讨论中的哪个帖子。

  • Editor – Flarum employs a “floating editor” which appears as a sort of pop up attached at the bottom of the page. We can navigate freely around Flarum while composing our reply to a discussion, allowing us to look at other discussions as needed to compose our response. This is a feature also found in Discourse, and it’s quite handy. The Flarum editor supports MarkDown, BBCode, and Emoji, and will be extensible to support more.

    编辑器 – Flarum使用了一个“浮动编辑器”,它以一种弹出式形式出现在页面底部。 在撰写对某个讨论的答复时,我们可以在Flarum上自由浏览,从而使我们能够根据需要查看其他讨论以构成我们的回应。 这也是“话语”中的一项功能,非常方便。 Flarum编辑器支持MarkDown,BBCode和Emoji,并且可以扩展以支持更多内容。

  • Moderation – The customizable moderation groups and permissions are a definite boon for the platform. Even in beta stages, there is already attention being given to moderation, which any community administrator knows is a critical part of running forums.

    审核 –可自定义的审核组和权限对于平台来说无疑是福音。 即使在测试阶段,也已经开始关注主持人,任何社区管理员都知道主持人是运行论坛的关键部分。

与其他平台的比较 (Comparison to Other Platforms)

Overall, Flarum seems as if at release, it may compare well to modern forums platforms like Discourse. Discourse or NodeBB may well be the only real competitors in the same arena. While other modern forums platforms exist, such as vBulletin 5 or Vanilla, Flarum feels like it stands out in a way countered by few. In some cases, it may boil down to a language preference: Discourse is a Ruby on Rails platform, while NodeBB is a Node.js platform.

总体而言,Flarum似乎在发布时,可以与Discourse之类的现代论坛平台相提并论。 话语或 NodeBB很可能是同一领域中唯一真正的竞争对手。 尽管存在其他现代论坛平台,例如vBulletin 5或Vanilla,但Flarum觉得它以很少有人反对的方式脱颖而出。 在某些情况下,它可能归结为语言偏好:Discourse是Ruby on Rails平台,而NodeBB是Node.js平台。

Flarum is very mobile friendly, which is a struggle for forums in general, but a critical future-proofing feature. Discourse is getting there, but is still a little clunky on mobile, and NodeBB is also mobile friendly – in fact, it claims to be developed mobile first.

Flarum对移动设备非常友好,这对于论坛来说是一个艰巨的挑战,但它是面向未来的关键功能。 话语已经到了,但在移动设备上仍然有些笨拙,NodeBB也是移动设备友好的–实际上,它声称首先开发移动设备。

The tag based navigation of Flarum may alienate fans of static categories, but we see this more and more in web applications, and tag based sorting definitely has its advantages. Discourse, conversely, uses both categories and tags, and how the combination works out can depend wildly on the implementation, sometimes very useful, other times just a mess. It may depend on the user base’s preferences whether tag-based sorting is a pro or a con of Flarum.

Flarum的基于标签的导航可能会疏远静态类别的支持者,但是我们在Web应用程序中越来越多地看到这种情况,并且基于标签的排序无疑具有其优势。 相反,话语同时使用类别和标签,并且组合的工作方式可能完全取决于实现,有时非常有用,有时只是一团糟。 基于标签的排序是Flarum的优点还是缺点,这取决于用户群的偏好。

Resources are another big concern, when comparing platforms, and Flarum wins the contest with most other modern platforms (like Discourse) hands-down. It can run on hosts with lower specifications, and feels snappier. This comes at a cost though, as we are forced to consider that more (relatively) mature platforms such as Discourse may have more stability, and already have large communities to support and extend them. Flarum is not yet even ready for production, so time will tell whether this advantage shrinks or becomes overshadowed.

比较平台时,资源是另一个大问题,而Flarum与其他大多数现代平台(如Discourse)一起赢得了比赛。 它可以在规格较低的主机上运行,​​并且感觉更加敏捷。 不过,这是有代价的,因为我们被迫考虑像Discourse这样的更多(相对)成熟的平台可能具有更高的稳定性,并且已经有大型社区来支持和扩展它们。 Flarum尚未准备好进行生产,因此时间将证明这种优势是缩小还是被掩盖了。

结论 (Conclusions)

Whether one chooses Flarum as their forums platform of choice may depend on a variety of things. What language do we prefer? A PHP core makes Flarum an excellent choice for PHP developers and for those working with pre-existing PHP applications. The release roadmap and progress of Flarum may tell us much, as well. We can watch to see the development progress, feedback from users, and features that are added into Flarum. As the extensions system matures, and the theming options, we will be able to gauge how customizable this platform will actually be – and whether or not a strong user base grows behind it, or whether it falters. Either way, it should definitely remain on our radar for future projects!

是否选择Flarum作为他们选择的论坛平台可能取决于多种因素。 我们喜欢哪种语言? 对于PHP开发人员以及使用预先存在PHP应用程序的开发人员来说,Flarum是PHP的绝佳选择。 Flarum的发布路线图和进度可能也会告诉我们很多信息。 我们可以观察到开发进度,用户反馈以及Flarum中添加的功能。 随着扩展系统的成熟以及主题选项的发展,我们将能够评估该平台的实际可定制性-以及强大的用户群是否在其后面发展,或者它是否步履蹒跚。 无论哪种方式,对于将来的项目,它绝对应该留在我们的雷达上!

翻译自: https://www.sitepoint.com/first-look-at-flarum-next-generation-forums-made-simple/

flarum

culi3182
关注 关注
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
upload:Flarum论坛具有疯狂智能的文件上传扩展名
05-13
由FriendsOfFlarum上传 一个扩展程序,可为您的论坛智能地处理文件上载。 特征 对于图像: 自动水印。 自动调整大小。 Mime类型以上传适配器映射。 将mime类型列入白名单。 在不同的存储服务(例如本地,imgur,AWS S3)上上传。 拖放上传。 一次上传多个文件(按钮和拖放均支持此功能)。 易于扩展,扩展严重依赖于事件。 扩展器接口,以禁用或强制使用特定适配器(请参见下文) 安装 使用composer手动安装: composer require fof/upload 更新中 composer require fof/upload php flarum migrate php flarum cache:clear 从鞭Flag更新 该扩展替代了 。 要将旧扩展升级到新扩展,请执行以下操作: 备份您的数据! 您应该备份数据库和上传的文件。 确保已
Flarum:论坛简单-开源
06-04
Flarum 是一个令人愉快的简单论坛软件,用于您的网站。 它简单、快速且友好,具有构建伟大而成功的社区所需的所有功能。 Flarum 是用 PHP 构建的,没有复杂的依赖关系。 它经过精心设计,在所有平台上都具有响应性和...
springboot三层架构解决报错信息:o.a.c.c.C.[.[.[/].[dispatcherServlet] : Servlet.service() for servlet
qq_51950796的博客
07-23 6161
javaweb程序报错Servlet.service() for servlet [dispatcherServlet] in的解决方案
Flarum 源码安装错误
u010424011的博客
09-02 818
使用 lnmp 环境成功的 run 了一个 flarum-china 的论坛之后,想直接复制一份 run 起的论坛代码,再通过 nginx 新开一个端口新起一个新的论坛。去掉 config 文件重新走了一道 flarum install 的页面流程之后,进入论坛就只展示了各标题。 打开 chrome 控制台,发现 js 文件和 css 文件都加载失败。
纯小白 buntu22.04搭建Flarum
wjf0504的博客
03-27 651
Install Flarum
flarum论坛如何html,Flarum从入门安装到基本设置
weixin_33438788的博客
06-08 660
正文本教程为基础教程,仅适合新手使用,大佬勿喷,本文主要讲composer安装,不适合虚拟主机,当然也可以在本地composer安装好在上传虚拟主机。安装准备首先检查服务器环境,你的服务器必须满足以下条件:web 服务器: Apache (with mod_rewrite), Nginx, or LighttpdPHP 5.6+ 和这些扩展: mbstring, pdo_mysql, openss...
优雅简洁的轻论坛--flarum部署
国英龙的博客
03-26 1705
Flarum是一款现代的,优雅的,简洁的,强大的论坛软件。Flarum 让在线交流得更加轻松愉快。
flarum-ext-copy-code-clipboard:一种Flarum扩展名,允许用户轻松复制代码标签内的文本
02-22
composer require nearata/flarum-ext-copy-code-to-clipboard 更新 composer update nearata/flarum-ext-copy-code-to-clipboard php flarum cache:clear 消除 composer remove nearata/flarum-ext-copy-code-to-...
flarum-ext-auth-ldap:Flarum的LDAP身份验证扩展,这是一个用于建立社区的简单论坛软件
04-28
Flarum LDAP认证此扩展使用户可以通过LDAP登录 。如何安装composer require tituspijean/flarum-ext-auth-ldap并在Flarum的管理面板中将其激活。语言能力该扩展名已翻译成法文和英文。配置 LDAP server name :在...
White:bbPress 的白色主题,如 Flarum
06-05
安装 谁在使用这个主题: 如果您使用此主题,请将您的网址发送至 首先从下载 teme 在您的 WordPress teme 中上传 bbPress 文件夹后,例如 /wp-content/themes/your-teme/[here] 安装插件 white.php /wp-admin/plugin-install.php?tab=upload 或复制文件 /wp-content/plugins/ 并激活他。 激活后,进入您的 wp-admin 和 config 插件。 现在你最安装插件 从 bbPress Settings 或 /wp-admin/options-general.php?page=bbpress Forum Root更改为forum并且Forum root 应显示为Topics by Freshness Uputstvo na Srpskom:
flarum-ext-embed-video:Flarum扩展,允许用户使用BBCode嵌入视频
04-29
嵌入视频 扩展,允许用户使用BBCode嵌入视频。 安装 composer require nearata/flarum-ext-embed-video 更新 composer update nearata/flarum-ext-embed-video php flarum cache:clear 去掉 composer remove nearata/flarum-ext-embed-video php flarum cache:clear 质量转换 请参阅 。 贡献 叉它 提交您的更改 推到分支 创建一个新的拉取请求 学分 用于HTML5视频播放器的 。 执照 根据MIT许可证分发。 有关更多信息,请参见。
Flarum:Flarum-优雅自由PHP轻社区
02-03
Flarum是一种自由,开源的论坛软件,它专注于简单。通过Flarum您可以轻松地为您的网站打造一个论坛。 ---- 目标 Flarum继承于和 。它的目标是: 快速,简单没有混乱,没有膨胀,没有复杂的依赖关系.Flarum使用PHP构建,因此它很容易部署。界面使用秘银,它是一个高性能JavaScript框架。 漂亮,响应式Flarum由我们的设计师精心设计,它是跨平台的,开箱即用的。界面布局使用了LESS,所以主题风格只是小事一桩。 强大,可扩展以便满足您的社区需求,您可以定制,扩展和集成Flarum。Flarum的架构非常灵活,它拥有非常全面的API和文档。 自由,开放Flarum基于发布
美化页面css
03-05
美化页面css 博文链接:https://shangdiyefankun.iteye.com/blog/100829
flarum-seo:完美的SEO,适合您的Flarum论坛
05-04
:card_index_dividers: Flarum SEO 第一个Flarum扩展程序,将SEO标签添加到您的Flarum论坛。 :inbox_tray: 安装如果要安装此扩展,请运行以下命令: composer require v17development/flarum-seo :recycling_symbol:...
php7安装flarum,如何在Ubuntu 18.04上安装Flarum社区软件
weixin_33327330的博客
03-19 264
如何在Ubuntu 18.04上安装Flarum社区软件Flarum是一款用PHP和Mithril.js编写的免费开源软件。 它是一款简单,快速,美观且反应灵敏的软件,专门设计用于跨平台的一致性和直观性,即开即用。 您可以在几分钟内轻松设置社区,以便与使用Flarum的人群保持联系。在本教程中,我们将解释如何在Ubuntu 18.04服务器中安装Flarum。要求运行Ubuntu 18.04的服务...
1Panel本人目前为止,遇到过的最牛docker管理工具
ko_10086的博客
07-30 2585
通过 Web 端轻松管理 Linux 服务器,包括主机监控、文件管理、数据库管理、容器(包括docker)管理等;:深度集成 Wordpress 和 Halo,域名绑定、SSL 证书配置等一键搞定;:基于容器来管理和部署应用,最小漏洞暴露面,提供防火墙和日志审计等功能;:支持一键备份和恢复,备份数据到各类云端存储,永不丢失。环境地址:https://demo.1panel.cn/
打开别人springboot项目出现错误(encountered a problem)
qq_44598783的博客
01-07 1067
打开别人springboot项目出现错误 这是我才进入公司准备做的第一个功能,经理给我项目叫我打开,我们用的sts(和eclipse差不多的软件),因为用的自己电脑第一次就去官网下了最新的sts版本,结果打开公司项目一直出错,网上看了很多解决方案,比如什么 1、导包问题。 2、没有启动项,文件中的j是空心的不是可执行文件。3、xml文件莫明奇妙报错等用了很多办法还是不能解决。 最后发现是版本问题,因为公司项目是3年前的当时用的版本比较老,新版本存在很多不兼容问题。这个时候就只有找人要做项目时候的版本了!
解决:Flarum项目样式错乱,报app错误
猿学
07-15 290
解决:Flarum项目样式错乱,报app错误 问题原因是服务器中的域名和项目代码中config.php中的url不一致,此类问题多发生在项目本地化后自行配置域名 解决:打开项目根目录下的config.php文件,修改url参数与自行配制的域名保持一致 ...
docker flarum
最新发布
09-05
Docker Flarum是一个使用Docker构建的Flarum论坛的Docker镜像。Flarum是一个现代化的轻量级论坛软件,使用PHP和Laravel框架开发。通过使用Docker,可以快速搭建并部署Flarum论坛。 要使用Docker Flarum搭建论坛,你需要执行一些命令来安装必要的插件和扩展。例如,你可以使用以下命令来添加中文语言包、中文搜索插件和图片上传插件: ``` docker exec -ti flarum extension require flarum-lang/chinese-simplified docker exec -ti flarum extension require ganuonglachanh/flarum-ext-search docker exec -ti flarum extension require fof/upload ``` 这些命令将在已经运行的Docker容器中安装相应的插件和扩展,以增强Flarum论坛的功能。 总之,Docker Flarum是使用Docker构建的Flarum论坛的Docker镜像,可以通过命令行添加插件和扩展来扩展其功能。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [docker安装flarum步骤记录](https://blog.csdn.net/qq_37887537/article/details/130071605)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
写文章

热门文章

  • css底部边框_底部边框(CSS属性) 7187
  • css按钮按下改按钮颜色_现代CSS按钮基础知识简介 5534
  • twitter_充分利用Twitter的12种方法 4853
  • vue 看sass版本_看看不同的Sass架构 4807
  • twitter关注推荐_Twitter的关注限制使Twitter不再有用 4669

您愿意向朋友推荐“博客详情页”吗?

  • 强烈不推荐
  • 不推荐
  • 一般般
  • 推荐
  • 强烈推荐
提交

最新文章

  • css快速掌握_5个帮助您掌握现代CSS的项目
  • css快速入门_CSS视口单位:快速入门
  • tailwind css_如何使用Tailwind CSS构建独特,美观的网站
2020年1264篇

目录

目录

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43元 前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值

深圳SEO优化公司临汾seo网站推广伊犁优秀网站设计推荐丹东关键词按天收费坪地网站建设设计公司南昌网站优化软件梧州百度标王哪家好廊坊seo排名价格阜新网页设计报价龙岗关键词按天计费公司张掖SEO按天计费哪家好梧州优化大运百度标王多少钱钦州关键词按天计费价格宝鸡网站优化推广价格萍乡百搜标王公司菏泽SEO按效果付费多少钱鹰潭网站优化按天扣费价格长葛网站制作设计价格绥化如何制作网站推荐马鞍山seo报价上饶网站优化按天扣费多少钱吉祥至尊标王推荐常州seo报价吉林模板推广包头模板制作青岛百度竞价多少钱张家界百度网站优化价格观澜网站推广工具推荐六安SEO按效果付费长沙seo网站优化哪家好歼20紧急升空逼退外机英媒称团队夜以继日筹划王妃复出草木蔓发 春山在望成都发生巨响 当地回应60岁老人炒菠菜未焯水致肾病恶化男子涉嫌走私被判11年却一天牢没坐劳斯莱斯右转逼停直行车网传落水者说“没让你救”系谣言广东通报13岁男孩性侵女童不予立案贵州小伙回应在美国卖三蹦子火了淀粉肠小王子日销售额涨超10倍有个姐真把千机伞做出来了近3万元金手镯仅含足金十克呼北高速交通事故已致14人死亡杨洋拄拐现身医院国产伟哥去年销售近13亿男子给前妻转账 现任妻子起诉要回新基金只募集到26元还是员工自购男孩疑遭霸凌 家长讨说法被踢出群充个话费竟沦为间接洗钱工具新的一天从800个哈欠开始单亲妈妈陷入热恋 14岁儿子报警#春分立蛋大挑战#中国投资客涌入日本东京买房两大学生合买彩票中奖一人不认账新加坡主帅:唯一目标击败中国队月嫂回应掌掴婴儿是在赶虫子19岁小伙救下5人后溺亡 多方发声清明节放假3天调休1天张家界的山上“长”满了韩国人?开封王婆为何火了主播靠辱骂母亲走红被批捕封号代拍被何赛飞拿着魔杖追着打阿根廷将发行1万与2万面值的纸币库克现身上海为江西彩礼“减负”的“试婚人”因自嘲式简历走红的教授更新简介殡仪馆花卉高于市场价3倍还重复用网友称在豆瓣酱里吃出老鼠头315晚会后胖东来又人满为患了网友建议重庆地铁不准乘客携带菜筐特朗普谈“凯特王妃P图照”罗斯否认插足凯特王妃婚姻青海通报栏杆断裂小学生跌落住进ICU恒大被罚41.75亿到底怎么缴湖南一县政协主席疑涉刑案被控制茶百道就改标签日期致歉王树国3次鞠躬告别西交大师生张立群任西安交通大学校长杨倩无缘巴黎奥运

深圳SEO优化公司 XML地图 TXT地图 虚拟主机 SEO 网站制作 网站优化