Laravel Installation on Windows 7 XAMPP

10:59 AM Hendry 0 Comments

https://laravel.com/

1. Composer Installation

Pre-requisites

1. XAMPP

Download Composer Setup

https://getcomposer.org/Composer-Setup.exe

Browser and select ...\xampp\php\php.exe


Click Install and Finish

2. Laravel Project Installation


Create Laravel root folder

Under …\xampp\htdocs\laravel (e.g. …\xampp\htdocs\laravel)

Download Laravel Project

Open CMD using Administrator role, and navigate to …\xampp\htdocs\laravel, and run this command: composer create-project laravel/laravel first-project --prefer-dist
*change first-project to your project name

Run LARAVEL through localhost:<port>/laravel/first-project/public


Make XAMPP phpmyadmin be accessible from other network

3:53 AM Hendry 0 Comments

1. Make sure phpmyadmin is not running on port 80 ( Change phpmyadmin port )
2. Navigate to \xampp\apache\conf
2. Open up httpd-xampp.conf
3. On the last section, modify as Require Local to Require gll granted

#
# New XAMPP security concept
#
<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
#        Require local
Require all granted
ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var

</LocationMatch>


4. Setup phpmyadmin security, navigate to \xampp\phpMyAdmin
6. Make sure to enable port forwarding on your router configuration to enable port (both phpmyadmin apache and mysql)

Secure XAMPP phpmyadmin access

3:44 AM Hendry 0 Comments

1. Navigate to \xampp\phpmyadmin
2. Open up config.inc.php
3. Append the configuration below
4. Modify either deny or allow

/*
 *  phpMyAdmin does no user management and will not cross-check the MySQL account's host with the incoming connection's ip/host
 */
$cfg['Servers'][$i]['AllowDeny']['order'] = 'deny,allow';
$cfg['Servers'][$i]['AllowDeny']['rules'] = array(
    // deny everyone by default
    'deny % from all',

    // allow all users from the local system
    'allow % from localhost',
    'allow % from 127.0.0.1',
'allow % from 192.168.0.16',
    'allow % from 139.195.8.205',
'allow % from ::1',

    // add more usernames and their IP (or IP ranges) here -
    // ...

);

Enable XAMPP phpmyadmin login page

3:35 AM Hendry 0 Comments


1. Navigate to \xampp\phpmyadmin
2. Open up config.inc.php
3. Modify $cfg['Servers'][$i]['auth_type'] = 'config'; to $cfg['Servers'][$i]['auth_type'] = 'cookie';

Change XAMPP phpmyadmin port

3:14 AM Hendry 0 Comments


  1. Navigate to \xampp\apache\conf
  2. Open up httpd.conf
  3. Modify Listen 80 to the desired port

Weblogic Server 1036 Installation

1:43 AM Hendry 0 Comments


Files

·         wls1036_generic.jar

Installation

1.    Open a command prompt and change directory to where wls1036_generic.jar resides. Key in <Path_to_JDK1.7>\bin\java.exe –jar wls1036_generic.jar

 

2.    Click Next

 

3.    Key in the weblogic server directory (*Avoid using spaces). Click next




4.    Click Next and Yes



5.    Check I wish to remain uninformed of security issues… and click Continue



6.    Click Next



7.    Click Next



8.    Click Next



9.    Click Next



10.  Click Next



11.  Click Done



JDeveloper 11.1.1.7 Installation Guide

1:28 AM Hendry 0 Comments

JDeveloper Installation


Files

·         jdevstudio11117install.jar
·         oracle.webcenter.framework_bundle_2.zip
·         oracle.webcenter.customization_bundle.zip

Installation

1.    Click Next


2.    Select Create a new Middleware Home, and key in the jdeveloper installation folder directory (*avoid spaces). Then click Next


3.    Select Complete, then click Next


4.    Click Browse to select the JDK installation directory, then click Next


5.    Click Next


6.    Click Next


7.    Click Next


8.    Installing


9.    Click Done, and thick Run quick start


10.  Select Launch Oracle JDeveloper 11g


11.  Goto Help > Check for updates


12.  Click Check for update, then click Next


13.  Select Install from local file


14.  Click Browse and select file oracle.webcenter.framework_bundle_2.zip, then click Next and restart JDeveloper

15.  Click Browse and select file oracle.webcenter.customization_bundle.zip, then click Next and restart JDeveloper