有没有基于PHP和jQuery的开源CMS用户管理系统?
我已经尝试了许多 CMS 风格,例如 MODx、Drupal、Joomla 的管理面板,但它们似乎无法像用户一样管理我现有的数据。
我计划为我的网站构建某种控制面板,类似于 CMS 中用于管理用户和其他非内容相关项目的控制面板。我想知道是否有一些东西可以让我开始工作而不是从头开始。
更新: 要执行简单的任务,例如:
- 管理我的用户
- 管理我的内容(该网站是一个图像共享网站,因此在本例中是图像),
我更多地关注图形界面而不是系统,因为我有很多服装内容和数据,例如用户。
I've try many CMS flavors like MODx, Drupal, Joomla for the admin Panel but they can't seem to manage my existing data, like the users.
I'm planing on building some kind of control panel for my site, similar to the one that is used for managing users and other non-content related items in a CMS. I was wondering if there is something out there which I can start working with instead of starting from scratch.
UPDATE:
To do simple tasks like:
- Managing my users
- Managing my content( the site is an image sharing site, so in this case images)
I was looking more into a graphical interface more then a system as i have lots of costume content and data like the users.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
现在问题已经弄清楚了一点,这里有一个 PHP CMS 入门手册,它将引导您从头开始。它从管理用户开始,这似乎就是您所追求的。
由于您正在谈论托管大量图片,因此您可能需要查找更优秀的 来自 Menalto 的画廊 2< /a>,这是一个开源图片管理系统,但远不止于此。它是用 PHP 编写的,并且得到了非常积极的维护。
最后,一个开源 CMS 列表,其中大部分都是用 PHP 编写的。
Now that the question has cleared up a bit, here's a starter's manual for a PHP CMS which takes you by the hand, but from scratch. It starts out with managing users, which seems to be what you're after.
Since you're talking of hosting a lot of pictures, you may want to look up the more than excellent Gallery 2 from Menalto, which is an open source picture management system, but goes much further than just that. It's written in PHP and very actively maintained.
Finally, a list of open source CMS's, of which most of them are written in PHP.
你从 CMS 开始,然后切换到控制面板,也许我误解了,但无论如何让我尝试一下。也许您想找到一个可以控制您自制 CMS 的控制面板?当前大多数控制面板都支持 PHP,并且可能很好地支持任何 CMS(例如 cPanel 或 Plesk 或 喜欢)。
建立管理控制面板是一项艰巨的任务。大多数时候,控制面板由前端(可以用 PHP 构建)和后端组成,后端充当前端和底层操作系统之间的层。 PHP 可能不是所有操作系统上最方便的选择。
编辑:
如果您不需要支持Windows,那么“艰巨的任务”可能会少很多。以下是一些基于 PHP 的控制面板:Baifox(开源)、InterWorx(专有),ISPConfig(开源)、SysCP(开源)、ispCP(后端 Perl,开源)。
You start out with CMS's, then you switch to control panels, maybe I misunderstand, but let me try anyway. Maybe you mean to find a control panel that can control your home-build CMS? Most current control panels support PHP and may well support any CMS (like cPanel or Plesk or the likes).
Building an administration control panel is a huge undertaking. Most of the time, a control panel consists of a front end (which could be build in PHP) and a backend that serves as a layer between the frontend and the underlying operating system. PHP might not be the handiest choice on all OS's.
EDIT:
If you do not need to support Windows, the "huge undertaking" might be quite less. Here are some PHP-based control panels: Baifox (open source), InterWorx (proprietory), ISPConfig (open source), SysCP (open source), ispCP (backend Perl, open source).