Help with Installation

Good afternoon,
 
I have just downloaded and install ERPNext on a box running Ubuntu 12.04.3 LTS.  The installation appears to have run sucessfully. There database has populated correctly I beleive.
The only change that I have made to the base installation configuration is the ERPNext is running on port 8082 instead of 8080.
 
The problems is as follows:
 
The login screen is display and when I enter the user id  "Administrator" and Password  "admin". the icon flashes as if it is accessing the database however the login screen remains
after the icon finishes accessing the database.
 
Any ideas or have I missed a step in the setup.
 
Thanking you in advance for your help with this mater.  I look forward to hearing from you in the near future.
 
Warm regards
Nigel



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
Check javascript console, there should be some error message.

On 09-Sep-2013, at 12:05 PM, readingna wrote:

Good afternoon,
 
I have just downloaded and install ERPNext on a box running Ubuntu 12.04.3 LTS.  The installation appears to have run sucessfully. There database has populated correctly I beleive.
The only change that I have made to the base installation configuration is the ERPNext is running on port 8082 instead of 8080.
 
The problems is as follows:
 
The login screen is display and when I enter the user id  "Administrator" and Password  "admin". the icon flashes as if it is accessing the database however the login screen remains
after the icon finishes accessing the database.
 
Any ideas or have I missed a step in the setup.
 
Thanking you in advance for your help with this mater.  I look forward to hearing from you in the near future.
 
Warm regards
Nigel



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.

On Monday, 9 September 2013 16:40:20 UTC+10, Nabin Hait wrote:
Check javascript console, there should be some error message.

On 09-Sep-2013, at 12:05 PM, readingna wrote:

Good afternoon,
 
I have just downloaded and install ERPNext on a box running Ubuntu 12.04.3 LTS.  The installation appears to have run sucessfully. There database has populated correctly I beleive.
The only change that I have made to the base installation configuration is the ERPNext is running on port 8082 instead of 8080.
 
The problems is as follows:
 
The login screen is display and when I enter the user id  "Administrator" and Password  "admin". the icon flashes as if it is accessing the database however the login screen remains
after the icon finishes accessing the database.
 
Any ideas or have I missed a step in the setup.
 
Thanking you in advance for your help with this mater.  I look forward to hearing from you in the near future.
 
Warm regards
Nigel



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note
Thanks for the quick responce.
 

SCRIPT5007: Unable to get value of the property 'message': object is null or undefined

 

$.ajax({

type:

"POST",

url:

"server.py",

data: args,

dataType:

"json",

success:

function(data) {

$(

"#login-spinner").toggle(false);

$(

'#login_btn').prop("disabled", false);

if(data.message=="Logged In") {

window.location.href =

"app.html";

}

else if(data.message=="No App") {

if(localStorage) {

var last_visited = localStorage.getItem("last_visited") || "index";

localStorage.removeItem(

"last_visited");

window.location.href = last_visited;

}

else {

window.location.href =

"index";

}

}

else {

login.set_message(data.message);

}

}

})

return false;

 
 
 
This is the error message from the console. The application is being access from another computer on the network.
 
Once again thanks for your help.
 
Warm regards
Nigel  



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
Hi Nigel,

Did you restart apache after changing ports?
Check the outputs of server.py in the network tab of the browser. There seems to be some server side error.

Also, which browser are you using?

You can also try after refreshing a few times. Sometimes, browsers do a lot of caching.

-Anand.

On 09-Sep-2013, at 12:20 PM, readingna <re...@gmail.com> wrote:


On Monday, 9 September 2013 16:40:20 UTC+10, Nabin Hait wrote:
Check javascript console, there should be some error message.

On 09-Sep-2013, at 12:05 PM, readingna wrote:

Good afternoon,
 
I have just downloaded and install ERPNext on a box running Ubuntu 12.04.3 LTS.  The installation appears to have run sucessfully. There database has populated correctly I beleive.
The only change that I have made to the base installation configuration is the ERPNext is running on port 8082 instead of 8080.
 
The problems is as follows:
 
The login screen is display and when I enter the user id  "Administrator" and Password  "admin". the icon flashes as if it is accessing the database however the login screen remains
after the icon finishes accessing the database.
 
Any ideas or have I missed a step in the setup.
 
Thanking you in advance for your help with this mater.  I look forward to hearing from you in the near future.
 
Warm regards
Nigel



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note
Thanks for the quick responce.
 

SCRIPT5007: Unable to get value of the property 'message': object is null or undefined


 

$.ajax({

type:

"POST",

url:

"server.py",

data: args,

dataType:

"json",

success:

function(data) {

$(

"#login-spinner").toggle(false);

$(

'#login_btn').prop("disabled", false);


if(data.message=="Logged In") {

window.location.href =

"app.html";

}

else if(data.message=="No App") {


if(localStorage) {


var last_visited = localStorage.getItem("last_visited") || "index";

localStorage.removeItem(

"last_visited");

window.location.href = last_visited;

}

else {

window.location.href =

"index";

}

}

else {

login.set_message(data.message);

}

}

})



return false;

 
 
 
This is the error message from the console. The application is being access from another computer on the network.
 
Once again thanks for your help.
 
Warm regards
Nigel  



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.

On Monday, September 9, 2013 5:11:28 PM UTC+10, Anand Doshi wrote:
Hi Nigel,

Did you restart apache after changing ports?
Check the outputs of server.py in the network tab of the browser. There seems to be some server side error.

Also, which browser are you using?

You can also try after refreshing a few times. Sometimes, browsers do a lot of caching.

-Anand.

On 09-Sep-2013, at 12:20 PM, readingna <re...@gmail.com> wrote:


On Monday, 9 September 2013 16:40:20 UTC+10, Nabin Hait wrote:
Check javascript console, there should be some error message.

On 09-Sep-2013, at 12:05 PM, readingna wrote:

Good afternoon,
 
I have just downloaded and install ERPNext on a box running Ubuntu 12.04.3 LTS.  The installation appears to have run sucessfully. There database has populated correctly I beleive.
The only change that I have made to the base installation configuration is the ERPNext is running on port 8082 instead of 8080.
 
The problems is as follows:
 
The login screen is display and when I enter the user id  "Administrator" and Password  "admin". the icon flashes as if it is accessing the database however the login screen remains
after the icon finishes accessing the database.
 
Any ideas or have I missed a step in the setup.
 
Thanking you in advance for your help with this mater.  I look forward to hearing from you in the near future.
 
Warm regards
Nigel



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note
Thanks for the quick responce.
 

SCRIPT5007: Unable to get value of the property 'message': object is null or undefined


 

$.ajax({

type:

"POST",

url:

"server.py",

data: args,

dataType:

"json",

success:

function(data) {

$(

"#login-spinner").toggle(false);

$(

'#login_btn').prop("disabled", false);


if(data.message=="Logged In") {

window.location.href =

"app.html";

}

else if(data.message=="No App") {


if(localStorage) {


var last_visited = localStorage.getItem("last_visited") || "index";

localStorage.removeItem(

"last_visited");

window.location.href = last_visited;

}

else {

window.location.href =

"index";

}

}

else {

login.set_message(data.message);

}

}

})



return false;

 
 
 
This is the error message from the console. The application is being access from another computer on the network.
 
Once again thanks for your help.
 
Warm regards
Nigel  



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
Hi Anand
Thanks that helped I am testing with both Firefox and IE9.  I have noticed that I can not click on some of the icon such as the nav panel at the top will not work any ideas.
 
Thanks for all the help it is greatly appreciated.
 
Cheers
Nigel 



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
Nigel,

Since you can see the desktop and top bar, the problem doesn't seem to be with installation. Check browser's console and check the traceback for any pointers.

-Anand.

On 10-Sep-2013, at 6:13 AM, readingna <re...@gmail.com> wrote:


On Monday, September 9, 2013 5:11:28 PM UTC+10, Anand Doshi wrote:
Hi Nigel,

Did you restart apache after changing ports?
Check the outputs of server.py in the network tab of the browser. There seems to be some server side error.

Also, which browser are you using?

You can also try after refreshing a few times. Sometimes, browsers do a lot of caching.

-Anand.

On 09-Sep-2013, at 12:20 PM, readingna <re...@gmail.com> wrote:


On Monday, 9 September 2013 16:40:20 UTC+10, Nabin Hait wrote:
Check javascript console, there should be some error message.

On 09-Sep-2013, at 12:05 PM, readingna wrote:

Good afternoon,
 
I have just downloaded and install ERPNext on a box running Ubuntu 12.04.3 LTS.  The installation appears to have run sucessfully. There database has populated correctly I beleive.
The only change that I have made to the base installation configuration is the ERPNext is running on port 8082 instead of 8080.
 
The problems is as follows:
 
The login screen is display and when I enter the user id  "Administrator" and Password  "admin". the icon flashes as if it is accessing the database however the login screen remains
after the icon finishes accessing the database.
 
Any ideas or have I missed a step in the setup.
 
Thanking you in advance for your help with this mater.  I look forward to hearing from you in the near future.
 
Warm regards
Nigel



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note
Thanks for the quick responce.
 

SCRIPT5007: Unable to get value of the property 'message': object is null or undefined


 

$.ajax({

type:

"POST",

url:

"server.py",

data: args,

dataType:

"json",

success:

function(data) {

$(

"#login-spinner").toggle(false);

$(

'#login_btn').prop("disabled", false);


if(data.message=="Logged In") {

window.location.href =

"app.html";

}

else if(data.message=="No App") {


if(localStorage) {


var last_visited = localStorage.getItem("last_visited") || "index";

localStorage.removeItem(

"last_visited");

window.location.href = last_visited;

}

else {

window.location.href =

"index";

}

}

else {

login.set_message(data.message);

}

}

})



return false;

 
 
 
This is the error message from the console. The application is being access from another computer on the network.
 
Once again thanks for your help.
 
Warm regards
Nigel  



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.
Hi Anand
Thanks that helped I am testing with both Firefox and IE9.  I have noticed that I can not click on some of the icon such as the nav panel at the top will not work any ideas.
 
Thanks for all the help it is greatly appreciated.
 
Cheers
Nigel 



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups “ERPNext Developer Forum” group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un…@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.



Note:

 

If you are posting an issue,

  1. We should be able to replicate it at our end. So please give us as much information as you can. Please see it from the point of view of the person receiving the communication.
  2. Paste your code at http://pastebin.com or http://gist.github.com and send only the URL via email
  3. For sending images, use http://imgur.com or other similar services. Do not send images as attachments. Links are good. Same goes for any file you are going to send.

     

    End of Note



    You received this message because you are subscribed to the Google Groups "ERPNext Developer Forum" group.

    To unsubscribe from this group and stop receiving emails from it, send an email to erpnext-developer-forum+un...@googlegroups.com.

    For more options, visit https://groups.google.com/groups/opt_out.