SlideShare una empresa de Scribd logo
1 de 57
Mantis 1.1.5 Installation On Window Box Introduction: Mantis is a Bug Tracker Open source Tool which can be used to Store the Bug Centralized manner.  Pre-Requisite ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Apache Server Configuration ,[object Object],[object Object],[object Object],4. Click Next to Proceed.
4. Next you'll see the License Agreement.  Check the "I accept" radio button and click on "Next".  5. Another screen appears with more information about what Apache HTTP server is.  Click "Next".
6. Another screen appears with more information about what Apache HTTP server is.  Click "Next".   7. Click on Next Button
7. The configuration now begins.   8. Network Domain will be “Local Host”. 9. ServerName will be “Local Host” 10. Administrators email Id can be as:  [email_address] 11. Click Next to Proceed.
11. Here we choose whether to install as Typical or Custom.  Typical sounds good to me.  It should also be fine more most people.  Click "Next".   12.Select Option type as “Typical” . 13. Click on the Next Tab.
14. Now we choose where we want to install Apache.  You can change this by clicking on the "Change" button and selecting whichever directory you like.  Here we'll keep it default.  Click "Next".   15. But it is advisory to keep the Path as Default Path=“C:pache2” 16. To Begin Installation click Install Tab.
17.Wait a while for Completing Installation 18. See the Finishing Tab.
19.The Final step will be as Below 20. Click on the Finish Tab to Complete Installation.
21. Wow, we're done.   You see that little new icon in your system tray?  That shows you the status of Apache.    22. Let's see if Apache works now.  Fire up your web browser and type in "http://localhost" or "http://127.0.0.1" and see if you get the default Apache page.  You should see this.
MYSQL INSTALLATION ,[object Object],[object Object],1. MySQL Download MySQL http://dev.mysql.com/downloads/mysql/
2. Install Process as Mentioned Below
3.Step 3 installation 4. Next Step will be as Follows. Press Next to Go to Next Page
 
 
 
NB: Click OK to Proceed Installation.
Click on Install Tab To Proceed Installation.
Wait For a Few Seconds To complete the Installation.
Configure your Server as Mentioned Above
Click On Finish Tab To complete Installation.
 
 
 
 
 
 
 
 
 
 
NB: Click on finish Tab to compete Installation.
Now Create DataBase with Full Administrator Privelege. 1. Just type in place database name bugs it will be bugtracker.
PHP 5.2.6 Version Installation. ,[object Object],[object Object],[object Object],[object Object]
INSTALL PHP FOR WINDOWS STEP 1 * In Windows Explorer, go to  c:ownloadshp5  and unzip the file  php-5.0.2-Win32.zip  into the directory called  C:hp * Now  move  (don't just copy) the file  c:hphp5ts.dll  to  c:indowshp5ts.dll  (or if you don't have a  c:indows  directory, move it to  c:innt ).  * PHP5 is now  installed  on your computer, but you still need to  configure  it to work with Apache, which we will do in the next step.
STEP 2 Configure PHP5 to Work with Apache   We now need to tell the Apache web server what to do when it encounters a .php file. Some changes will be made to the Apache configuration file and some will be made to the PHP configuration file.  Do This:  1. With the Windows Explorer, create the folder  c:ebsest . This will be our test website  2. Rename the  c:hphp.ini-dist  to  c:hphp.ini , then make the following changes in the  c:hphp.ini  file: (1)  doc_root = "c:ebsest"  and (2)  extension_dir = "C:hpxt" .  Note that you should use BACKSLASHES in the php.ini file.
Step 3: In the file  C:pache2onfttpd.conf , change the DocumentRoot entry to:  DocumentRoot &quot;C:/webs/test&quot; .  Note that you should use FORWARD SLASHES in the http.conf file.   Step 4: Also in the file  C:pache2onfttpd.conf , change the Directory entry to:  <Directory &quot;C:/webs/test&quot;> . Note that you should use FORWARD SLASHES in the http.conf file.
STEP 5 Again in the  C:pache2onfttpd.conf  file,  add  the following lines:  hint: to find this position fast, search for &quot;media types&quot;   you can copy this text  ScriptAlias /php/ &quot;c:/php/&quot; AddType application/x-httpd-php .php .php5 Action application/x-httpd-php &quot;/php/php-cgi.exe&quot; SetEnv PHPRC &quot;C:/php&quot;
Step 6 Lastly, we need to make one last change to this  C:pache2onfttpd.conf  file. Find the &quot;DirectoryIndex&quot; entry and add &quot;index.php&quot; to the end of the line as shown in this screenshot.  you can copy this text:  DirectoryIndex index.html index.html.var index.php
STEP 7 In order for the changes to take effect, you need to restart Apache. To do this, click the Apache symbol in the lower right-hand corner of your task bar. In the little menu that pops up there, click  Apache 2  and then  Restart . STEP 8 After about 10 seconds, Apache will have restarted, PHP will be configured. Go on to the next step to test your configuration.
Test PHP You have now installed Apache and PHP and have configured PHP. We will now test your configuration of PHP to make sure Apache can correctly serve PHP5 files. Do This:  1. Create the file  c:ebsestndex.php  with the following line  2. Create the file  c:ebsestndex.php  with the following line  you can copy this text:  you can copy this text:  you can copy this text to your Text Editor Today is <? print strftime(&quot;%m/%d/%Y&quot;);  ?> With your browser, go to  http://localhost . If you see the current date on your screen as in this screenshot, then PHP5 has been successfully installed and configured with Apache.
The outPut will be as Follows:
CONFIGURE MYSQL Create a Database Table using MySQL 5.0 Client  In this step we will use the MySQL 5.0 client software to create a database table (so that we can display its data on a web page in the next step). In order to do this, we are going to have to enter commands in at the command prompt on your Windows machine. Do This:  In order to get to the command prompt, click the Windows  Start  button and choose  Run . Then type in  cmd  and click the  OK  button.
2. At the command prompt, type  cd &quot;C:rogram FilesySQLySQL Server 4.1in&quot;  and hit the  Enter  key.  3.Then type  mysql -u root -p  and when asked for the password, type  admin . You will then see the MySQL client prompt.
4.Type in the following lines in order to create the database named  demo  and a table within that database named  members :  5.Now type in the following lines which will create two records in the  members  table of the  demo  database:  Now exit the MySQL client by typing  quit; . Now exit the MySQL client by typing  quit; . z
Set up PHP to work with MySQL 4.1  We now need to make a few changes to PHP so that it knows what to do when it encounters a MySQL command.  Do This:  First of all, check the  c:hp  directory and make sure that the files  libmysqli.dll  and  php_mysqli.dll  are both there. If they are not there, check the  c:hpxt  directory and copy the files into  c:hp   2.Then open up the file  c:hphp.ini  in your editor and ADD the line  extension=php_mysqli.dll .
3. In order for the changes to take effect, you need to restart Apache. To do this, click the Apache symbol in the lower right-hand corner of your task bar. In the little menu that pops up there, click  Apache 2  and then  Restart . 4.After about 10 seconds, your PHP will be ready to accept  mysqli  commands to talk to the MySQL 5.0 database.
Test PHP5/MySQL in browser   We will now create a PHP  page which connects to your MySQL database called  demo , reads the names out of the table  members  and displays them in the browser. Do This  Create a file  c:ebsestestmysql41.php  and paste in the following code:  Copy the Below Code: <? $mysqli = new mysqli('localhost','root','admin'); $mysqli->select_db('demo'); $result = $mysqli->query(&quot;SELECT * FROM members&quot;); while($row = $result->fetch_assoc()) { print $row['firstName'] . ' ' . $row['lastName'] . '<br/>'; } $result->close(); ?>
3.In your browser, go to  http://localhost/testmysql41.php . If you see the following two names appear in your browser, this means that your MySQL 4.1 database works with your PHP 5 installation. Fatal error : Class 'mysqli' not found in  C:ebsestestmysql41.php  on line  3 If above error appears then please do as mentioned Below.
Smith : Somebody please help me in removing this error &quot;Fatal error: Class 'mysqli' not found in C:ebsestestmysql41.php on line 3&quot; i have tried and checked all what is told in the above discussion..ple help me soon!!! Edgars : Sly: firstname should be firstName, and in mySQL is different is UPERCASE or lowercase! Chek your variables names, maybe it helps :) Yavuz cakir : Fatal error: Class 'mysqli' not found in c:ebsestestmysql41.php on line 2 Lubos : 1) Add file libmysql.dll into Windowsystem32 folder; 2) at php.ini uncomment extensions=php_mysqli.dll and php_mysql.dll; 3) at your testsql file change Admin to your windows account password. Configure apache as described here. I had all the mistakes as described above and now everything works. Alex : Lubos THANKS ALOT !!!! I had all htose problems too and now is working :) Bla Bla : Now, I don't know what changed it, I did everything listed here and I realised it works. I think firstName should be written the same way you did when you created the test database (in my case firstname). A letter can make the difference! Pay attention, kids!!!  Is IT RESOLVED THANK YOU NO……………….Ok…So More Configuration Required
[object Object],[object Object],[object Object],4.In your browser, go to  http://localhost/testmysql41.php . If you see the following two names appear in your browser, this means that your MySQL 4.1 database works with your PHP 5 installation.
Mantis Deployment in Apache Server Make sure You have already created the Database named as : bugtracker. And it has been configured successfully using username = “root” and Password= “mysql!” DO THIS: ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],OK….You have expalined Apache To Read Mantis.
Now we need to Tell PHP.INI to Read Mantis ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
NOW LAUNCH MANTIS IN BROWSER ,[object Object],[object Object],[object Object],[object Object],[object Object]
Once you click on Install and Upgrade Database the Screen will appear as Below Make sure all configuration should come as Good by the System. Click on Continue to Process Installation……………………………..
 
Now click on Continue………….Option ….Now

Más contenido relacionado

La actualidad más candente

WP Sandbox Presentation WordCamp Toronto 2011
WP Sandbox Presentation WordCamp Toronto 2011WP Sandbox Presentation WordCamp Toronto 2011
WP Sandbox Presentation WordCamp Toronto 2011Alfred Ayache
 
Lamp Server With Drupal Installation
Lamp Server With Drupal InstallationLamp Server With Drupal Installation
Lamp Server With Drupal Installationfranbow
 
Build website in_django
Build website in_django Build website in_django
Build website in_django swee meng ng
 
Installation of Drupal on Windows XP
Installation of Drupal on Windows XPInstallation of Drupal on Windows XP
Installation of Drupal on Windows XPRupesh Kumar
 
Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16Enrique Davila
 
LvivPy - Flask in details
LvivPy - Flask in detailsLvivPy - Flask in details
LvivPy - Flask in detailsMax Klymyshyn
 
Instruction Sheet to Setup CI
Instruction Sheet to Setup CIInstruction Sheet to Setup CI
Instruction Sheet to Setup CIvodQA
 
SimpleTestによるPHPのテスト
SimpleTestによるPHPのテストSimpleTestによるPHPのテスト
SimpleTestによるPHPのテストgutskun
 
Website releases made easy with the PEAR installer, OSCON 2009
Website releases made easy with the PEAR installer, OSCON 2009Website releases made easy with the PEAR installer, OSCON 2009
Website releases made easy with the PEAR installer, OSCON 2009Helgi Þormar Þorbjörnsson
 
Learn flask in 90mins
Learn flask in 90minsLearn flask in 90mins
Learn flask in 90minsLarry Cai
 

La actualidad más candente (15)

WP Sandbox Presentation WordCamp Toronto 2011
WP Sandbox Presentation WordCamp Toronto 2011WP Sandbox Presentation WordCamp Toronto 2011
WP Sandbox Presentation WordCamp Toronto 2011
 
Php Ppt
Php PptPhp Ppt
Php Ppt
 
Lamp Server With Drupal Installation
Lamp Server With Drupal InstallationLamp Server With Drupal Installation
Lamp Server With Drupal Installation
 
MySQL Presentation
MySQL PresentationMySQL Presentation
MySQL Presentation
 
Build website in_django
Build website in_django Build website in_django
Build website in_django
 
Installation of Drupal on Windows XP
Installation of Drupal on Windows XPInstallation of Drupal on Windows XP
Installation of Drupal on Windows XP
 
Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16
 
LvivPy - Flask in details
LvivPy - Flask in detailsLvivPy - Flask in details
LvivPy - Flask in details
 
Instruction Sheet to Setup CI
Instruction Sheet to Setup CIInstruction Sheet to Setup CI
Instruction Sheet to Setup CI
 
Php Power Tools
Php Power ToolsPhp Power Tools
Php Power Tools
 
SimpleTestによるPHPのテスト
SimpleTestによるPHPのテストSimpleTestによるPHPのテスト
SimpleTestによるPHPのテスト
 
PHP Conference - Phalcon hands-on
PHP Conference - Phalcon hands-onPHP Conference - Phalcon hands-on
PHP Conference - Phalcon hands-on
 
User Guide
User GuideUser Guide
User Guide
 
Website releases made easy with the PEAR installer, OSCON 2009
Website releases made easy with the PEAR installer, OSCON 2009Website releases made easy with the PEAR installer, OSCON 2009
Website releases made easy with the PEAR installer, OSCON 2009
 
Learn flask in 90mins
Learn flask in 90minsLearn flask in 90mins
Learn flask in 90mins
 

Similar a Mantis Installation for Windows Box

Wamp & LAMP - Installation and Configuration
Wamp & LAMP - Installation and ConfigurationWamp & LAMP - Installation and Configuration
Wamp & LAMP - Installation and ConfigurationChetan Soni
 
How to configure PHP with IIS or Apache on Windows
How to configure PHP with IIS or Apache on WindowsHow to configure PHP with IIS or Apache on Windows
How to configure PHP with IIS or Apache on WindowsRizban Ahmad
 
Create dynamic sites with PHP & MySQL
Create dynamic sites with PHP & MySQLCreate dynamic sites with PHP & MySQL
Create dynamic sites with PHP & MySQLkangaro10a
 
Working with Apache Web ServerTime Required 35 minutesObjective.pdf
Working with Apache Web ServerTime Required 35 minutesObjective.pdfWorking with Apache Web ServerTime Required 35 minutesObjective.pdf
Working with Apache Web ServerTime Required 35 minutesObjective.pdfamikoenterprises
 
Diva23
Diva23Diva23
Diva23diva23
 
Installing configuringdevelopingwithxampp
Installing configuringdevelopingwithxamppInstalling configuringdevelopingwithxampp
Installing configuringdevelopingwithxamppvimalnambiar
 
Installing Lamp Stack on Ubuntu Instance
Installing Lamp Stack on Ubuntu InstanceInstalling Lamp Stack on Ubuntu Instance
Installing Lamp Stack on Ubuntu Instancekamarul kawnayeen
 
Installing Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for WindowsInstalling Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for WindowsJonathan Bloom
 
Prabu apache installations
Prabu apache installationsPrabu apache installations
Prabu apache installationsPrabu Cse
 

Similar a Mantis Installation for Windows Box (20)

instaling
instalinginstaling
instaling
 
instaling
instalinginstaling
instaling
 
instaling
instalinginstaling
instaling
 
Wamp & LAMP - Installation and Configuration
Wamp & LAMP - Installation and ConfigurationWamp & LAMP - Installation and Configuration
Wamp & LAMP - Installation and Configuration
 
How to configure PHP with IIS or Apache on Windows
How to configure PHP with IIS or Apache on WindowsHow to configure PHP with IIS or Apache on Windows
How to configure PHP with IIS or Apache on Windows
 
Its3 Drupal
Its3 DrupalIts3 Drupal
Its3 Drupal
 
Its3 Drupal
Its3 DrupalIts3 Drupal
Its3 Drupal
 
Jones_Lamp_Tutorial
Jones_Lamp_TutorialJones_Lamp_Tutorial
Jones_Lamp_Tutorial
 
Create dynamic sites with PHP & MySQL
Create dynamic sites with PHP & MySQLCreate dynamic sites with PHP & MySQL
Create dynamic sites with PHP & MySQL
 
Working with Apache Web ServerTime Required 35 minutesObjective.pdf
Working with Apache Web ServerTime Required 35 minutesObjective.pdfWorking with Apache Web ServerTime Required 35 minutesObjective.pdf
Working with Apache Web ServerTime Required 35 minutesObjective.pdf
 
Diva23
Diva23Diva23
Diva23
 
mush With Xampp
mush With Xamppmush With Xampp
mush With Xampp
 
Installing configuringdevelopingwithxampp
Installing configuringdevelopingwithxamppInstalling configuringdevelopingwithxampp
Installing configuringdevelopingwithxampp
 
Installing Lamp Stack on Ubuntu Instance
Installing Lamp Stack on Ubuntu InstanceInstalling Lamp Stack on Ubuntu Instance
Installing Lamp Stack on Ubuntu Instance
 
Installing Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for WindowsInstalling Hortonworks Hadoop for Windows
Installing Hortonworks Hadoop for Windows
 
Appache.ppt
Appache.pptAppache.ppt
Appache.ppt
 
Prabu apache installations
Prabu apache installationsPrabu apache installations
Prabu apache installations
 
Appache.ppt
Appache.pptAppache.ppt
Appache.ppt
 
PHP
PHPPHP
PHP
 
Untitled 1
Untitled 1Untitled 1
Untitled 1
 

Último

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024The Digital Insurer
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 

Último (20)

MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

Mantis Installation for Windows Box

  • 1.
  • 2.
  • 3. 4. Next you'll see the License Agreement.  Check the &quot;I accept&quot; radio button and click on &quot;Next&quot;. 5. Another screen appears with more information about what Apache HTTP server is.  Click &quot;Next&quot;.
  • 4. 6. Another screen appears with more information about what Apache HTTP server is.  Click &quot;Next&quot;. 7. Click on Next Button
  • 5. 7. The configuration now begins. 8. Network Domain will be “Local Host”. 9. ServerName will be “Local Host” 10. Administrators email Id can be as: [email_address] 11. Click Next to Proceed.
  • 6. 11. Here we choose whether to install as Typical or Custom.  Typical sounds good to me.  It should also be fine more most people.  Click &quot;Next&quot;. 12.Select Option type as “Typical” . 13. Click on the Next Tab.
  • 7. 14. Now we choose where we want to install Apache.  You can change this by clicking on the &quot;Change&quot; button and selecting whichever directory you like.  Here we'll keep it default.  Click &quot;Next&quot;. 15. But it is advisory to keep the Path as Default Path=“C:pache2” 16. To Begin Installation click Install Tab.
  • 8. 17.Wait a while for Completing Installation 18. See the Finishing Tab.
  • 9. 19.The Final step will be as Below 20. Click on the Finish Tab to Complete Installation.
  • 10. 21. Wow, we're done.   You see that little new icon in your system tray?  That shows you the status of Apache.  22. Let's see if Apache works now.  Fire up your web browser and type in &quot;http://localhost&quot; or &quot;http://127.0.0.1&quot; and see if you get the default Apache page.  You should see this.
  • 11.
  • 12. 2. Install Process as Mentioned Below
  • 13. 3.Step 3 installation 4. Next Step will be as Follows. Press Next to Go to Next Page
  • 14.  
  • 15.  
  • 16.  
  • 17. NB: Click OK to Proceed Installation.
  • 18. Click on Install Tab To Proceed Installation.
  • 19. Wait For a Few Seconds To complete the Installation.
  • 20. Configure your Server as Mentioned Above
  • 21. Click On Finish Tab To complete Installation.
  • 22.  
  • 23.  
  • 24.  
  • 25.  
  • 26.  
  • 27.  
  • 28.  
  • 29.  
  • 30.  
  • 31.  
  • 32. NB: Click on finish Tab to compete Installation.
  • 33. Now Create DataBase with Full Administrator Privelege. 1. Just type in place database name bugs it will be bugtracker.
  • 34.
  • 35. INSTALL PHP FOR WINDOWS STEP 1 * In Windows Explorer, go to c:ownloadshp5 and unzip the file php-5.0.2-Win32.zip into the directory called C:hp * Now move (don't just copy) the file c:hphp5ts.dll to c:indowshp5ts.dll (or if you don't have a c:indows directory, move it to c:innt ). * PHP5 is now installed on your computer, but you still need to configure it to work with Apache, which we will do in the next step.
  • 36. STEP 2 Configure PHP5 to Work with Apache We now need to tell the Apache web server what to do when it encounters a .php file. Some changes will be made to the Apache configuration file and some will be made to the PHP configuration file. Do This: 1. With the Windows Explorer, create the folder c:ebsest . This will be our test website 2. Rename the c:hphp.ini-dist to c:hphp.ini , then make the following changes in the c:hphp.ini file: (1) doc_root = &quot;c:ebsest&quot; and (2) extension_dir = &quot;C:hpxt&quot; . Note that you should use BACKSLASHES in the php.ini file.
  • 37. Step 3: In the file C:pache2onfttpd.conf , change the DocumentRoot entry to: DocumentRoot &quot;C:/webs/test&quot; . Note that you should use FORWARD SLASHES in the http.conf file. Step 4: Also in the file C:pache2onfttpd.conf , change the Directory entry to: <Directory &quot;C:/webs/test&quot;> . Note that you should use FORWARD SLASHES in the http.conf file.
  • 38. STEP 5 Again in the C:pache2onfttpd.conf file, add the following lines: hint: to find this position fast, search for &quot;media types&quot; you can copy this text ScriptAlias /php/ &quot;c:/php/&quot; AddType application/x-httpd-php .php .php5 Action application/x-httpd-php &quot;/php/php-cgi.exe&quot; SetEnv PHPRC &quot;C:/php&quot;
  • 39. Step 6 Lastly, we need to make one last change to this C:pache2onfttpd.conf file. Find the &quot;DirectoryIndex&quot; entry and add &quot;index.php&quot; to the end of the line as shown in this screenshot. you can copy this text: DirectoryIndex index.html index.html.var index.php
  • 40. STEP 7 In order for the changes to take effect, you need to restart Apache. To do this, click the Apache symbol in the lower right-hand corner of your task bar. In the little menu that pops up there, click Apache 2 and then Restart . STEP 8 After about 10 seconds, Apache will have restarted, PHP will be configured. Go on to the next step to test your configuration.
  • 41. Test PHP You have now installed Apache and PHP and have configured PHP. We will now test your configuration of PHP to make sure Apache can correctly serve PHP5 files. Do This: 1. Create the file c:ebsestndex.php with the following line 2. Create the file c:ebsestndex.php with the following line you can copy this text: you can copy this text: you can copy this text to your Text Editor Today is <? print strftime(&quot;%m/%d/%Y&quot;); ?> With your browser, go to http://localhost . If you see the current date on your screen as in this screenshot, then PHP5 has been successfully installed and configured with Apache.
  • 42. The outPut will be as Follows:
  • 43. CONFIGURE MYSQL Create a Database Table using MySQL 5.0 Client In this step we will use the MySQL 5.0 client software to create a database table (so that we can display its data on a web page in the next step). In order to do this, we are going to have to enter commands in at the command prompt on your Windows machine. Do This: In order to get to the command prompt, click the Windows Start button and choose Run . Then type in cmd and click the OK button.
  • 44. 2. At the command prompt, type cd &quot;C:rogram FilesySQLySQL Server 4.1in&quot; and hit the Enter key. 3.Then type mysql -u root -p and when asked for the password, type admin . You will then see the MySQL client prompt.
  • 45. 4.Type in the following lines in order to create the database named demo and a table within that database named members : 5.Now type in the following lines which will create two records in the members table of the demo database: Now exit the MySQL client by typing quit; . Now exit the MySQL client by typing quit; . z
  • 46. Set up PHP to work with MySQL 4.1 We now need to make a few changes to PHP so that it knows what to do when it encounters a MySQL command. Do This: First of all, check the c:hp directory and make sure that the files libmysqli.dll and php_mysqli.dll are both there. If they are not there, check the c:hpxt directory and copy the files into c:hp 2.Then open up the file c:hphp.ini in your editor and ADD the line extension=php_mysqli.dll .
  • 47. 3. In order for the changes to take effect, you need to restart Apache. To do this, click the Apache symbol in the lower right-hand corner of your task bar. In the little menu that pops up there, click Apache 2 and then Restart . 4.After about 10 seconds, your PHP will be ready to accept mysqli commands to talk to the MySQL 5.0 database.
  • 48. Test PHP5/MySQL in browser We will now create a PHP page which connects to your MySQL database called demo , reads the names out of the table members and displays them in the browser. Do This Create a file c:ebsestestmysql41.php and paste in the following code: Copy the Below Code: <? $mysqli = new mysqli('localhost','root','admin'); $mysqli->select_db('demo'); $result = $mysqli->query(&quot;SELECT * FROM members&quot;); while($row = $result->fetch_assoc()) { print $row['firstName'] . ' ' . $row['lastName'] . '<br/>'; } $result->close(); ?>
  • 49. 3.In your browser, go to http://localhost/testmysql41.php . If you see the following two names appear in your browser, this means that your MySQL 4.1 database works with your PHP 5 installation. Fatal error : Class 'mysqli' not found in C:ebsestestmysql41.php on line 3 If above error appears then please do as mentioned Below.
  • 50. Smith : Somebody please help me in removing this error &quot;Fatal error: Class 'mysqli' not found in C:ebsestestmysql41.php on line 3&quot; i have tried and checked all what is told in the above discussion..ple help me soon!!! Edgars : Sly: firstname should be firstName, and in mySQL is different is UPERCASE or lowercase! Chek your variables names, maybe it helps :) Yavuz cakir : Fatal error: Class 'mysqli' not found in c:ebsestestmysql41.php on line 2 Lubos : 1) Add file libmysql.dll into Windowsystem32 folder; 2) at php.ini uncomment extensions=php_mysqli.dll and php_mysql.dll; 3) at your testsql file change Admin to your windows account password. Configure apache as described here. I had all the mistakes as described above and now everything works. Alex : Lubos THANKS ALOT !!!! I had all htose problems too and now is working :) Bla Bla : Now, I don't know what changed it, I did everything listed here and I realised it works. I think firstName should be written the same way you did when you created the test database (in my case firstname). A letter can make the difference! Pay attention, kids!!! Is IT RESOLVED THANK YOU NO……………….Ok…So More Configuration Required
  • 51.
  • 52.
  • 53.
  • 54.
  • 55. Once you click on Install and Upgrade Database the Screen will appear as Below Make sure all configuration should come as Good by the System. Click on Continue to Process Installation……………………………..
  • 56.  
  • 57. Now click on Continue………….Option ….Now