This procedure is tested on Mac OS X 10.12.6 with Developpers tools installed (xCode).
PHP 5.6 installed with https://php-osx.liip.ch/.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
| <!DOCTYPE qgis_style> | |
| <qgis_style version="2"> | |
| <symbols> | |
| <symbol name="qartoon" force_rhr="0" clip_to_extent="1" alpha="1" type="fill"> | |
| <layer class="SimpleFill" enabled="1" locked="0" pass="0"> | |
| <prop v="3x:0,0,0,0,0,0" k="border_width_map_unit_scale"/> | |
| <prop v="0,0,0,255" k="color"/> | |
| <prop v="round" k="joinstyle"/> | |
| <prop v="1,1" k="offset"/> | |
| <prop v="3x:0,0,0,0,0,0" k="offset_map_unit_scale"/> |
This procedure is tested on Mac OS X 10.12.6 with Developpers tools installed (xCode).
PHP 5.6 installed with https://php-osx.liip.ch/.
Download the following files from Oracle website (yes, you need to create an account and accept terms):
By: Bartlomiej Mika at https://mikasoftware.com Date: Oct, 13th, 2016
Install Xcode from the Apple App Store.
Install the Command Line Tools of Xcode. Open a Terminal and type:
$ xcode-select --install
| type FilterOperator = 'AND' | 'OR'; | |
| type FiltersBy<T> = { | |
| [K in keyof T]?: (value: T[K]) => boolean; | |
| }; | |
| /** | |
| * Factory function that creates a specialized function to filter | |
| * arrays, by validating all filters (AND operator), | |
| * or validating just one of the filters (OR operator). | |
| * @param operator Method to validate all filters: AND, OR |
download and install Solr from http://lucene.apache.org/solr/.
you can access Solr admin from your browser: http://localhost:8983/solr/
use the port number used in installation.
| <div id="bkt_db_tables"> | |
| <h1>Games</h1> | |
| <table id="example" class="display" width="100%"> | |
| <thead> | |
| <tr> | |
| <th>Game_ID</th> | |
| <th>Home_Team</th> | |
| </tr> |
download and install Solr from http://lucene.apache.org/solr/.
you can access Solr admin from your browser: http://localhost:8983/solr/
use the port number used in installation.
| <?php | |
| header('Content-type: text/plain'); | |
| $username = "[user]"; | |
| $password = "[password]"; | |
| $hostname = "localhost"; | |
| $database = "[database]"; | |
| // Opens a connection to a mySQL server | |
| $connection=mysql_connect ($hostname, $username, $password); |