10layer Ls

Alternatives To 10layer Ls
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Python Driver1,3515931059 days ago75June 06, 202316apache-2.0Python
DataStax Python Driver for Apache Cassandra
Java Driver1,3062,70666410 days ago105July 26, 202325apache-2.0Java
DataStax Java Driver for Apache Cassandra
Nodejs Driver1,207668276a day ago50September 15, 20239apache-2.0JavaScript
DataStax Node.js Driver for Apache Cassandra
Pycassa50822624 years ago37January 17, 201712otherPython
Python Thrift driver for Apache Cassandra
Scylla Rust Driver4661010 hours ago15October 04, 2022114apache-2.0Rust
Async CQL driver for Rust, optimized for Scylla!
Php Driver4334322a day ago12August 11, 20175otherC
[MAINTENANCE ONLY] DataStax PHP Driver for Apache Cassandra
Cpp Driver386
2 days ago15apache-2.0C++
DataStax C/C++ Driver for Apache Cassandra
Hive Jdbc Uber Jar248
3 months ago6Java
Hive JDBC "uber" or "standalone" jar based on the latest Apache Hive version
Node Hbase2324382 years ago28December 04, 20199mitCoffeeScript
Asynchronous HBase client for NodeJs using REST
Calcite Avatica21158407 days ago15January 16, 202315apache-2.0Java
Apache Calcite Avatica
Alternatives To 10layer Ls
Select To Compare


Alternative Project Comparisons
Readme

10Layer-LS

10Layer Version 2 (LS) is a Content Management System designed to be extremely customisable. It seperates the CMS from the front-end, and uses a RESTful API to feed the front-end with JSON data. Data types can be designed, prototyped and built quickly, essentially giving you all the benefits of a completely custom CMS without the hassle of actually building one.

Requirements

  • Web server (Apache recommended)
  • PHP 5.x
  • ImageMagick
  • MongoDB
  • MongoDB PHP drivers
  • OptiPNG (Recommended)

License

MIT License

Installation

This assumes a totally clean Debian or Ubuntu server. We've called ours test.10layer.com and is available on that address on the internet. All commands are root.

First we fix this annoying language bug in Debian

export LC_ALL="en_US.UTF-8"
locale-gen

We make sure our system is up-to-date

apt-get update
apt-get upgrade

We configure the system for our time zone, or for GMT

dpkg-reconfigure tzdata

We generate a public and private key

ssh-keygen

We install the prerequisites. Choose "Internet Site" for the Postfix setup.

apt-get install git-core mongodb-server php5 apache2 php5-dev php-pear build-essential postfix imagemagick optipng

We install the Mongo drivers for PHP. In Debian, this should be available as a package, so you could alternatively apt-get install php-mongo.

pecl install mongo
echo "extension=mongo.so" > /etc/php5/apache2/conf.d/mongo.ini

We enable the Rewrite module in Apache

a2enmod rewrite

We use the .htaccess file in /var/www, so we need to change AllowOverride None to AllowOverride All for /var/www:

pico /etc/apache2/sites-enabled/000-default

<Directory /var/www/>
	Options Indexes FollowSymLinks MultiViews
	AllowOverride All 
	Order allow,deny
	allow from all
</Directory>

Restart Apache to ensure the changes take effect

apache2ctl restart

Download 10Layer LS

cd /var
rm -rf www
git clone [email protected]:10layer/10Layer-LS.git www

Visit http://test.10layer.com and follow the instructions.

Popular Driver Projects
Popular Apache Projects
Popular Libraries Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Php
Driver
Apache
Content Management System
Debian
Mongo