SlideShare a Scribd company logo
Guided By: 
Purvi Prajapati 
Provided By: 
Moin Khan(D11IT137)
 Project Summary 
 Objective 
 Tools and technology 
 System Environment 
 System Analysis & Design 
 Testing
 An online warranty management portal is a virtual 
shop on the Internet where customers can upgrade 
warranty, register new warranty, and check details of 
warranty 
 When a customer upgrade an existing warranty. 
She/he enters the serial no of existing product and 
after select the upgraded plan and click the upgrade 
button and at that time complete the transaction. 
 When a customer wants to register for new warranty, 
she/he has to enter serial no and bill no of the 
product that has already been purchased. This 
information is then verified with selling department. 
Upon correct verification a customer will be 
successfully registered for warranty.
 User Extend the warranty 
 User check Warranty details 
 User feedback 
 Admin manage product, customer, supplier, 
product category.
 Front end 
 cake PHP 2.5 framework. 
 Back end 
 Mysql-server 5.5.20
 Registration 
 Login 
 Upgrade Warranty 
 Register Product 
 Check warranty details
 Security 
 Reliability 
 Portability 
 Availabilitys
User Characteristics (types of User) 
 Admin 
◦ Manage warranty of product related to customer 
◦ Manage customers, Supplier, product, product 
category. 
 Customer 
◦ End user check product's warranty details 
◦ Check service center details 
◦ feedback of product 
◦ Read polices and contracts
 Server Side 
Scripting Language PHP : Hypertext Preprocessor, JavaScript 
Other Languages HTML, CSS (Developer side) 
Operating System Windows 2000, Windows Vista orWindows 7/8 
Software Tools Dreamweaver (Developer side) 
Database MySQL (Developer side) 
Browser Google Chrome, Firefox, IE 6 or up, Opera, Safari 
Wamp server Version 2.4 (Developer side) 
CakePHP Version 2.5.x (Developer side)
 Client Side 
Processor Intel core or up (min.) 
Hardware RAM 256MB or Higher. (min.)
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
 Data dictionary 
1. User- : user_mstr 
Purpose: User Master will store the basic information of any User and Login 
Sr.No Field Name Data type Constraints Description 
1 USER_ID Integer Primary Key 
2 USER_NAME Varchar(100) Not Null 
3 PASSWORD Varchar(50) Not Null 
4 ADDRESS Varchar(150) Not Null 
5 ROLE Varchar(50) Not Null 
6 USER_PHONE Varchar(13) 
7 USER_EMAIL Varchar(50) Not Null 
8 STATUS BOOLEAN Not Null 1=confirmed and 0=pending
 Product Category,Product company 
2. Product_Category-: product_category 
Purpose: Product Category will store the list of Category. 
Sr.No Field Name Data Type Constraints Description 
1 CATEGORY_ID Integer Primary key 
2 CATEGORY_NAME Varchar(50) Not Null 
3. Product_Company-: product_company 
Purpose: Product Company will store the list of Company. 
Sr.No Field Name Data Type Constraints Description 
1 COMPANY_ID Integer Primary key 
2 COMPANY_NAM 
E 
Varchar(50) Not Null
 Product master 
4. Product-: product_mstr 
Purpose: Product Master will store the basic information of any Product 
Sr.No Field Name Data Type Constraints Description 
1 PRODUCT_ID Integer Primary key 
2 PRODUCT_NAME Varchar(50) Not Null 
3 CATEGORY_ID Integer Foreign key Reference 
product_category 
4 COMPANY_ID Integer Foreign Key Reference 
product_company 
5 DESCRIPTION Varchar(100) 
6 PRICE Float (10,2) Not Null 
7 WARRANTY_PERIOD Integer(2) Not Null
 Supplier master 
5.Supplier-: supplier_mstr 
Purpose: Supplier Master will store the basic information of any Supplier 
Sr.No Field Name Data Type Constraints Description 
1 SUPPLIER_ID Integer Primary key 
2 SUPPLIER_NAME Varchar(50) Not Null 
3 SUPPLIER_ADDRESS Varchar(150) Not Null 
4 SUPPLIER_PHONE Varchar(13) Null 
5 SUPPLIER_EMAIL Varchar(50) Null
 Customer and product (master table) 
6.CUSTOMER PRODUCT-: customer_product 
Purpose: Customer Product will store the information of customer product bill 
Sr.No Field Name Data Type Constraints Description 
1 CUSTOMER_PRO 
DUCT_ID 
Integer Primary key 
2 USER_ID Integer Foreign key Reference user_mstr table 
3 PRODUCT_ID Integer Foreign key Reference product table 
4 SUPPLIER_ID Integer Foreign key Reference supplier table 
5 PRODUCT_PURC 
HASE_DATE 
Date Not-Null 
6 PRODUCT_PURC 
HASE_PRICE 
Float(10,2) 
7 PRODUCT_SERIA 
L_NO 
Varchar(15) Not-Null 
8 WP_ID Integer Not-Null
 Product register 
7.PRODUCT REGISTER-: product_register 
Purpose: Product_Register will store the basic information of Product Register by customer 
Sr.No Field Name Data Type Constraints Description 
1 PRODUCT_REG_I 
D 
Integer Primary key 
2 USER_ID Integer Foreign key Reference user_mstr table 
3 PRODUCT_ID Integer Foreign key Reference product table 
4 SUPP_ID Integer Foreign key Reference supplier table 
5 PRODUCT_SERIA 
L_NO 
Varchar(15) Not-Null 
6 INVOICE_NO Integer Not-Null
 Extend warranty, feedback detailed 
8.Extend_Warranty-: warranty_period 
Purpose: Product_Register will store the basic information of Product_Register by customer 
Sr.No Field Name Data Type Constraints Description 
1 WP_ID Integer Primary key 
2 WARRANTY_ERI 
OD 
Integer 
9.Feedback-: feedback_detailed 
Purpose: feedback_detailed will store the basic information of any Supplier 
Sr.No Field Name Data Type Constraints Description 
1 FEEDBACK_ID Integer Primary key 
2 PRODUCT_ID Integer Foreign Key Reference product_mstr 
3 USER_ID Integer Foreign Key Reference user_mstr 
4 COMMENT Varchar(255) Not-Null
 Country,state,city 
10.Country -: country_mstr 
Purpose: State will store the basic information of any Country 
Sr.No Field Name Data Type Constraints Description 
1 COUNTRY_ID Integer Primary key 
2 COUNTRY_NAME Varchar(100) Not_Null 
11.State-: state_mstr 
Purpose: State will store the basic information of any Country 
Sr.No Field Name Data Type Constraints Description 
1 STATE_ID Integer Primary key 
2 STATE_NAME Varchar(100) Not_Null 
3 COUNTRY_ID Integer Foreign Key Reference country_mstr 
12.City-: city_mstr 
Purpose: City will store the basic information of any City 
Sr.No Field Name Data Type Constraints Description 
1 CITY_ID Integer Primary key 
2 CITY_NAME Varchar(100) Not_Null 
3 STATE_ID Integer Foreign Key Reference state_mstr
 Service center 
13.Service Center-: service_center 
Purpose:service_center will store the basic information of any Service center 
Sr.No Field Name Data Type Constraints Description 
1 SERVICE_CENTE 
R_ID 
Integer Primary key 
2 ADDRESS1 Varchar(150) Not-Null 
3 ADDRESS2 Varchar(150) Null 
4 CITY_ID Integer Foreign key Reference city_mstr
 Login Page 
 Dashboard 
 Transaction 
 Warranties 
 Product Master 
 Customer Master 
 Supplier Master 
 Reports
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
 Model View Controller standard are use.
 Unit testing
 Unit testing, a testing technique using which 
individual modules are tested to determine if 
there are any issues by the developer himself. 
It is concerned with functional correctness of 
the standalone modules.
Test Case ID Field Name Input value Expected Output Actual value 
TESTCASE01 Username Blank This field is 
required 
This field is 
required 
TESTCASE02 Password Blank This field is 
required 
This field is 
required 
TESTCASE03 Username Abc Invalid User name Failure: 
Incorrect 
username 
and/or password 
! 
TESTCASE04 Password Abc Invalid password Failure: 
Incorrect 
username 
and/or password 
!
Test Case ID Field Name Input 
value 
Expected 
Output 
Actual value 
TESTCASE0 
1 
Add product 
fields, user 
detailed, 
supplier 
detailed 
Blank This Field is 
required 
This Field is 
required 
TESTCASE0 
2 
Add product 
fields 
Some input Success : Product 
Save 
Successfully !!!! 
Success : 
Product Save 
Successfully 
!!!! 
TESTCASE0 
3 
Add user 
details 
Some input Success :user 
save 
Successfully !!!! 
Success :user 
save 
Successfully 
!!!! 
TESTCASE0 
4 
Add 
supplier 
details 
Some input Success :supplier 
save 
Successfully !!!! 
Success 
:supplier save 
Successfully 
!!!! 
TESTCASE0 
5 
Update 
product 
fields, user 
detailed, 
supplier 
detailed 
Blank This field is 
required 
This field is 
required 
TESTCASE0 
6 
Update 
product 
fields 
Some value 
change 
SUCCESS: 
Product Updated 
Successfully !!!! 
SUCCESS: 
Product 
Updated 
Successfully 
!!!! 
TESTCASE0 
7 
Update 
supplier 
detailed 
Some valu 
change 
SUCCESS: 
supplier Updated 
Successfully !!!! 
SUCCESS: 
supplier 
Updated 
Successfully 
!!!!
 Surfing Speed 
Cake php is reading hundreds if not 
thousands of different files in hundreds of 
folders for every single visitor that’s on your 
site. 
 Continues internet requirement 
 A user must continuous requirement of 
internet connection 
 Does not good layout in less ie7.
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system
Warranty management system

More Related Content

PPT
Principles of irrigation by Dr Thomas Abraham_Course Code_Chapters 1 to 5__26...
PPT
Quality quiz copy
PPT
BUSINESS PLAN
PDF
Reverse Logistics To Handle Product Returns PowerPoint Presentation Slides
PPTX
Restaurant Business Plan Presentation
PDF
How To Present Cyber Security To Senior Management Complete Deck
DOC
Mini project report_on_online_shopping
PPTX
Grocery store management
Principles of irrigation by Dr Thomas Abraham_Course Code_Chapters 1 to 5__26...
Quality quiz copy
BUSINESS PLAN
Reverse Logistics To Handle Product Returns PowerPoint Presentation Slides
Restaurant Business Plan Presentation
How To Present Cyber Security To Senior Management Complete Deck
Mini project report_on_online_shopping
Grocery store management

What's hot (20)

PDF
Hotel management system By Harsh & aditya Mathur.
PPTX
Uml restaurant (group 1)
DOC
Project Documentation
DOCX
Báo cáo đồ án môn công nghệ phần mềm
PDF
Software requirement specification for online examination system
PDF
inventory management system
PPTX
Company vehicle management system
PPTX
Order now – restaurant management system
DOC
Online Movie Ticket Booking
PPTX
Canteen Store Department
PDF
HDFC banking system SRS Document
PPT
railway reservation software documentaion
PPTX
Garrage management system
DOCX
Airline Reservation System
DOC
Online old books sales by hemraj gahlot
PPTX
Stock management system slide
PPTX
Super Shop Management System
PDF
Online shop system use case diagram report
DOCX
Synopsis on Online examination system using php
PPTX
Project Super market billing system
Hotel management system By Harsh & aditya Mathur.
Uml restaurant (group 1)
Project Documentation
Báo cáo đồ án môn công nghệ phần mềm
Software requirement specification for online examination system
inventory management system
Company vehicle management system
Order now – restaurant management system
Online Movie Ticket Booking
Canteen Store Department
HDFC banking system SRS Document
railway reservation software documentaion
Garrage management system
Airline Reservation System
Online old books sales by hemraj gahlot
Stock management system slide
Super Shop Management System
Online shop system use case diagram report
Synopsis on Online examination system using php
Project Super market billing system
Ad

Similar to Warranty management system (20)

PPT
ppt_project_group_2.ppt amnd project report
PDF
322813487-ONLINE-JEWELLERY-SHOPPING-pdf.pdf
PPTX
A2Z gift shop
PPTX
Book a-snapper
PPTX
Online Electronic Shop4444444444444.pptx
PPTX
Online-Electronic-Store-PPT-Freedownload
PPTX
Product inventory system
PPTX
saloon management system for final year project submission
PPTX
Presentation jignesh
PPTX
Online reastaurant ordering managemant system
PPT
PPTX
Online rto management system
PPTX
Project nilland
PPTX
Online furniture
PPTX
Final Year Project BCA Presentation on Pic-O-Stica
PPTX
Online Vegetable Selling project Presentation
PDF
Restaurent management system
PDF
Group Project 650 Report2
PPTX
OSMS Slide-Abdul Hakeem.pptx
PPTX
Practical guide to SQL basics
ppt_project_group_2.ppt amnd project report
322813487-ONLINE-JEWELLERY-SHOPPING-pdf.pdf
A2Z gift shop
Book a-snapper
Online Electronic Shop4444444444444.pptx
Online-Electronic-Store-PPT-Freedownload
Product inventory system
saloon management system for final year project submission
Presentation jignesh
Online reastaurant ordering managemant system
Online rto management system
Project nilland
Online furniture
Final Year Project BCA Presentation on Pic-O-Stica
Online Vegetable Selling project Presentation
Restaurent management system
Group Project 650 Report2
OSMS Slide-Abdul Hakeem.pptx
Practical guide to SQL basics
Ad

Recently uploaded (20)

PDF
Website Design Services for Small Businesses.pdf
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
Download FL Studio Crack Latest version 2025 ?
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
PDF
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
PDF
Digital Systems & Binary Numbers (comprehensive )
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
assetexplorer- product-overview - presentation
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
Navsoft: AI-Powered Business Solutions & Custom Software Development
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PPTX
Oracle Fusion HCM Cloud Demo for Beginners
PPTX
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Website Design Services for Small Businesses.pdf
Computer Software and OS of computer science of grade 11.pptx
Download FL Studio Crack Latest version 2025 ?
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
How to Make Money in the Metaverse_ Top Strategies for Beginners.pdf
Tally Prime Crack Download New Version 5.1 [2025] (License Key Free
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
Digital Systems & Binary Numbers (comprehensive )
Design an Analysis of Algorithms II-SECS-1021-03
assetexplorer- product-overview - presentation
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
Wondershare Filmora 15 Crack With Activation Key [2025
Navsoft: AI-Powered Business Solutions & Custom Software Development
iTop VPN Free 5.6.0.5262 Crack latest version 2025
Oracle Fusion HCM Cloud Demo for Beginners
AMADEUS TRAVEL AGENT SOFTWARE | AMADEUS TICKETING SYSTEM
wealthsignaloriginal-com-DS-text-... (1).pdf
CHAPTER 2 - PM Management and IT Context
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025

Warranty management system

  • 1. Guided By: Purvi Prajapati Provided By: Moin Khan(D11IT137)
  • 2.  Project Summary  Objective  Tools and technology  System Environment  System Analysis & Design  Testing
  • 3.  An online warranty management portal is a virtual shop on the Internet where customers can upgrade warranty, register new warranty, and check details of warranty  When a customer upgrade an existing warranty. She/he enters the serial no of existing product and after select the upgraded plan and click the upgrade button and at that time complete the transaction.  When a customer wants to register for new warranty, she/he has to enter serial no and bill no of the product that has already been purchased. This information is then verified with selling department. Upon correct verification a customer will be successfully registered for warranty.
  • 4.  User Extend the warranty  User check Warranty details  User feedback  Admin manage product, customer, supplier, product category.
  • 5.  Front end  cake PHP 2.5 framework.  Back end  Mysql-server 5.5.20
  • 6.  Registration  Login  Upgrade Warranty  Register Product  Check warranty details
  • 7.  Security  Reliability  Portability  Availabilitys
  • 8. User Characteristics (types of User)  Admin ◦ Manage warranty of product related to customer ◦ Manage customers, Supplier, product, product category.  Customer ◦ End user check product's warranty details ◦ Check service center details ◦ feedback of product ◦ Read polices and contracts
  • 9.  Server Side Scripting Language PHP : Hypertext Preprocessor, JavaScript Other Languages HTML, CSS (Developer side) Operating System Windows 2000, Windows Vista orWindows 7/8 Software Tools Dreamweaver (Developer side) Database MySQL (Developer side) Browser Google Chrome, Firefox, IE 6 or up, Opera, Safari Wamp server Version 2.4 (Developer side) CakePHP Version 2.5.x (Developer side)
  • 10.  Client Side Processor Intel core or up (min.) Hardware RAM 256MB or Higher. (min.)
  • 16.  Data dictionary 1. User- : user_mstr Purpose: User Master will store the basic information of any User and Login Sr.No Field Name Data type Constraints Description 1 USER_ID Integer Primary Key 2 USER_NAME Varchar(100) Not Null 3 PASSWORD Varchar(50) Not Null 4 ADDRESS Varchar(150) Not Null 5 ROLE Varchar(50) Not Null 6 USER_PHONE Varchar(13) 7 USER_EMAIL Varchar(50) Not Null 8 STATUS BOOLEAN Not Null 1=confirmed and 0=pending
  • 17.  Product Category,Product company 2. Product_Category-: product_category Purpose: Product Category will store the list of Category. Sr.No Field Name Data Type Constraints Description 1 CATEGORY_ID Integer Primary key 2 CATEGORY_NAME Varchar(50) Not Null 3. Product_Company-: product_company Purpose: Product Company will store the list of Company. Sr.No Field Name Data Type Constraints Description 1 COMPANY_ID Integer Primary key 2 COMPANY_NAM E Varchar(50) Not Null
  • 18.  Product master 4. Product-: product_mstr Purpose: Product Master will store the basic information of any Product Sr.No Field Name Data Type Constraints Description 1 PRODUCT_ID Integer Primary key 2 PRODUCT_NAME Varchar(50) Not Null 3 CATEGORY_ID Integer Foreign key Reference product_category 4 COMPANY_ID Integer Foreign Key Reference product_company 5 DESCRIPTION Varchar(100) 6 PRICE Float (10,2) Not Null 7 WARRANTY_PERIOD Integer(2) Not Null
  • 19.  Supplier master 5.Supplier-: supplier_mstr Purpose: Supplier Master will store the basic information of any Supplier Sr.No Field Name Data Type Constraints Description 1 SUPPLIER_ID Integer Primary key 2 SUPPLIER_NAME Varchar(50) Not Null 3 SUPPLIER_ADDRESS Varchar(150) Not Null 4 SUPPLIER_PHONE Varchar(13) Null 5 SUPPLIER_EMAIL Varchar(50) Null
  • 20.  Customer and product (master table) 6.CUSTOMER PRODUCT-: customer_product Purpose: Customer Product will store the information of customer product bill Sr.No Field Name Data Type Constraints Description 1 CUSTOMER_PRO DUCT_ID Integer Primary key 2 USER_ID Integer Foreign key Reference user_mstr table 3 PRODUCT_ID Integer Foreign key Reference product table 4 SUPPLIER_ID Integer Foreign key Reference supplier table 5 PRODUCT_PURC HASE_DATE Date Not-Null 6 PRODUCT_PURC HASE_PRICE Float(10,2) 7 PRODUCT_SERIA L_NO Varchar(15) Not-Null 8 WP_ID Integer Not-Null
  • 21.  Product register 7.PRODUCT REGISTER-: product_register Purpose: Product_Register will store the basic information of Product Register by customer Sr.No Field Name Data Type Constraints Description 1 PRODUCT_REG_I D Integer Primary key 2 USER_ID Integer Foreign key Reference user_mstr table 3 PRODUCT_ID Integer Foreign key Reference product table 4 SUPP_ID Integer Foreign key Reference supplier table 5 PRODUCT_SERIA L_NO Varchar(15) Not-Null 6 INVOICE_NO Integer Not-Null
  • 22.  Extend warranty, feedback detailed 8.Extend_Warranty-: warranty_period Purpose: Product_Register will store the basic information of Product_Register by customer Sr.No Field Name Data Type Constraints Description 1 WP_ID Integer Primary key 2 WARRANTY_ERI OD Integer 9.Feedback-: feedback_detailed Purpose: feedback_detailed will store the basic information of any Supplier Sr.No Field Name Data Type Constraints Description 1 FEEDBACK_ID Integer Primary key 2 PRODUCT_ID Integer Foreign Key Reference product_mstr 3 USER_ID Integer Foreign Key Reference user_mstr 4 COMMENT Varchar(255) Not-Null
  • 23.  Country,state,city 10.Country -: country_mstr Purpose: State will store the basic information of any Country Sr.No Field Name Data Type Constraints Description 1 COUNTRY_ID Integer Primary key 2 COUNTRY_NAME Varchar(100) Not_Null 11.State-: state_mstr Purpose: State will store the basic information of any Country Sr.No Field Name Data Type Constraints Description 1 STATE_ID Integer Primary key 2 STATE_NAME Varchar(100) Not_Null 3 COUNTRY_ID Integer Foreign Key Reference country_mstr 12.City-: city_mstr Purpose: City will store the basic information of any City Sr.No Field Name Data Type Constraints Description 1 CITY_ID Integer Primary key 2 CITY_NAME Varchar(100) Not_Null 3 STATE_ID Integer Foreign Key Reference state_mstr
  • 24.  Service center 13.Service Center-: service_center Purpose:service_center will store the basic information of any Service center Sr.No Field Name Data Type Constraints Description 1 SERVICE_CENTE R_ID Integer Primary key 2 ADDRESS1 Varchar(150) Not-Null 3 ADDRESS2 Varchar(150) Null 4 CITY_ID Integer Foreign key Reference city_mstr
  • 25.  Login Page  Dashboard  Transaction  Warranties  Product Master  Customer Master  Supplier Master  Reports
  • 70.  Model View Controller standard are use.
  • 72.  Unit testing, a testing technique using which individual modules are tested to determine if there are any issues by the developer himself. It is concerned with functional correctness of the standalone modules.
  • 73. Test Case ID Field Name Input value Expected Output Actual value TESTCASE01 Username Blank This field is required This field is required TESTCASE02 Password Blank This field is required This field is required TESTCASE03 Username Abc Invalid User name Failure: Incorrect username and/or password ! TESTCASE04 Password Abc Invalid password Failure: Incorrect username and/or password !
  • 74. Test Case ID Field Name Input value Expected Output Actual value TESTCASE0 1 Add product fields, user detailed, supplier detailed Blank This Field is required This Field is required TESTCASE0 2 Add product fields Some input Success : Product Save Successfully !!!! Success : Product Save Successfully !!!! TESTCASE0 3 Add user details Some input Success :user save Successfully !!!! Success :user save Successfully !!!! TESTCASE0 4 Add supplier details Some input Success :supplier save Successfully !!!! Success :supplier save Successfully !!!! TESTCASE0 5 Update product fields, user detailed, supplier detailed Blank This field is required This field is required TESTCASE0 6 Update product fields Some value change SUCCESS: Product Updated Successfully !!!! SUCCESS: Product Updated Successfully !!!! TESTCASE0 7 Update supplier detailed Some valu change SUCCESS: supplier Updated Successfully !!!! SUCCESS: supplier Updated Successfully !!!!
  • 75.  Surfing Speed Cake php is reading hundreds if not thousands of different files in hundreds of folders for every single visitor that’s on your site.  Continues internet requirement  A user must continuous requirement of internet connection  Does not good layout in less ie7.