brainwidth
Forum Replies Created
-
Forum: Installing WordPress
In reply to: How do I get PHP and MySQL?Unless you are trying to set up a local installation of WordPress on your own computer, you will be running WordPress on your host’s server. That host will almost certainly have PHP and MySQL already installed, and will provide you with tools to set up to a MySQL database.
Forum: Fixing WordPress
In reply to: XML Parsing Error on RSS FeedIt’s got to be your wp-blog-header, because it has to be a file that’s called in wp-rss2.
Forum: Fixing WordPress
In reply to: XML Parsing Error on RSS FeedJust down to where it says <channel>
Forum: Fixing WordPress
In reply to: XML Parsing Error on RSS FeedHey macmanx, I know you’re just trying to help, but repeating your comments verbatim is patronizing and annoying. Please don’t.
Forum: Fixing WordPress
In reply to: XML Parsing Error on RSS FeedCan you post the top of your wp-rss2.php file here? the actual php file, not the output from your browser.
Forum: Fixing WordPress
In reply to: XML Parsing Error on RSS FeedCheck https://www.sooz.com/wp-rss2.php for the blank line.
Forum: Fixing WordPress
In reply to: Feed Validator says feed not valid!!Take a look here.
Forum: Installing WordPress
In reply to: url’s in new window?30 minutes may be a long time in your 14-year-old world, but it’s not a lot of time on this forum, especially on the weekend.
Forum: Everything else WordPress
In reply to: copyrightThat’s one of the things I like about the CC licenses. While they have all of the important legal text, they also provide succinct clear english summaries. For example, see the Creative Commons version of the GPL.
Forum: Everything else WordPress
In reply to: copyrightThanks, Jinsan, I hope this is helpful. The most important lesson, I think, is to make sure you read and understand the license to the software you are using to develop your own software. For most WordPress users, this is important when using and modifying a theme released under a license like the GPL. Understanding what your obligations are when you modify, use, and redistribute a theme is important.
Forum: Everything else WordPress
In reply to: copyrightDISCLAIMER: I am a lawyer, but I am NOT your lawyer. What follows is speculation, and is NOT legal advice. If you plan on writing and distributing either source or object code and are concerned about these issues, please consult your own lawyer.
First, under what license is PHP released? Different versions of PHP have been released under different licenses. Early versions of PHP 3 were released under the GPL. For whatever reason, the developers decided to release later versions of PHP 3 under a license based on the QPL. The QPL, like the LGPL, is a license designed to cover code libraries. A code library, for those of you who are unfamiliar with the term, is a program, like PHP, which contains functions that other programs can rely on.
The PHP developers changed their minds again, however, and released PHP 4 under the the PHP License version 3.0, which they apparently wrote themselves. The new license is very sparse, and is not explicit about what a software author needs to do to comply with the license when releasing a script based on the code. The new PHP license contain three basic restrictions.
First, redistribution of either source or binary code must contain the copyright notice and conditions of the PHP License, version 3.0. However, the license does not define what code is covered by such a redistribution. Because it’s undefined, I would argue that this restriction in the license covers redistribution of PHP itself, not of any software which uses PHP. This is supported by the fact that this restriction does not refer to “derived” works, as do later restrictions.
Second, a software author may not use the name “PHP” name, endorse, or promote any products “derived from this software.” In other words, a software author can’t call his piece of software, derived from PHP, “PHP Foo.” However, the license does not instruct a software author on how to determine if their product is “derived from” PHP.
Third, the license requires that “[r]edistributions of any form whatsoever must retain the following acknowledgment: This product includes PHP, freely available from <https://www.php.net/>.”
These restrictions, unlike those in the GPL, do not appear to impose any requirement that a script which uses PHP functions must be licensed under the same license. In other words, a software author who writes such a script should be able to write and release a script which is licensed under any terms he or she chooses, including GPL, CC, etc.
What if PHP were licensed under the GPL? Would a software author have to release his or her software under the GPL as well? I think the answer to that is probably not. There are two kinds of code libraries. The first allows a software author to actually incorporate pieces of the code library into his product and distribute the completed product in executable form. The executable would actually contain chunks of the code library, and would be a stand-alond product. In that case, the product is almost certainly a derivative work of the code library, and must be released under the GPL, if that’s the license under which the code library is released. However, a script which uses PHP commands does not actually incorporate pieces of the PHP code library. Instead, a PHP script relies on an external installation of PHP, installed on the same server. Because the code library is external to and not included in or distributed with the script, the script is probably not a derivative work and can be released under terms chosen by the author. This guy, also a lawyer, agrees.
Remember, legal advice must be provided in the course of an attorney-client relationship specifically with reference to all the facts of a particular situation and the law of your jurisdiction. Even though I am an attorney, you must not rely on this post as a substitute for obtaining specific legal advice from a licensed attorney.
Forum: Fixing WordPress
In reply to: A few quick questions about FlickrIn your Flickr account settings, there is an option page which lets your style the picture sent from Flickr to your blog, including captions. Adjust those settings by removing the offending text, and you should be good to go.
Forum: Fixing WordPress
In reply to: Page displays wronglyI get a 404 not found error when trying to access your css file. Are you sure it’s in the right place?
Forum: Plugins
In reply to: Allow phpbb registered users to have their own WP blogYou might have better luck asking on the WordPress multiuser boards.
Forum: Your WordPress
In reply to: Schapelle Corby Official site Rockin on wordpressCongrats on getting the site up and running, but Root is right. You need to give credit to the designers of the theme your site is based on, and you need to NOT slap a generic copyright claim at the bottom when parts of the design are not yours to copyright.
Edit: I didn’t check the css, but I guess that’s sufficient–although the css isn’t the only code from the theme you’re using. However, at the very least, the copyright claim is still overly broad. Indeed, because the original theme was released under the GPL, any modification you made in the CSS, XHTML, or other parts of the design must also be released under the GPL.
I don’t mean this as a personal criticism, but for end-users the GPL is not a “use this theme free of consequences” license. The GPL still imposes obligations on those who use licensed code. Please take the time to read the GPL or whatever license under which the code you wish to use is released.