Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
99f73d7aca
15
doc/faq.rst
15
doc/faq.rst
@ -693,8 +693,7 @@ Here is a fix suggested by Brad Ummer:
|
||||
'0755').
|
||||
|
||||
Have also a look at the `corresponding section of the MySQL
|
||||
documentation <http://dev.mysql.com/doc/en/can-not-connect-to-
|
||||
server.html>`_.
|
||||
documentation <http://dev.mysql.com/doc/refman/5.7/en/can-not-connect-to-server.html>`_.
|
||||
|
||||
.. _faq2_4:
|
||||
|
||||
@ -790,7 +789,7 @@ Here are a few points to check:
|
||||
Dorninger for the hint).
|
||||
* In the :file:`php.ini` directive ``arg_separator.input``, a value of ";"
|
||||
will cause this error. Replace it with "&;".
|
||||
* If you are using `Suhosin <https://suhosin.org/>`_, you
|
||||
* If you are using `Suhosin <https://suhosin.org/stories/index.html>`_, you
|
||||
might want to increase `request limits <https://suhosin.org/stories/faq.html>`_.
|
||||
* The directory specified in the :file:`php.ini` directive
|
||||
``session.save_path`` does not exist or is read-only.
|
||||
@ -1507,7 +1506,7 @@ schema layout. Which tables will go on which pages?
|
||||
---------------------------------------------------------
|
||||
|
||||
No, it's MySQL that is doing `silent column type changing
|
||||
<http://dev.mysql.com/doc/en/silent-column-changes.html>`_.
|
||||
<http://dev.mysql.com/doc/refman/5.7/en/silent-column-changes.html>`_.
|
||||
|
||||
.. _underscore:
|
||||
|
||||
@ -1535,7 +1534,7 @@ It means "average".
|
||||
**Structure:**
|
||||
|
||||
* "Add DROP TABLE" will add a line telling MySQL to `drop the table
|
||||
<http://dev.mysql.com/doc/mysql/en/drop-table.html>`_, if it already
|
||||
<http://dev.mysql.com/doc/refman/5.7/en/drop-table.html>`_, if it already
|
||||
exists during the import. It does NOT drop the table after your
|
||||
export, it only affects the import file.
|
||||
* "If Not Exists" will only create the table if it doesn't exist.
|
||||
@ -1556,10 +1555,10 @@ It means "average".
|
||||
* "Extended inserts" provides a shorter dump file by using only once the
|
||||
INSERT verb and the table name.
|
||||
* "Delayed inserts" are best explained in the `MySQL manual - INSERT DELAYED Syntax
|
||||
<http://dev.mysql.com/doc/mysql/en/insert-delayed.html>`_.
|
||||
<http://dev.mysql.com/doc/refman/5.7/en/insert-delayed.html>`_.
|
||||
* "Ignore inserts" treats errors as a warning instead. Again, more info
|
||||
is provided in the `MySQL manual - INSERT Syntax
|
||||
<http://dev.mysql.com/doc/mysql/en/insert.html>`_, but basically with
|
||||
<http://dev.mysql.com/doc/refman/5.7/en/insert.html>`_, but basically with
|
||||
this selected, invalid values are adjusted and inserted rather than
|
||||
causing the entire statement to fail.
|
||||
|
||||
@ -1698,7 +1697,7 @@ DATABASES, LOCK TABLES. Those privileges also enable users to see all the
|
||||
database names. So if your users do not need those privileges, you can remove
|
||||
them and their databases list will shorten.
|
||||
|
||||
.. seealso:: <http://bugs.mysql.com/179>
|
||||
.. seealso:: <https://bugs.mysql.com/bug.php?id=179>
|
||||
|
||||
.. _faq6_21:
|
||||
|
||||
|
||||
118
doc/glossary.rst
118
doc/glossary.rst
@ -10,7 +10,7 @@ From Wikipedia, the free encyclopedia
|
||||
.htaccess
|
||||
the default name of Apache's directory-level configuration file.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/.htaccess>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/.htaccess>
|
||||
|
||||
ACL
|
||||
Access Contol List
|
||||
@ -18,49 +18,49 @@ From Wikipedia, the free encyclopedia
|
||||
Blowfish
|
||||
a keyed, symmetric block cipher, designed in 1993 by Bruce Schneier.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Blowfish_(cipher)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Blowfish_(cipher)>
|
||||
|
||||
Browser
|
||||
a software application that enables a user to display and interact with text, images, and other information typically located on a web page at a website on the World Wide Web.
|
||||
|
||||
.. seealso:: <http://en.wikipedia.org/wiki/Web_browser>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Web_browser>
|
||||
|
||||
bzip2
|
||||
a free software/open source data compression algorithm and program developed by Julian Seward.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Bzip2>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Bzip2>
|
||||
|
||||
CGI
|
||||
Common Gateway Interface is an important World Wide Web technology that
|
||||
enables a client web browser to request data from a program executed on
|
||||
the Web server.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/CGI>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/CGI>
|
||||
|
||||
Changelog
|
||||
a log or record of changes made to a project.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Changelog>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Changelog>
|
||||
|
||||
Client
|
||||
a computer system that accesses a (remote) service on another computer by some kind of network.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Client_(computing)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Client_(computing)>
|
||||
|
||||
column
|
||||
a set of data values of a particular simple type, one for each row of the table.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Column_(database)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Column_(database)>
|
||||
|
||||
Cookie
|
||||
a packet of information sent by a server to a World Wide Web browser and then sent back by the browser each time it accesses that server.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/HTTP_cookie>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/HTTP_cookie>
|
||||
|
||||
CSV
|
||||
Comma- separated values
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Comma-separated_values>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Comma-separated_values>
|
||||
|
||||
DB
|
||||
look at :term:`database`
|
||||
@ -68,7 +68,7 @@ From Wikipedia, the free encyclopedia
|
||||
database
|
||||
an organized collection of data.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Database>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Database>
|
||||
|
||||
Engine
|
||||
look at :term:`storage engines`
|
||||
@ -76,25 +76,25 @@ From Wikipedia, the free encyclopedia
|
||||
extension
|
||||
a PHP module that extends PHP with additional functionality.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/extension>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Software_extension>
|
||||
|
||||
FAQ
|
||||
Frequently Asked Questions is a list of commonly asked question and there
|
||||
answers.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/FAQ>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/FAQ>
|
||||
|
||||
Field
|
||||
one part of divided data/columns.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Field_(computer_science)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Field_(computer_science)>
|
||||
|
||||
foreign key
|
||||
a column or group of columns in a database row that point to a key column
|
||||
or group of columns forming a key of another database row in some
|
||||
(usually different) table.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Foreign_key>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Foreign_key>
|
||||
|
||||
FPDF
|
||||
the free :term:`PDF` library
|
||||
@ -104,7 +104,7 @@ From Wikipedia, the free encyclopedia
|
||||
GD
|
||||
Graphics Library by Thomas Boutell and others for dynamically manipulating images.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/GD_Graphics_Library>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/GD_Graphics_Library>
|
||||
|
||||
GD2
|
||||
look at :term:`gd`
|
||||
@ -112,28 +112,28 @@ From Wikipedia, the free encyclopedia
|
||||
gzip
|
||||
gzip is short for GNU zip, a GNU free software file compression program.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Gzip>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Gzip>
|
||||
|
||||
host
|
||||
any machine connected to a computer network, a node that has a hostname.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Host>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Host>
|
||||
|
||||
hostname
|
||||
the unique name by which a network attached device is known on a network.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Hostname>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Hostname>
|
||||
|
||||
HTTP
|
||||
HyperText Transfer Protocol is the primary method used to transfer or
|
||||
convey information on the World Wide Web.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/HyperText_Transfer_Protocol>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/HyperText_Transfer_Protocol>
|
||||
|
||||
https
|
||||
a :term:`HTTP`-connection with additional security measures.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Https:_URI_scheme>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Https:_URI_scheme>
|
||||
|
||||
IEC
|
||||
International Electrotechnical Commission
|
||||
@ -142,42 +142,42 @@ From Wikipedia, the free encyclopedia
|
||||
Internet Information Services is a set of Internet-based services for
|
||||
servers using Microsoft Windows.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Internet_Information_Services>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Internet_Information_Services>
|
||||
|
||||
Index
|
||||
a feature that allows quick access to the rows in a table.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Index_(database)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Index_(database)>
|
||||
|
||||
IP
|
||||
Internet Protocol is a data-oriented protocol used by source and
|
||||
destination hosts for communicating data across a packet-switched
|
||||
internetwork.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Internet_Protocol>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Internet_Protocol>
|
||||
|
||||
IP Address
|
||||
a unique number that devices use in order to identify and communicate with each other on a network utilizing the Internet Protocol standard.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/IP_Address>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/IP_Address>
|
||||
|
||||
IPv6
|
||||
IPv6 (Internet Protocol version 6) is the latest revision of the
|
||||
Internet Protocol (:term:`IP`), designed to deal with the
|
||||
long-anticipated problem of its precedessor IPv4 running out of addresses.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/IPv6>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/IPv6>
|
||||
|
||||
ISAPI
|
||||
Internet Server Application Programming Interface is the API of Internet Information Services (IIS).
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/ISAPI>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/ISAPI>
|
||||
|
||||
ISP
|
||||
Internet service provider is a business or organization that offers users
|
||||
access to the Internet and related services.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/ISP>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/ISP>
|
||||
|
||||
ISO
|
||||
International Standards Organisation
|
||||
@ -185,7 +185,7 @@ From Wikipedia, the free encyclopedia
|
||||
JPEG
|
||||
a most commonly used standard method of lossy compression for photographic images.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/JPEG>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/JPEG>
|
||||
|
||||
JPG
|
||||
look at :term:`jpeg`
|
||||
@ -196,22 +196,22 @@ From Wikipedia, the free encyclopedia
|
||||
LATEX
|
||||
a document preparation system for the TEX typesetting program.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/LaTeX>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/LaTeX>
|
||||
|
||||
Mac
|
||||
Apple Macintosh is line of personal computers is designed, developed, manufactured, and marketed by Apple Computer.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Mac>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Mac>
|
||||
|
||||
Mac OS X
|
||||
the operating system which is included with all currently shipping Apple Macintosh computers in the consumer and professional markets.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Mac_OS_X>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Mac_OS_X>
|
||||
|
||||
MCrypt
|
||||
a cryptographic library.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/MCrypt>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/MCrypt>
|
||||
|
||||
mcrypt
|
||||
the MCrypt PHP extension.
|
||||
@ -222,12 +222,12 @@ From Wikipedia, the free encyclopedia
|
||||
Multipurpose Internet Mail Extensions is
|
||||
an Internet Standard for the format of e-mail.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/MIME>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/MIME>
|
||||
|
||||
module
|
||||
some sort of extension for the Apache Webserver.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/module>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Apache_HTTP_Server>
|
||||
|
||||
mod_proxy_fcgi
|
||||
an Apache module implmenting a Fast CGI interface; PHP can be run as a CGI module, FastCGI, or
|
||||
@ -236,34 +236,34 @@ From Wikipedia, the free encyclopedia
|
||||
MySQL
|
||||
a multithreaded, multi-user, SQL (Structured Query Language) Database Management System (DBMS).
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/MySQL>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/MySQL>
|
||||
|
||||
mysqli
|
||||
the improved MySQL client PHP extension.
|
||||
|
||||
.. seealso:: <http://php.net/mysqli>
|
||||
.. seealso:: <http://php.net/manual/en/book.mysqli.php>
|
||||
|
||||
mysql
|
||||
the MySQL client PHP extension.
|
||||
|
||||
.. seealso:: <http://php.net/mysql>
|
||||
.. seealso:: <http://php.net/manual/en/book.mysql.php>
|
||||
|
||||
OpenDocument
|
||||
open standard for office documents.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/OpenDocument>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/OpenDocument>
|
||||
|
||||
OS X
|
||||
look at :term:`Mac OS X`.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/OS_X>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/OS_X>
|
||||
|
||||
PDF
|
||||
Portable Document Format is a file format developed by Adobe Systems for
|
||||
representing two dimensional documents in a device independent and
|
||||
resolution independent format.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Portable_Document_Format>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Portable_Document_Format>
|
||||
|
||||
PEAR
|
||||
the PHP Extension and Application Repository.
|
||||
@ -282,19 +282,19 @@ From Wikipedia, the free encyclopedia
|
||||
and dynamic web content, and more recently, a broader range of software
|
||||
applications.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/PHP>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/PHP>
|
||||
|
||||
port
|
||||
a connection through which data is sent and received.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Port_(computing)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Port_(computing)>
|
||||
|
||||
RFC
|
||||
Request for Comments (RFC) documents are a series of memoranda
|
||||
encompassing new research, innovations, and methodologies applicable to
|
||||
Internet technologies.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Request_for_Comments>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Request_for_Comments>
|
||||
|
||||
RFC 1952
|
||||
GZIP file format specification version 4.3
|
||||
@ -304,17 +304,17 @@ From Wikipedia, the free encyclopedia
|
||||
Row (record, tuple)
|
||||
represents a single, implicitly structured data item in a table.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Row_(database)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Row_(database)>
|
||||
|
||||
Server
|
||||
a computer system that provides services to other computing systems over a network.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Server_(computing)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Server_(computing)>
|
||||
|
||||
Storage Engines
|
||||
handlers for different table types
|
||||
|
||||
.. seealso:: <http://dev.mysql.com/doc/en/storage-engines.html>
|
||||
.. seealso:: <http://dev.mysql.com/doc/refman/5.7/en/storage-engines.html>
|
||||
|
||||
socket
|
||||
a form of inter-process communication.
|
||||
@ -325,17 +325,17 @@ From Wikipedia, the free encyclopedia
|
||||
Secure Sockets Layer is a cryptographic protocol which provides secure
|
||||
communication on the Internet.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Secure_Sockets_Layer>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Secure_Sockets_Layer>
|
||||
|
||||
Stored procedure
|
||||
a subroutine available to applications accessing a relational database system
|
||||
|
||||
.. seealso:: <http://en.wikipedia.org/wiki/Stored_procedure>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Stored_procedure>
|
||||
|
||||
SQL
|
||||
Structured Query Language
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/SQL>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/SQL>
|
||||
|
||||
table
|
||||
a set of data elements (cells) that is organized, defined and stored as
|
||||
@ -343,18 +343,18 @@ From Wikipedia, the free encyclopedia
|
||||
identified by a label or key or by it?s position in relation to other
|
||||
items.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Table_(database)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Table_(database)>
|
||||
|
||||
tar
|
||||
a type of archive file format: the Tape ARchive format.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Tar_(file_format)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Tar_(file_format)>
|
||||
|
||||
TCP
|
||||
Transmission Control Protocol is one of the core protocols of the
|
||||
Internet protocol suite.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/TCP>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/TCP>
|
||||
|
||||
TCPDF
|
||||
Rewrite of :term:`UFPDF` with various improvements.
|
||||
@ -364,7 +364,7 @@ From Wikipedia, the free encyclopedia
|
||||
trigger
|
||||
a procedural code that is automatically executed in response to certain events on a particular table or view in a database
|
||||
|
||||
.. seealso:: <http://en.wikipedia.org/wiki/Database_trigger>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Database_trigger>
|
||||
|
||||
UFPDF
|
||||
Unicode/UTF-8 extension for :term:`FPDF`
|
||||
@ -376,28 +376,28 @@ From Wikipedia, the free encyclopedia
|
||||
standardized format, that is used for referring to resources, such as
|
||||
documents and images on the Internet, by their location.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/URL>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/URL>
|
||||
|
||||
Webserver
|
||||
A computer (program) that is responsible for accepting HTTP requests from clients and serving them Web pages.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Webserver>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Webserver>
|
||||
|
||||
XML
|
||||
Extensible Markup Language is a W3C-recommended general- purpose markup
|
||||
language for creating special-purpose markup languages, capable of
|
||||
describing many different kinds of data.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/XML>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/XML>
|
||||
|
||||
ZIP
|
||||
a popular data compression and archival format.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/ZIP_(file_format)>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/ZIP_(file_format)>
|
||||
|
||||
zlib
|
||||
an open-source, cross- platform data compression library by Jean-loup Gailly and Mark Adler.
|
||||
|
||||
.. seealso:: <http://www.wikipedia.org/wiki/Zlib>
|
||||
.. seealso:: <https://en.wikipedia.org/wiki/Zlib>
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user