English 中文(简体)
• 如何使用PHP CMS? [闭门]
原标题:Releasing a PHP CMS... how to? [closed]
Closed. This question is off-topic. It is not currently accepting answers.

。 因此,在Stack Overflow的

Closed 12 years ago.

即将发布在PHP(使用Zentd Framework)中撰写的CMS。 一旦你们理解,它就非常强大和易于管理。

我很想在商业许可下释放一些人(我想要钱),但我认识到,在市场上,公司社会责任会饱和。

因此,我认为我会根据一些开放源许可证予以释放。 我知道我必须选择许可证,但问题是:一旦选择许可证,我需要做什么才能发放? 因此,人们不能仅仅说是“智慧”了,而是说它造成了这种局面。

我在网站上读到,我刚刚需要建立一个称为“许可”的档案,并在其中写出许可证,但安全情况如何? 我知道,这部法律无法编纂或混淆,因此我对我创立的“官员”做了什么?

感谢大家的关注。

问题回答

许可证实际上并不阻止人们观看/拿走法规,而如果某人违反许可证规定,他们就有理由对这些人采取法律措施。

许可证从你具体规定其拥有适用于该守则的执照之时起即为正式发放。 这样做的最常见方式是,在下载时列入一份许可证文本文件(以及许多共同的公开来源许可证具体提到在任何复印件时将许可证列入代码),但如果你在网站或网站上注明许可证,则同样有效。

开放源项目是没有办法的。 如果许可证规定允许使用者重新分配或修改代码,他们可以自由这样做。 开放源头背后的想法是,任何人都可以看到来源代码。 是不是的公开来源,只是带有暴露端点的专有代码。

考虑你希望执行哪些许可证;一个良好的起点是研究其他开放源项目,这些项目有你可以理解的许可证。 例如,在。 阿帕奇代码在其中大多数有“Boilerplate”代码,由你在“号”文件上的位置(证明档案属于一定许可)。

虽然没有公开的许可证执行手段,但你可以向社区和行业施压,确保不违反许可证规定。 如果某人违反许可证规定,你可以选择发出停止通知或提起法律诉讼。

希望这一帮助。

这确实是一个法律问题,虽然Stack Overflow对方案拟定问题来说是好的,但它并不真的是要向你们提供法律咨询。 您请律师。

尽管如此,我不是律师,但在美国,我已听说,你应当把你的创作提交给。 这样做的真正目的是,如果你被起诉(或想起诉某个人),你就可以生产出一种“产生”的东西。 在Berne Convention之下,你的工作有版权,但美国法院仍然希望看到一些证据。

但是,这同样非常有用,只有有人把你带上法庭,或者如果你想把某人带上法庭。 作为一个实际问题,甚至可能不会出现。

对其他国家的咨询意见可能有所不同。

探讨ExpressionEngine。 他们改用了一种以商业客户关系为基础的企业社会责任。

我很想在商业许可下释放一些人(我想要钱),但我认识到,在市场上,公司社会责任会饱和。

因此,我认为我会根据一些开放源许可证予以释放。

你似乎谈论的是 Commercial" and open-source",就像他们反之。 http://en.wikipedia.org/wiki/Commercial_ open_source_applications” rel=“nofollow noreferer”>“开放源”?

我需要做些什么才能释放它? 因此,人们不能仅仅说是“智慧”了,而是说它造成了这种局面。

有些人可以偷窃你的法典,如果你公布的话(即使经过编辑,从理论上讲,这有可能改变理论,尽管实际上可能不可行),许可证只是赋予你采取法律行动的权利。

我在网站上读到,我刚刚需要建立一个称为“许可”的档案,并在其中写出许可证,但安全情况如何?

许可证给你以法律保障。

关于“扶植官员”问题,您可考虑设立项目主办人,如来源法或谷歌法。 一旦贵国的法典在SVN或另一个VCS存放处,就有一个与它相关的时间序列。 如果你使用一种值得信赖的大型托管服务,这在很大程度上证明了你的主人翁精神。

As for the license: use the GNU GPL if you don t want code reuse. Use the LGPL if you want to permit and encourage it. Use the AGPL if you want contributions back. Or use MIT or BSD-style licenses if you want attribution and to spread quality code instead.
But as you already mentioned, there is an abundance of WebCMSes. So it won t make much of a difference anyway.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签