Giter Site home page Giter Site logo

droidactivator's People

droidactivator's Issues

Test

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by [email protected] on 14 Mar 2012 at 5:13

If customer want to change the mobile how to handle

What steps will reproduce the problem?
1. client activated the software
2. he wants to change the mobile
3.

What is the expected output? What do you see instead?


What version of the product are you using? On what operating system?


Please provide any additional information below.


Original issue reported on code.google.com by ravinsoftware on 27 Sep 2014 at 5:26

Hard Coded Server Value droidactivator.algos.it

What steps will reproduce the problem?
1. Add the following code to the start up activity:
 DroidActivator.newInstance(this, "http://192.168.252.209:123",new Runnable() {    
            public void run() {onUnlockResponse();}
        });

        // perform the Activation cycle โ€“ your startup method is called when finished
        DroidActivator.doActivationCycle(this);

Where the server can be anything other than droidactivator.algos.it

2. Run the app in debug mode and watch droidactivator.algos.it become the value 
of the server.

What is the expected output? What do you see instead?
Back end server should be 192.168.252.209:123 instead of droidactivator.algos.it

What version of the product are you using? On what operating system?
Checked out from SVN from head, Windows 7/Android.

Please provide any additional information below.

Line 1477 of DroidActivator.java:
public static void newInstance(Context ctx, String address, Runnable runnable)
Line 1488: newInstance(ctx, "droidactivator.algos.it", 0, runnable);

Instead of String address being used, the hard coded value is and results in 
the URL check failing.

Original issue reported on code.google.com by [email protected] on 11 May 2012 at 5:35

Acquire data from the device

When a user activates, acquire some data from the device. Include standard 
statistic data lile: android version, screen size, resolution, density, 
language, country. Allow the developer to specify custom data to include.

Original issue reported on code.google.com by [email protected] on 25 May 2012 at 11:02

Update database structure autmatically

Add a feature to automatically sync the database structure with the data model 
defined in the backend without the need to recreate the database to update to a 
new structure.

Original issue reported on code.google.com by [email protected] on 22 May 2012 at 9:47

Request - support multiple activation codes per email

It would be convenient to allow multiple activation codes for a single email. 
This would address the scenario where single user wants to activate an app on 
multiple devices he owns, without having to enter separate email addresses.

Symptoms are that activation for a single email is successful, but subsequent 
activations using additional codes fail, when there are multiple codes in the 
backend DB for that same email. Using backend 2.1, droidactivator jar 1.6.

Original issue reported on code.google.com by [email protected] on 11 Dec 2012 at 3:21

active flag not set

Hi I was trying to use your design for my app, after trying everything locally 
with success, I hosted the backend on a server altervista, now when I open my 
app I am regularly asked to send in the password and the code activation, once 
inserted the app tells me that the activation phase has been completed 
successfully, the server is updated regularly fields "Unique Id" and "Last 
activation and Last Update" but it is not put the check mark for "Activated " 
in fact, when you reopen the app is again asked to send in the activation code 
on the server altervista the table name is obviously not " da " but is properly 
configured in the config.php file, can you help me understand why the 
'application is not marked active despite the alert of success?
the fact that the database is activated equal to one bit may be the cause?

Original issue reported on code.google.com by [email protected] on 6 Sep 2012 at 5:55

Showing error when click on events link from activation record

What steps will reproduce the problem?
1. Click on events link from activation record.
2. Shows error

What is the expected output? What do you see instead?
Expected to see events instead get error.

What version of the product are you using? On what operating system?
latest. CentOS on Amazon EC2 Apache 2, PHP 5

Please provide any additional information below.

change controller.php line 180

From: for ($map = array(); $tmp = $result->fetch_array(MYSQLI_ASSOC);) $map[] = 
$tmp; //Php 5+
To: if($result) {
        for ($map = array(); $tmp = $result->fetch_array(MYSQLI_ASSOC);) $map[] = $tmp; //Php 5+
      }else{
        $map = array();
      }

Original issue reported on code.google.com by [email protected] on 29 Sep 2012 at 5:05

Activation record deletion

sometimes deleting an Activation record on the backend does not delete the 
record and reports "Unable to delete activation record"

Original issue reported on code.google.com by [email protected] on 11 Apr 2012 at 7:13

Empty strings on unsupported languages

If a device is set on a language not already supported by DroidActivator, the 
i18n system returns empty strings instead of default english strings and 
dialogs appear empty. Return english strings if the language is not supported!

Original issue reported on code.google.com by [email protected] on 14 Aug 2012 at 11:19

Landscape dialog on smartphone

What steps will reproduce the problem?
1. Rotate screen


What is the expected output? What do you see instead?
Scrollable dialog

What version of the product are you using? On what operating system?
1.4 jar

Please provide any additional information below.
Please make the dialog scrollable on smartphones

Original issue reported on code.google.com by [email protected] on 19 Jul 2012 at 12:34

Warning: mysqli::mysqli(

What steps will reproduce the problem?
1. login
2. error

What is the expected output? What do you see instead?
Login

What version of the product are you using? On what operating system?
2.0.2 , PHP Version 5.2.17 ,MySQL ver.  5.1

Please provide any additional information below.


PHP Error Message

Warning: mysqli::mysqli() [mysqli.mysqli]: (28000/1045): Access denied for user 
'root'@'127.0.0.1' (using password: NO) in 
/home/a2159079/public_html/da_backend/model.php on line 430

Free Web Hosting
Connect failed: %s Access denied for user 'root'@'127.0.0.1' (using password: 
NO)

Original issue reported on code.google.com by [email protected] on 17 Jul 2012 at 8:25

PHP Error 'unexpected T_PAAMAYIM_NEKUDOTAYIM'

What steps will reproduce the problem?
1. Enter Password in http://mysite/da_backend/admin.php
2. Then i see Parse error: syntax error, unexpected T_PAAMAYIM_NEKUDOTAYIM in 
/home/a2159079/public_html/da_backend/router.php on line 33
What is the expected output? What do you see instead?
an empty database is created and a a page is shown where you can manage 
activation records.

What version of the product are you using? On what operating system?
2.0

Please provide any additional information below.

Original issue reported on code.google.com by [email protected] on 15 Jul 2012 at 12:11

fetch_array() on php 5.2

What steps will reproduce the problem?
1. go to event page
2. router.php?zone=events&action=list&activation_id=1

What is the expected output? What do you see instead?
Open page but i got error
Fatal error: Call to a member function fetch_array() on a non-object in 
D:\Inetpub\webs\xxxxxxx\da_backend\controller.php on line 181



Original issue reported on code.google.com by [email protected] on 2 Aug 2012 at 8:12

unexpected T_CONST on Php < 5.3

What steps will reproduce the problem?
1. insert lib in an app
2. configure for check license
3. on check license click for check license

What is the expected output? What do you see instead?
Server error


What version of the product are you using? On what operating system?
da_backend_2.0.2.zip 

Please provide any additional information below.
if i call the check page manually i obtain

Parse error: syntax error, unexpected T_CONST in 
D:\Inetpub\webs\acquariusoftcom\da_backend\check.php on line 19




Original issue reported on code.google.com by [email protected] on 30 Jul 2012 at 8:25

Error Deleting Activation

What steps will reproduce the problem?
1. Try to delete an activation.
2. Activation never actually deletes from the DB

What is the expected output? What do you see instead?
The activation to be removed. The activation never is removed.

What version of the product are you using? On what operating system?
Latest. CentOS on amazon EC2. Apache 2, PHP 5

Please provide any additional information below.

To fix it change model.php Line 55 

from $query="DELETE FROM " .$table. " WHERE activation_id=" .$id; 
to $query="DELETE FROM " .$table. " WHERE id=" .$id;

Original issue reported on code.google.com by [email protected] on 29 Sep 2012 at 5:01

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.