Giter VIP home page Giter VIP logo

neuralnoise / ph7-social-dating-cms Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ph7software/ph7-social-dating-cms

0.0 2.0 0.0 342.9 MB

:heart: pH7CMS :couple: is a Professional & Open Source Social Dating CMS written in OOP PHP with the MVC pattern. This Social Dating Script wants to be low resource-intensive, powerful and secure. pH7CMS is included with 30+ modules and based on pH7Framework. It is also the first Professional, free & open source European Social Dating Site Builder Software and the first choice for creating enterprise level Dating Apps/Service or Social Networking Sites

Home Page: https://sourceforge.net/projects/ph7socialdating/

ApacheConf 0.52% PHP 76.19% Smarty 9.06% CSS 2.03% JavaScript 11.89% SQLPL 0.10% Shell 0.17% HTML 0.04%

ph7-social-dating-cms's Introduction

pH7 Social Dating CMS

The Most Secure and Powerful Professional Dating Web App Builder

Build Status Scrutinizer Code Quality PayPal donate button

pH7 Social Dating CMS is a Professional & Open Source Social Dating CMS, fully responsive design, low-resource-intensive, powerful and very secure.

pH7CMS is included with 34 modules and based on its homemade framework (pH7Framework). It is also the first Professional, free and open source European Social Dating Site Builder Software and the first choice for creating enterprise level Dating Apps/Service or social networking sites.

Professional PHP Social Dating Builder Software

Overview

pH7 Dating CMS is a Social/Dating CMS written in Object-Oriented PHP (OOP), fully compatible and highly optimised for PHP 7+ and based on MVC architecture (Model-View-Controller).

It is designed with the KISS principle in mind, and the all source code can be read and understood in minutes. For a better flexibility, the software uses PDO (PHP Data Objects) abstraction which allows the choice of the database. The principle of development is DRY (Don't Repeat Yourself) aimed at reducing repetition of information of all kinds (not duplicate code).

This Free and Open Source Social Dating Site Builder wants to be low resource-intensive, powerful, stable and secure. The software also comes with 34 system modules and is based on pH7Framework (written specifically for this project) that has over 52 packages.

To summarize, pH7CMS gives you the perfect ingredients to create the best dating service or social networking website on the World Wide Web!

How Powerful is your future Dating App?

  • Best Dating Features
  • Advanced Search
  • Blogs
  • Notes
  • Pages Management
  • Friends/Mutual Friends, Visit, Messages, Instant messaging, Views, Like, Rating, Smileys, Geo Map, Avatar, Wallpaper, ...
  • Related Profiles (for better user experience and faster match)
  • Custom Profile (Background profile)
  • Comments
  • Hot or Not
  • Love Calculator
  • Geolocation
  • Photo Albums
  • Videos (and possibility to upload videos from API v3 YouTube, Vimeo, Metacafe and Dailymotion)
  • Forums
  • Full Moderation of all contents posted by your users
  • Nudity Filter Option for all images uploaded by users
  • Dating Scammer Detector (see if profile photos aren't used by scammers)
  • Anti-Scam Tools
  • Watermark Branding
  • Chat Rooms
  • Chatroulette
  • Games (with high quality and viral games installed)
  • Webcam Shot
  • Affiliate
  • Newsletter
  • Activity Streams
  • Member approval system
  • Advanced Admin Panel
  • Complete Membership System
  • Payment Gateways Integration for PayPal, Stripe, Bitcoin and 2CheckOut
  • Statistics & Analytics System
  • Live Notification System
  • Registration delay (to avoid spam)
  • File Management
  • Dynamic Field Forms Management
  • Privacy Settings
  • Banner/Advertisement Management
  • Fake Profile Generator
  • CSV User Importer
  • Support for Multiple Languages, Internationalization and Localization (I18N)
  • American & European for the Time and Date formats
  • Cache system for the database, pH7Tpl (our template engine), static files (HTML, CSS, JS), string content, ...
  • Maintenance Mode
  • Database Backup
  • Report
  • SEO-Friendly (Title, Content, Code, ...), Sitemap module, hreflang, possibility to translate each URL, ...
  • Multilingual URLs
  • Check that all UGC (User-Generated Content) are Unique (to avoid spam and malicious users)
  • RSS Feed
  • Fully API for integration from an external app (iOS/Android, ...), website, program, ...
  • Feedback
  • Fully Responsive Templates
  • CSV User Importer
  • Fake Profile Generator
  • Memberships/Groups Manager
  • Publishable easily into Android/iPhone/iOS webview mobile app thanks its Mobile-Optimized Templates.
  • Multiple-Themes and many customization possible
  • Message templates
  • Multi Themes and many personalizable
  • Includes top HTML5 features
  • Allow to sign in to your site with Facebook, Google and Twitter thanks pH7CMS's Connect module
  • Invite Friends
  • Social Bookmark (Social Media Sharing Buttons)
  • Anti-spam system
  • Full Security system against XSS, CSRF, SQL injection, authentication hacking, session fixation, brute-force, reverse tabnabbing phishing attacks, ... and can even prevent some DDoS attacks!
  • Two-Factor Authentication Option available for Admins, Users and Affiliates
  • Admin Panel - Block Access with IP Restriction
  • Beautiful Code: Very thoroughly commented about what's happening throughout the PHP code, beautiful indentation and very readable, even for non-programmers
  • Everyone can easily contribute to this great innovative project with our GitHub repository

It's not a hazard that pH7CMS is considered to be the first choice for creating enterprise level Dating Apps/Service or Social Networking Sites

If you want more, here are other great features included in pH7CMS (and obviously in pH7CMS Pro as well) that may interest you!

Build a Social Dating Web App with pH7CMS

Requirements

  • Application Server PHP 5.6 or higher (Recommended Version: PHP 7.0.4 or higher).

  • Database MySQL/MariaDB 5.0.15 or higher.

  • Operating System Linux/Unix (Red Hat, CentOS, Debian, FreeBSD, Mandrake, Mac OS, etc.), Windows.

  • Web Server Apache with mod_php or with PHP in CGI, FastCGI mode (nginx, LiteSpeed and IIS should also work you should change some pieces of code and change the url rewriting to make it work).

  • URL rewriting extension module Apache, nginx, LiteSpeed, IIS (for Web.config, you have a good tutorial here).

  • Specific Requirement Server has to be connected to Internet.

  • Minimum Web Space 2.0 GB

  • pH7CMS's Video Module Requirement (only if enabled) FFmpeg

Installation

Nginx Configuration

In order to get pH7CMS working on nginx server, you need to add some custom nginx configuration.

Create /etc/nginx/ph7cms.conf and add the following:

location / {
    try_files $uri $uri/ /index.php?$args;
    index index.php;
}

Please note that the above code is the strict minimum and obviously you can add more by comparing with the main Apache .htaccess file.

Now in your nginx server configuration you will have to include ph7cms.conf file to complete the configuration like below:

In file, e.g., /etc/nginx/sites-enabled/yoursite.conf for Ubuntu and other OS based on Debian or /etc/nginx/conf.d/yoursite.conf for CentOS and other OS based on Red Hat.

server {
    # Port number. In most cases, 80 for HTTP and 443 for HTTPS
    listen 80;

    server_name www.yoursite.com;
    root /var/www/ph7cms_public_root;
    index index.php; #you can use index.ph7; for hidding the *.php ...
    client_max_body_size 50M;

    error_log /var/log/nginx/yoursite.error.log;
    access_log /var/log/nginx/yoursite.access.log;

    # Include ph7cms.conf. You can also directly add the "location" rule instead of including the conf file
    include /etc/nginx/ph7cms.conf;
}

For more information, please refer to the nginx documentation.

Create Your Own Niche Dating Service in New York City

Translations

You can find and add other languages on the I18N repo.

Author

Pierre-Henry Soria

Website

Social Dating Script

Documentation

pH7CMS Documentation

Contributing

I Love Open Source

Anyone can contribute on pH7CMS GitHub repository!

Finding bugs, improving the CMS/doc or adding translations. Any contribution is welcome and highly appreciated!

Just clone the repository, make your changes and then make a push ;-)

WARNING, your code/modification must be of excellent quality and follow the Code Convention. I manually validate all the improvements and changes.

You will also become a pH7CMS VIP member and get all premium contents and modules.

Tools/Software Used to Develop pH7CMS

  • LAMP on Fedora/Ubuntu (and Windows/Mac with WampServer/MAMP for testing purpose)

  • Geany & Sublime Text for coding the whole project. That's it! However, since pH7CMS 5.0, PhpStorm is used as well.

  • GIMP for editing the assets, etc.

  • Trimage (and ImageOptim when developing on Mac) for compressing & optimizing the images

  • Poedit for translating the Gettext files

  • FileZilla for FTP client

  • Git for the version control system

Contact

You can send email for any suggestions or feedback at hello {AT} ph7cms {D0T} com OR pierrehenrysoria {AT} gmail {D0T} com

License

pH7CMS is under Open Source Free License.

License: General Public License 3 or later; See the PH7.LICENSE.txt and PH7.COPYRIGHT.txt files for more details.

Admin Panel, Browse Users pH7CMS allows anyone to start a web dating app like Tinder/Bumble or Badoo

ph7-social-dating-cms's People

Contributors

ph-7 avatar javalites avatar

Watchers

James Cloos avatar Starbuck avatar

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.