tomflidr / sreality-configurable-rss
Sreality.cz Custom Configurable RSS Channel With Images And Google Maps.
Installs: 18
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 0
Type:application
Requires
- php: >=5.3.0
- nette/utils: ^2.4
- tracy/tracy: ^2.4
This package is auto-updated.
Last update: 2024-10-14 16:32:26 UTC
README
Sreality.cz FREE Custom Configurable RSS Channel With Images And Google Maps.
Instalation
# load project into 'development' directory, if directory doesn't exists, create it
composer create-project tomflidr/sreality-configurable-rss
- create single database with single table in your MySQL/MariaDB server to cache loaded items:
CREATE DATABASE `sreality` /*!40100 COLLATE 'utf8_general_ci' */ USE `sreality`; CREATE TABLE `rss_estates` ( `id` VARCHAR(255) NOT NULL, `data` TEXT NOT NULL, INDEX `id` (`id`) ) COLLATE='utf8_general_ci' ENGINE=InnoDB;
- open
config.php
in your favorite text editor- set up
$mySqlConfig
array to connect into database for cached items - Get and copy Google Maps API key into
$googleMapsApiKey
- configure
$realEstatesSearchConfig
array by commenting and uncommenting values you want or don't want
- set up
- call
index.php
over HTTP(s) in your favorite web server (Apache/IIS/Nginx) and follow instructions there:-)
TODO
- implement RSS items date property
- before previous data are truncated in db, select them, compare guids from old items and new items and if there is the same guid, transfer date from previous item already in database into new item. For items without any date - add current time(). Then truncate previous data and insert new items.