kwartakwarta.com

I’ll try to post this in english. Our online money movement is now going on. We are building online money services so that people can use it in their daily lives. The online payment platform is easy to use. You can use your balance to send money to everyone or anyone you want. This is the latest money services.. For those who do not know. The coins that you are using right now are being used for building bridges,airplanes,boats,buildings. They melt irons to build those structures. That’s why we are educating everyone to use our online money service. kwartakwarta.com .. If you register we will send you 10,000 for registering on our system. So that you can be able to trade for anything you want. Please be guided

 

 

kwarta kwarta

Social Media Fake Identities

In my opinion, we really have to ban facebook. We have to privatize our network because there are so many people who are trying to sabotage our platform. Too much chaos on facebook that creates massive brainwashing. They are bullying the weak while patronizing people who creates havoc with the community. Let us research facts and strive hard to attain peace and governance to our people. I am against FAKE PROFILES

Hackthissite.org:Extbasic missions 13

Solution:

  1. Since the isset() function only determines if a variable is set and is not NULL, it does not check the value of  the variable. Here below is an example.

    < ?php
    $var = ”;

    // This will evaluate to TRUE so the text will be printed.
    if (isset($var)) {
    echo “This var is set so I will print.”;
    }
    ? >

  2. Input ‘vrfy.php?name=&email=’ and check.
  3. It’s done.

How to install Rockmongo on Ubuntu 16

Rockmongo: RockMongo is a MongoDB administration tool, written in PHP 5.

Step 1: Install Apache

Apache is a free open source software which runs over 50% of the world’s web servers.

To install apache, open terminal and type in these commands:
sudo apt-get update
sudo apt-get install apache2

That’s it. To check if Apache is installed, direct your browser to your server’s IP address (eg. http://12.34.56.789). The page should display the words “It works!”

How to Find your Server’s IP address

You can run the following command to reveal your server’s IP address.
ifconfig eth0 | grep inet | awk '{ print $2 }'

 

Step 2: Install MySQL

 

To install MySQL, open terminal and type in these commands:

sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql

During the installation, MySQL will ask you to set a root password.

Step 3: Install PHP

PHP is an open source web scripting language that is widely use to build dynamic webpages.

To install PHP, open terminal and type in this command.
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt

 

Step 3: Install Rockmongo

RockMongo is a MongoDB administration GUI tool, written in PHP 5.
You can read more at here.

So, first you need to install php-mongo on Ubuntu
Install PHP Pear package;

sudo apt-get install php-pear

 

Then, install PHP-Mongo driver that connects PHP and MongoDB;

sudo apt-get install php5-dev
sudo apt-get install libpcre3 libpcre3-dev
 
sudo pecl install mongo 

 

 

Then, configure PHP-Mongo driver in Apache2

nano etc/php5/apache2/php.ini

add line below;

extension=mongo.so

 

Restart Apache2 server

sudo service apache2 restart

Then, download Rockmongo from web
http://rockmongo.com/downloads

Extract to /var/www/ folder

check the installation

http://127.0.0.1/rockmongo