Giter VIP home page Giter VIP logo

Comments (4)

vvalchev avatar vvalchev commented on June 1, 2024 1

If you download estatezilla from the web site, it's configured to use sqlite. Still you can't add property unless you do some small changes to the db:

  1. download sqlite binary
  2. run sqlite database.sqlite
  3. invoke the following SQL scripts:
    -- drop table properties
    --
CREATE TABLE `properties` (
  `id` integer NOT NULL PRIMARY KEY AUTOINCREMENT
,  `user_id` integer  DEFAULT NULL
,  `property_type_id` integer  DEFAULT NULL
,  `listing_type` text  NOT NULL DEFAULT 'sale'
,  `listing_status` text  DEFAULT NULL
,  `property_condition` text  NOT NULL DEFAULT 'not_specified'
,  `property_size` decimal(11,2) DEFAULT NULL
,  `num_bedrooms` integer DEFAULT NULL
,  `num_bathrooms` integer DEFAULT NULL
,  `num_floors` integer DEFAULT NULL
,  `num_receptions` integer DEFAULT NULL
,  `has_garden` integer DEFAULT NULL
,  `has_parking` integer DEFAULT NULL
,  `is_investment_property` integer DEFAULT NULL
,  `new_home` integer DEFAULT NULL
,  `photos` text COLLATE BINARY
,  `floor_plans` text COLLATE BINARY
,  `documents` text COLLATE BINARY
,  `virtual_tours` text COLLATE BINARY
,  `displayable_address` varchar(255)
,  `street_no` varchar(255) DEFAULT NULL
,  `street_name` varchar(255) DEFAULT NULL
,  `city` varchar(255) DEFAULT NULL
,  `region` varchar(255) DEFAULT NULL
,  `postcode` varchar(255) DEFAULT NULL
,  `country` char(2) DEFAULT NULL
,  `lat` decimal(18,12) DEFAULT NULL
,  `lng` decimal(18,12) DEFAULT NULL
,  `price` decimal(11,2) DEFAULT NULL
,  `reduced_price` decimal(11,2) DEFAULT NULL
,  `negotiable_price` integer DEFAULT NULL
,  `poa` integer DEFAULT NULL
,  `price_period` varchar(255) DEFAULT NULL
,  `price_type` varchar(255) DEFAULT NULL
,  `is_featured` integer NOT NULL DEFAULT '0'
,  `expires_at` datetime DEFAULT '0000-00-00 00:00:00'
,  `published_at` datetime DEFAULT '0000-00-00 00:00:00'
,  `origin` varchar(255) DEFAULT NULL
,  `visible` integer DEFAULT '0'
,  `terms_agree` integer NOT NULL DEFAULT '0'
,  `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
,  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00'
,  `deleted_at` timestamp NULL DEFAULT NULL
);

from estatezilla.

typo3ua avatar typo3ua commented on June 1, 2024

The database to run this application is missing and too system not connect to database.
When install system does not setup and does not configuring database

from estatezilla.

v03adk avatar v03adk commented on June 1, 2024

@typo3ua and how can I configure and setup database?

from estatezilla.

typo3ua avatar typo3ua commented on June 1, 2024

:) It is need to ask at author estatezilla

from estatezilla.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.