This tutorial demonstrates how to create a login page with MySQL Data
base. Before enter into the code part, You would need special
privileges to create or to delete a MySQL database. So assuming you have
access to root user, you can create any database using mysql mysqladmin
binary.
Config.php
Config.php file is having information about MySQL Data base configuration.
<?php
define('DB_SERVER', 'localhost:3036');
define('DB_USERNAME', 'root');
define('DB_PASSWORD', 'rootpassword');
define('DB_DATABASE', 'database');
$db...
vineri, 20 mai 2016
joi, 19 mai 2016
- 23:44:00
- 0 Comments
PHP must be configured correctly in the php.ini file with the details of how your system sends email. Open php.ini file available in /etc/ directory and find the section headed [mail function].
Windows users should ensure that two directives are supplied. The
first is called SMTP that defines your email server address. The second
is called sendmail_from which defines your own email address.
The configuration for Windows should look something like this −
[mail function]
; For Win32 only.
SMTP = smtp.secureserver.net
; For win32 only
sendmail_from...
- 23:41:00
- 0 Comments
How do I configure Dovecot IMAPS and POP3s server using SSL certificate? Can I use SSL certificates generated for Postfix mail server?
A.
Dovecot is an IMAP server for Linux/UNIX-like systems, written with
security primarily in mind. It also contains a small POP3 server. It
supports mail in either of maildir or mbox formats.
You need to enable POP3s and IMAPS. Open default configuration file: # vi /etc/dovecot.conf Make sure POP3S and IMAPS are enabled: protocols = imaps pop3s
Next
you must set PEM encoded X.509 SSL/TLS certificate and...
- 10:59:00
- 0 Comments
# vi /etc/sysconfig/iptables Append rule as follows rules on RHEL/CentOS version 5.x or older: -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT ## Open 443 port i.e. HTTPS -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT IF you are using RHEL/Centoa version 6.x or above, try: -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT ## Open 443 port i.e. HTTPS -A INPUT -m state --state NEW -m tcp -p tcp --dport 443 -j ACCEPT Save and close the file. Restart iptables service, enter:...
- 10:55:00
- 0 Comments
The default iptables configuration on CentOS or RHEL does not allow
access to the HTTP (TCP PORT # 80) and HTTPS (TCP PORT # 443) ports used
by the Apache web server. You can modify settings using any one of the
following three methods:
/etc/sysconfig/iptables : Edit this file to allow or deny access to the Apache Web Server IPv4. You also need to edit the /etc/sysconfig/ip6tables file to allow or deny access to the Apache Web Server IPv6...
- 08:09:00
- 0 Comments
Login With Facebook
Need to go https://developers.facebook.com/apps/ and click on add a new group button to make the app ID.
Choose Website
Give an app name and click on Create New Facebook App ID
Click on Create app ID
Click on Skip Quick Test
On Final stage, it will show as below shown image.
fbconfig.php file overview
Now download zip from here
Now open fbconfig.php file and add you app ID and app Secrete
FacebookSession::setDefaultApplication(...
- 07:40:00
- 0 Comments
PHP login with session
Php login script is used to provide the authentication for our web
pages. the Script executes after submitting the user login button.
Login Page
Login page should be as follows and works based on session. If the user close the session, it will erase the session data.
<?php
ob_start();
session_start();
?>
<?
// error_reporting(E_ALL);
// ini_set("display_errors", 1);
?>
<html lang = "en">
<head>
<title>Tutorialspoint.com</title>
<link href = "css/bootstrap.min.css"...