From 6e80ba44a84989fc64b84716fe377cfcb6c5731e Mon Sep 17 00:00:00 2001 From: Maxime Culea Date: Fri, 7 Sep 2018 14:33:13 +0200 Subject: [PATCH 1/8] Add github templates --- .github/CONTRIBUTING.md | 30 ++++++++++++++++++++++++++++++ .github/ISSUE_TEMPLATE.md | 24 ++++++++++++++++++++++++ .github/PULL_REQUEST_TEMPLATE.md | 15 +++++++++++++++ 3 files changed, 69 insertions(+) create mode 100644 .github/CONTRIBUTING.md create mode 100644 .github/ISSUE_TEMPLATE.md create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100644 index 0000000..41da8ed --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,30 @@ +Thanks for contributing ! + +# Getting Started + +* Make sure you have a [GitHub account](https://github.com/signup/free). +* Check if your issue has already been discussed (or even fixed) earlier. You can [search for existing issues](../../../issues?q=is%3Aissue). +* Assuming it does not already exist, [create a new issue](../../../issues/new). + * Clearly describe the issue. In case you want to report a bug, include steps to reproduce it. + * Make sure you fill in the requested details to provide as much information as possible. +* Fork the repository on GitHub. + +# Making Changes + +* Create a topic branch from where you want to base your work. + * This is usually the `master` branch. + * Only target release branches if you are certain your fix must be on that branch. + * To quickly create a topic branch based on the `master` branch: + * `git checkout -b issue/{issue-number} master` + * a good example is `issue/7` +* Make commits of logical units and that messages are helpful. + +# Submitting Changes + +* Push your changes to the according topic branch in your fork of the repository. +* [Create a pull request](../../../compare) to our repository. +* Wait for feedback. The team looks at pull requests on a regular basis. + +# License + +By contributing code, you grant its use under the [GPLv3 or Later license](../LICENSE.md). diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md new file mode 100644 index 0000000..f824866 --- /dev/null +++ b/.github/ISSUE_TEMPLATE.md @@ -0,0 +1,24 @@ + + +#### Version information + +* Tool version : + +#### Steps to reproduce + +1. +2. +3. + +#### What was expected + + +#### What happened instead diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..4c45f9c --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,15 @@ + + +This pull request fixes issue #{id}. + +It will apply the following changes : + +* +* +* From e7a827e69bfe2e94a5bf625461df13d205f1fae5 Mon Sep 17 00:00:00 2001 From: Maxime Culea Date: Fri, 7 Sep 2018 14:33:34 +0200 Subject: [PATCH 2/8] Update readme + refactor + branding + more installation informations --- README.md | 59 +++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 42 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 72a3da2..05de679 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,32 @@ -phpwpinfo -========= +![Be API Github Banner](.wordpress.org/banner-github.png) -phpwpinfo provides an equivalent to the phpinfo() function that reports WordPress Requirements information about the PHP/MySQL/Apache environment, and offers suggestions for improvement. +# phpwpinfo -This tool allows you to quickly test environment server where you want to install WordPress. -The default credentials for display the result are : +phpwpinfo provides an equivalent to the `phpinfo()` function but with more WordPress requirements details about the PHP/MySQL/Apache environment and also offers suggestions for improvement. +This tool allows you to quickly test environment server where you want to install WordPress. It is written in full PHP and use Bootstrap for HTML/CSS/JS purpose, provided by [CDN](http://www.bootstrapcdn.com). +# How ? + +## Installation + +Talking about the main file ([phpwpinfo.php](https://github.com/BeAPI/phpwpinfo/blob/master/phpwpinfo.php)), copy it's content, download the [raw](https://raw.githubusercontent.com/BeAPI/phpwpinfo/master/phpwpinfo.php) file or even better "wget" it directly on your server : +`wget https://raw.githubusercontent.com/BeAPI/phpwpinfo/master/phpwpinfo.php` + +## Usage + +Then simply reach the my-site.com/phpwpinfo.php url on your site to get the results, which are protected with the following credentials : * Login : wordpress * Password : wordpress -This script can, if your server allow it, delete itself. +# What ? + +## 1. Self deletion + +This tool can, if your server allow it, delete itself. + +## 2. What it checks for It tests various elements such as : - * PHP & MySQL Version * Apache modules * PHP Extensions @@ -20,22 +34,33 @@ It tests various elements such as : * MySQL Configuration * Mail server feature -It also allows you to quickly view phpinfo () and MySQL variables. +## 3. Display phpinfo and more -Finally, it allows (if you server allows it) to quickly install : +It also allows you to quickly view `phpinfo()` and MySQL variables. +## 4. Quick install + +Finally, it allows (if you server allows it) to quickly install : * [Adminer](http://www.adminer.org/en/) * [PHPsecinfo](http://phpsec.org/projects/phpsecinfo/) * [Latest version of WordPress (US)](http://wordpress.org/) -This script is writted in full PHP and use Bootstrap for HTML/CSS/JS provided by CDN (http://www.bootstrapcdn.com/) +## Contributing + +Please refer to the [contributing guidelines](.github/CONTRIBUTING.md) to increase the chance of your pull request to be merged and/or receive the best support for your issue. + +### Issues & features request / proposal + +If you identify any errors or have an idea for improving this tool, feel free to open an [issue](../../issues/new). Please provide as much info as needed in order to help us resolving / approve your request. + +# Who ? + +Created by [Be API](https://beapi.fr), the French WordPress leader agency since 2009. Based in Paris, we are more than 30 people and always [hiring](https://beapi.workable.com) some fun and talented guys. So we will be pleased to work with you. + +This tool is only maintained, which means we do not guarantee some free support. Consider reporting an [issue](#issues--features-request--proposal) and be patient. -License: GPL v2 +If you really like what we do or want to thank us for our quick work, feel free to [donate](https://www.paypal.me/BeAPI) as much as you want / can, even 1€ is a great gift for buying cofee :) -### Changelog: +## License -* Version 1.1 - * Implement recommended/required for each config/module - * Improve test config value -* Version 1.0 - * Initial release \ No newline at end of file +phpwpinfo is licensed under the [GPLv3 or later](LICENSE.md). \ No newline at end of file From dd63cf426bebb361efdbaf07fcf2ddeb9dedadf0 Mon Sep 17 00:00:00 2001 From: Maxime Culea Date: Fri, 7 Sep 2018 14:33:41 +0200 Subject: [PATCH 3/8] add github banner --- banner-github.png | Bin 0 -> 82370 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 banner-github.png diff --git a/banner-github.png b/banner-github.png new file mode 100644 index 0000000000000000000000000000000000000000..79832a629145224ace8136bafb2d4bc686e84d44 GIT binary patch literal 82370 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 ggQ!|BKFpGG=8hg8%>k07*qoM6N<$g1azt(*OVf literal 0 HcmV?d00001 From 7b1315d4804e816e3999cb4089e139dc11666067 Mon Sep 17 00:00:00 2001 From: Maxime Culea Date: Fri, 7 Sep 2018 14:33:58 +0200 Subject: [PATCH 4/8] Split into a dedicated readme file --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..878ebd4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# Changelog ## + +## 1.4.0 +- Refactor readme +- Branding +- Add readme's installation section and usage + +## 1.1 +* Implement recommended/required for each config/module +* Improve test config value + +## 1.0 +* Initial release \ No newline at end of file From 223ba97f2516e9f4848d087daa05ebfcb192268f Mon Sep 17 00:00:00 2001 From: Maxime Culea Date: Fri, 7 Sep 2018 14:34:10 +0200 Subject: [PATCH 5/8] Add license file --- LICENSE.md | 711 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 711 insertions(+) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..db2ccb2 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,711 @@ +phpwpinfo / Provides an equivalent to the `phpinfo()` but with more WordPress requirements details. + +Copyright 2017-2018 Be API and contributors + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + +This program incorporates work covered by the following copyright and +permission notices: + + phpwpinfo / Provides an equivalent to the `phpinfo()` but with more WordPress requirements details. + + Copyright 2017-2018 Be API and contributors + + phpwpinfo is released under the GPL + + +=============================================================================== + + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. + +WRITTEN OFFER + +The source code for any program binaries or compressed scripts that are +included with phpwpinfo can be freely obtained at the following URL: + + https://github.com/BeAPI/phpwpinfo/ From b8224972b005392c58aa3dbf5991c88a54c25b2c Mon Sep 17 00:00:00 2001 From: Maxime Culea Date: Fri, 7 Sep 2018 14:34:16 +0200 Subject: [PATCH 6/8] Bump 1.4.0 --- phpwpinfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpwpinfo.php b/phpwpinfo.php index 125b46c..81bc95b 100644 --- a/phpwpinfo.php +++ b/phpwpinfo.php @@ -1,6 +1,6 @@ Date: Fri, 7 Sep 2018 14:36:33 +0200 Subject: [PATCH 7/8] Fix typo --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 05de679..fdbcd4b 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,19 @@ -![Be API Github Banner](.wordpress.org/banner-github.png) +![Be API Github Banner](banner-github.png) # phpwpinfo -phpwpinfo provides an equivalent to the `phpinfo()` function but with more WordPress requirements details about the PHP/MySQL/Apache environment and also offers suggestions for improvement. -This tool allows you to quickly test environment server where you want to install WordPress. It is written in full PHP and use Bootstrap for HTML/CSS/JS purpose, provided by [CDN](http://www.bootstrapcdn.com). +phpwpinfo provides an equivalent to the `phpinfo()` function but with more WordPress requirements details about the PHP/MySQL/Apache environment and also offers suggestions for improvement. + +This tool allows you to quickly test environment server where you want to install WordPress. +It is written in full PHP and use Bootstrap for HTML/CSS/JS purpose, provided by [CDN](http://www.bootstrapcdn.com). # How ? ## Installation Talking about the main file ([phpwpinfo.php](https://github.com/BeAPI/phpwpinfo/blob/master/phpwpinfo.php)), copy it's content, download the [raw](https://raw.githubusercontent.com/BeAPI/phpwpinfo/master/phpwpinfo.php) file or even better "wget" it directly on your server : -`wget https://raw.githubusercontent.com/BeAPI/phpwpinfo/master/phpwpinfo.php` + +```wget https://raw.githubusercontent.com/BeAPI/phpwpinfo/master/phpwpinfo.php``` ## Usage From 767104452000874ca6599fbaf12c2920ebc38c1d Mon Sep 17 00:00:00 2001 From: Maxime Culea Date: Fri, 7 Sep 2018 14:40:33 +0200 Subject: [PATCH 8/8] Add details link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fdbcd4b..efc7e39 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # phpwpinfo -phpwpinfo provides an equivalent to the `phpinfo()` function but with more WordPress requirements details about the PHP/MySQL/Apache environment and also offers suggestions for improvement. +phpwpinfo provides an equivalent to the `phpinfo()` function but with more WordPress requirements [details](#what-) about the PHP/MySQL/Apache environment and also offers suggestions for improvement. This tool allows you to quickly test environment server where you want to install WordPress. It is written in full PHP and use Bootstrap for HTML/CSS/JS purpose, provided by [CDN](http://www.bootstrapcdn.com).