What's the difference between a bug tracking and an issue tracking system?
By : selvan
Date : March 29 2020, 07:55 AM
this one helps. Issue tracking systems usually integrate more with customers and customer issues. An issue could be "help me install this" or "How do I get the fubar into the flim flam." They could even be something like "I need an evalutation key for your software". Bug tracking systems help you keep track of wrong or missing things from the program.
|
Choosing the right methodology for developing a system such as Control Monitoring System
By : user2780036
Date : March 29 2020, 07:55 AM
I wish this help you The defence industry often uses some variant of MIL-STD-498 or its successor IEEE 12207. These are more technically oriented than RUP and less concerned with, well, selling consultants for Rational quite frankly.
|
Points to keep while developing acadamic progress tracking system
By : user3318334
Date : March 29 2020, 07:55 AM
seems to work fine Talk a little more about the data and how it's used: 1) How much data will you need to store? 2) How often will it be loaded? 3) How many users will be pulling this data at any given time? 4) Will the data ever be modified? Depending on your answer, you'll get different suggestions. Ultimately, if you're just doing single-row inserts and the data size is low, then MySQL with a front-end reporting tool (Jaspersoft/Pentaho/BIRT work great) would work well. If you're wanting a solid analytic database and the data size is bigger, then Infobright with those reporting tools works great too.
|
Developing a tracking pixel
By : Shunmuga Raja
Date : March 29 2020, 07:55 AM
Hope this helps You can write a script that creates and returns a .gif, .jpeg or .png image using PHP for tracking purposes using the GD library (which is often distributed with PHP in modern versions). If you don't have access to GD, you can always recompile PHP with GD enabled. Example: code :
<?php
// Create an image, 1x1 pixel in size
$im=imagecreate(1,1);
// Set the background colour
$white=imagecolorallocate($im,255,255,255);
// Allocate the background colour
imagesetpixel($im,1,1,$white);
// Set the image type
header("content-type:image/jpg");
// Create a JPEG file from the image
imagejpeg($im);
// Free memory associated with the image
imagedestroy($im);
?>
<img src="http://example.com/pixel.php?a=value1&b=value2&c=value3">
if (isset($_GET['a'])) {
// (Do|log) act on a
}
if (isset($_GET['b'])) {
// (Do|log) act on b
}
if (isset($_GET['c'])) {
// (Do|log) act on c
}
<img src="http://example.com/pixel.php?userid=98798&campaign=302&last=8">
// Server variables
$ip = $_SERVER['REMOTE_ADDR'];
$referer = $_SERVER['HTTP_REFERER'];
$useragent = $_SERVER['HTTP_USER_AGENT'];
$browser = get_browser(null, true);
etc...
$sql = "INSERT INTO campaign_tracking
('when','campaign','last','ip','useragent')
VALUES
(NOW(),'$campaign','$last','$ip','$useragent')";
|
Good resources for developing a Bug tracking tool?
By : Shivani
Date : March 29 2020, 07:55 AM
|