Installation Issues

Hello,

I am trying to install the framework using the INSTALL.txt file found
in the www directory.
While doing setup#3 (Setting Up your first app) and while executing
the following commands under the Python shell:

import webnotes
import setup

setup.import_db(‘Framework’,‘accounts’)
setup.create_account_doctype()

I specifically get the error:

Traceback (most recent call last):
File “”, line 1, in
File “setup.py”, line 139, in import_db
conn = webnotes.db.Database(user=webnotes.defs.root_login,
password=webnotes.defs.root_password)
File “webnotes/db.py”, line 27, in init
self.use(self.user)
File “webnotes/db.py”, line 50, in use
self._conn.select_db(db_name)
_mysql_exceptions.OperationalError: (1049, “Unknown database ‘root’”)

when I execute the command: setup.import_db(‘Framework’,‘accounts’)

What am I missing?

Appreciate your help


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Hi Samir,

You should run instead from the cgi-bin folder

python webnotes/install_lib/install.py root rootpassword mydbname

Btw: we are in the process of working on the installer - should be done in couple of weeks.

- Rushabh





On Jun 1, 2011, at 11:48 AM, Samir wrote:

Hello,

I am trying to install the framework using the INSTALL.txt file found
in the www directory.
While doing setup#3 (Setting Up your first app) and while executing
the following commands under the Python shell:

import webnotes
import setup

setup.import_db('Framework','accounts')
setup.create_account_doctype()

I specifically get the error:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "setup.py", line 139, in import_db
    conn = webnotes.db.Database(user=webnotes.defs.root_login,
password=webnotes.defs.root_password)
  File "webnotes/db.py", line 27, in __init__
    self.use(self.user)
  File "webnotes/db.py", line 50, in use
    self._conn.select_db(db_name)
_mysql_exceptions.OperationalError: (1049, "Unknown database 'root'")

when I execute the command: setup.import_db('Framework','accounts')

What am I missing?

Appreciate your help

-- 
You received this message because you are subscribed to the Google Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.


---------------------------------------------------------------------------------
ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per month)

Twitter: @rushabh_mehta






You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.

To post to this group, send email to wn...@googlegroups.com.

To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Thanks Rushbah.
It worked after I figured out that I was using the wrong INSTALL.txt
file. After getting the latest release from svn, I found that file and
I also found install.py which was not there originally. I was using
the links on the project site (Google code site) so I guess they need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File “/var/www/trunk/v170/index.cgi”, line 29, in
webnotes.auth.HTTPRequest()
File “/var/www/trunk/v170/cgi-bin/webnotes/auth.py”, line 28, in
init
if webnotes.conn.get_global(“__session_status”)==‘stop’:
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 279, in
get_global
g = self.sql(“select defvalue from tabDefaultValue where defkey=%s and
parent=%s”, (key, user))
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 119, in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line 166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”, line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, ‘No database selected’)
(1046, ‘No database selected’)

Of course, I did the configuration for the def.py file as follows:

default_db_name = ‘root’
db_password = ‘mypassword’

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error (Access
denied to user wn…@localhost) encountered.

Any suggestion would be appreciated.

Samir


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Default db_name can't be 'root'!

On Jun 1, 2011, at 7:00 PM, Samir wrote:

Thanks Rushbah.
It worked after I figured out that I was using the wrong INSTALL.txt
file. After getting the latest release from svn, I found that file and
I also found install.py which was not there originally. I was using
the links on the project site (Google code site) so I guess they need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File "/var/www/trunk/v170/index.cgi", line 29, in
webnotes.auth.HTTPRequest()
File "/var/www/trunk/v170/cgi-bin/webnotes/auth.py", line 28, in
__init__
if webnotes.conn.get_global("__session_status")=='stop':
File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 279, in
get_global
g = self.sql("select defvalue from tabDefaultValue where defkey=%s and
parent=%s", (key, user))
File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 119, in sql
self._cursor.execute(query, values)
File "/usr/lib/pymodules/python2.7/MySQLdb/cursors.py", line 166, in
execute
self.errorhandler(self, exc, value)
File "/usr/lib/pymodules/python2.7/MySQLdb/connections.py", line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, 'No database selected')
(1046, 'No database selected')

Of course, I did the configuration for the def.py file as follows:

default_db_name  = 'root'
db_password = 'mypassword'

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error (Access
denied to user wn...@localhost) encountered.

Any suggestion would be appreciated.

Samir

-- 
You received this message because you are subscribed to the Google Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.


---------------------------------------------------------------------------------
ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per month)

Twitter: @rushabh_mehta






You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.

To post to this group, send email to wn...@googlegroups.com.

To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Thanks, that was a silly mistake from my side. I was able to make a
progress after that. It is running now but I get an empty login page.
Any pointer? Look like basic questions but I am mainly coming from MS
worlds so appreciate your patience.

On Jun 2, 7:04 am, Rushabh Mehta rm...@gmail.com wrote:

Default db_name can’t be ‘root’!

On Jun 1, 2011, at 7:00 PM, Samir wrote:

Thanks Rushbah.
It worked after I figured out that I was using the wrong INSTALL.txt
file. After getting the latest release from svn, I found that file and
I also found install.py which was not there originally. I was using
the links on the project site (Google code site) so I guess they need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File “/var/www/trunk/v170/index.cgi”, line 29, in
webnotes.auth.HTTPRequest()
File “/var/www/trunk/v170/cgi-bin/webnotes/auth.py”, line 28, in
init
if webnotes.conn.get_global(“__session_status”)==‘stop’:
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 279, in
get_global
g = self.sql(“select defvalue from tabDefaultValue where defkey=%s and
parent=%s”, (key, user))
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 119, in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line 166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”, line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, ‘No database selected’)
(1046, ‘No database selected’)

Of course, I did the configuration for the def.py file as follows:

default_db_name = ‘root’
db_password = ‘mypassword’

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error (Access
denied to user wn…@localhost) encountered.

Any suggestion would be appreciated.

Samir


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.



ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Did you checkout wnframework-modules?

You need to set the modules in defs.py

btw - the administrator login / password is "Administrator" / "admin"

Also you need to give 755 permission on the wnframework and wnframework-modules folders

You will also get a traceback if you do index.cgi?cmd=startup

- Rushabh

On Jun 2, 2011, at 4:37 PM, Samir wrote:


Thanks, that was a silly mistake from my side. I was able to make a
progress after that. It is running now but I get an empty login page.
Any pointer? Look like basic questions but I am mainly coming from MS
worlds so appreciate your patience.

On Jun 2, 7:04 am, Rushabh Mehta <rm...@gmail.com> wrote:
Default db_name can't be 'root'!

On Jun 1, 2011, at 7:00 PM, Samir wrote:









Thanks Rushbah.
It worked after I figured out that I was using the wrong INSTALL.txt
file. After getting the latest release from svn, I found that file and
I also found install.py which was not there originally. I was using
the links on the project site (Google code site) so I guess they need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File "/var/www/trunk/v170/index.cgi", line 29, in
webnotes.auth.HTTPRequest()
File "/var/www/trunk/v170/cgi-bin/webnotes/auth.py", line 28, in
__init__
if webnotes.conn.get_global("__session_status")=='stop':
File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 279, in
get_global
g = self.sql("select defvalue from tabDefaultValue where defkey=%s and
parent=%s", (key, user))
File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 119, in sql
self._cursor.execute(query, values)
File "/usr/lib/pymodules/python2.7/MySQLdb/cursors.py", line 166, in
execute
self.errorhandler(self, exc, value)
File "/usr/lib/pymodules/python2.7/MySQLdb/connections.py", line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, 'No database selected')
(1046, 'No database selected')

Of course, I did the configuration for the def.py file as follows:

default_db_name  = 'root'
db_password = 'mypassword'

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error (Access
denied to user wn...@localhost) encountered.

Any suggestion would be appreciated.

Samir

--  
You received this message because you are subscribed to the Google  
Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.

------------------------------------------------------------------------
---------
ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per month)

Twitter: @rushabh_mehta

-- 
You received this message because you are subscribed to the Google Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.


---------------------------------------------------------------------------------
ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per month)

Twitter: @rushabh_mehta






You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.

To post to this group, send email to wn...@googlegroups.com.

To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Thanks again Rushabh.

I followed your instructions and I continuted with the INSTALL.txt
file found in the Framework Modules download. Things are working now
but I am getting an Administrator error message (pop up) when I get
the login page and another one at the Welcome page. After that I do
not get it any more but I do not have the left sidebar and some UI
links are not functional correctly like the profile link etc.

Any suggested fix?

On Jun 2, 2:31 pm, Rushabh Mehta rm...@gmail.com wrote:

Did you checkout wnframework-modules?

You need to set the modules in defs.py

btw - the administrator login / password is “Administrator” / “admin”

Also you need to give 755 permission on the wnframework and
wnframework-modules folders

You will also get a traceback if you do index.cgi?cmd=startup

  • Rushabh

On Jun 2, 2011, at 4:37 PM, Samir wrote:

Thanks, that was a silly mistake from my side. I was able to make a
progress after that. It is running now but I get an empty login page.
Any pointer? Look like basic questions but I am mainly coming from MS
worlds so appreciate your patience.

On Jun 2, 7:04 am, Rushabh Mehta rm...@gmail.com wrote:

Default db_name can’t be ‘root’!

On Jun 1, 2011, at 7:00 PM, Samir wrote:

Thanks Rushbah.
It worked after I figured out that I was using the wrong INSTALL.txt
file. After getting the latest release from svn, I found that
file and
I also found install.py which was not there originally. I was using
the links on the project site (Google code site) so I guess they
need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File “/var/www/trunk/v170/index.cgi”, line 29, in
webnotes.auth.HTTPRequest()
File “/var/www/trunk/v170/cgi-bin/webnotes/auth.py”, line 28, in
init
if webnotes.conn.get_global(“__session_status”)==‘stop’:
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 279, in
get_global
g = self.sql(“select defvalue from tabDefaultValue where defkey=%
s and
parent=%s”, (key, user))
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 119, in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line 166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”, line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, ‘No database selected’)
(1046, ‘No database selected’)

Of course, I did the configuration for the def.py file as follows:

default_db_name = ‘root’
db_password = ‘mypassword’

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error
(Access
denied to user wn…@localhost) encountered.

Any suggestion would be appreciated.

Samir


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.




ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per
month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.



ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

I was able to beyond that now. Now, the left Sidebar is showing. A lot
of things are functioning well. But I have few issues:

  1. I get the following error when I login:
    “DocType Batch Settings does not exist -------------- There were
    errors in running patches, please call the Administrator”

  2. Some important pages are cannot be loaded like:

  • like when I click “Administrator” Profile, I get the following
    error: “Page profile-settings does not exist”
  • like when I click “Manage Account”, I get the following error:
    “Did not load Manage Account”

I think I am missing one last piece.

Thanks

On Jun 2, 5:09 pm, Samir ma...@energytech.com.sa wrote:

Thanks again Rushabh.

I followed your instructions and I continuted with the INSTALL.txt
file found in the Framework Modules download. Things are working now
but I am getting an Administrator error message (pop up) when I get
the login page and another one at the Welcome page. After that I do
not get it any more but I do not have the left sidebar and some UI
links are not functional correctly like the profile link etc.

Any suggested fix?

On Jun 2, 2:31 pm, Rushabh Mehta rm...@gmail.com wrote:

Did you checkout wnframework-modules?

You need to set the modules in defs.py

btw - the administrator login / password is “Administrator” / “admin”

Also you need to give 755 permission on the wnframework and
wnframework-modules folders

You will also get a traceback if you do index.cgi?cmd=startup

  • Rushabh

On Jun 2, 2011, at 4:37 PM, Samir wrote:

Thanks, that was a silly mistake from my side. I was able to make a
progress after that. It is running now but I get an empty login page.
Any pointer? Look like basic questions but I am mainly coming from MS
worlds so appreciate your patience.

On Jun 2, 7:04 am, Rushabh Mehta rm...@gmail.com wrote:

Default db_name can’t be ‘root’!

On Jun 1, 2011, at 7:00 PM, Samir wrote:

Thanks Rushbah.
It worked after I figured out that I was using the wrong INSTALL.txt
file. After getting the latest release from svn, I found that
file and
I also found install.py which was not there originally. I was using
the links on the project site (Google code site) so I guess they
need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File “/var/www/trunk/v170/index.cgi”, line 29, in
webnotes.auth.HTTPRequest()
File “/var/www/trunk/v170/cgi-bin/webnotes/auth.py”, line 28, in
init
if webnotes.conn.get_global(“__session_status”)==‘stop’:
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 279, in
get_global
g = self.sql(“select defvalue from tabDefaultValue where defkey=%
s and
parent=%s”, (key, user))
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 119, in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line 166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”, line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, ‘No database selected’)
(1046, ‘No database selected’)

Of course, I did the configuration for the def.py file as follows:

default_db_name = ‘root’
db_password = ‘mypassword’

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error
(Access
denied to user wn…@localhost) encountered.

Any suggestion would be appreciated.

Samir


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.




ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per
month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.



ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Samir,

Can you mail the last traceback from wnframework-modules/patches/patch.log

Also you need to copy wnframework-modules/module-images.png to wnframework/images/user - so that the module icons appear.

- Rushabh



On Jun 2, 2011, at 10:24 PM, Samir wrote:

I was able to beyond that now. Now, the left Sidebar is showing. A lot
of things are functioning well. But I have few issues:
1. I get  the following error when I login:
"DocType Batch Settings does not exist -------------- There were
errors in running patches, please call the Administrator"

2. Some important pages are cannot be loaded like:
  - like when I click "Administrator" Profile, I get the following
error: "Page profile-settings does not exist"
  - like when I click "Manage Account", I get the following error:
"Did not load Manage Account"

I think I am missing one last piece.

Thanks

On Jun 2, 5:09 pm, Samir <ma...@energytech.com.sa> wrote:
Thanks again Rushabh.

I followed your instructions and I continuted with the INSTALL.txt
file found in the Framework Modules download. Things are working now
but I am getting an Administrator error message (pop up) when I get
the login page and another one at the Welcome page. After that I do
not get it any more but I do not have the left sidebar and some UI
links are not functional correctly like the profile link etc.

Any suggested fix?

On Jun 2, 2:31 pm, Rushabh Mehta <rm...@gmail.com> wrote:







Did you checkout wnframework-modules?

You need to set the modules in defs.py

btw - the administrator login / password is "Administrator" / "admin"

Also you need to give 755 permission on the wnframework and  
wnframework-modules folders

You will also get a traceback if you do index.cgi?cmd=startup

- Rushabh

On Jun 2, 2011, at 4:37 PM, Samir wrote:

Thanks, that was a silly mistake from my side. I was able to make a
progress after that. It is running now but I get an empty login page.
Any pointer? Look like basic questions but I am mainly coming from MS
worlds so appreciate your patience.

On Jun 2, 7:04 am, Rushabh Mehta <rm...@gmail.com> wrote:
Default db_name can't be 'root'!

On Jun 1, 2011, at 7:00 PM, Samir wrote:

Thanks Rushbah.
It worked after I figured out that I was using the wrong INSTALL.txt
file. After getting the latest release from svn, I found that  
file and
I also found install.py which was not there originally. I was using
the links on the project site (Google code site) so I guess they  
need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File "/var/www/trunk/v170/index.cgi", line 29, in
webnotes.auth.HTTPRequest()
File "/var/www/trunk/v170/cgi-bin/webnotes/auth.py", line 28, in
__init__
if webnotes.conn.get_global("__session_status")=='stop':
File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 279, in
get_global
g = self.sql("select defvalue from tabDefaultValue where defkey=%
s and
parent=%s", (key, user))
File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 119, in sql
self._cursor.execute(query, values)
File "/usr/lib/pymodules/python2.7/MySQLdb/cursors.py", line 166, in
execute
self.errorhandler(self, exc, value)
File "/usr/lib/pymodules/python2.7/MySQLdb/connections.py", line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, 'No database selected')
(1046, 'No database selected')

Of course, I did the configuration for the def.py file as follows:

default_db_name  = 'root'
db_password = 'mypassword'

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error  
(Access
denied to user wn...@localhost) encountered.

Any suggestion would be appreciated.

Samir

--  
You received this message because you are subscribed to the Google
Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.

---------------------------------------------------------------------
---
---------
ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per  
month)

Twitter: @rushabh_mehta

--
You received this message because you are subscribed to the Google  
Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.

------------------------------------------------------------------------
---------
ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per month)

Twitter: @rushabh_mehta

-- 
You received this message because you are subscribed to the Google Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.


---------------------------------------------------------------------------------
ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per month)

Twitter: @rushabh_mehta






You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.

To post to this group, send email to wn...@googlegroups.com.

To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

The traceback oin the patch.log file has only this error repeated:
Error in wnframework:
Traceback (innermost last):
File “/var/www/trunk/v170/cgi-bin/webnotes/modules/patch.py”, line
15, in run
patch.execute(i)
File “/var/www/wnmodules/trunk/patches/patch.py”, line 650, in
execute
delete_doc(‘DocType’, ‘Batch Settings’)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/init.py”, line
60, in delete_doc
obj = get_obj(doctype, name)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/code.py”, line 159,
in get_obj
doclist = webnotes.model.doc.get(dt, dn, with_children = 0,
from_get_obj=1)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 644,
in get
doc = Document(dt, dn, prefix=prefix)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 84,
in init
self._loadfromdb(doctype, name)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 105,
in _loadfromdb
raise Exception, ‘[WNF] %s %s does not exist’ % (self.doctype,
self.name)
Exception: [WNF] DocType Batch Settings does not exist

I queried the table DocType directly to see if Batch Settings exists
but I didn’t find any.

I sent also the Error report from the system (assuming that it will
reach you). It has a number of errors that blocks from loading some
pages which I am not sure how to solve.

On Jun 3, 6:44 am, Rushabh Mehta rm...@gmail.com wrote:

Samir,

Can you mail the last traceback from wnframework-modules/patches/
patch.log

Also you need to copy wnframework-modules/module-images.png to
wnframework/images/user - so that the module icons appear.

  • Rushabh

On Jun 2, 2011, at 10:24 PM, Samir wrote:

I was able to beyond that now. Now, the left Sidebar is showing. A lot
of things are functioning well. But I have few issues:

  1. I get the following error when I login:
    “DocType Batch Settings does not exist -------------- There were
    errors in running patches, please call the Administrator”
  1. Some important pages are cannot be loaded like:
  • like when I click “Administrator” Profile, I get the following
    error: “Page profile-settings does not exist”
  • like when I click “Manage Account”, I get the following error:
    “Did not load Manage Account”

I think I am missing one last piece.

Thanks

On Jun 2, 5:09 pm, Samir ma...@energytech.com.sa wrote:

Thanks again Rushabh.

I followed your instructions and I continuted with the INSTALL.txt
file found in the Framework Modules download. Things are working now
but I am getting an Administrator error message (pop up) when I get
the login page and another one at the Welcome page. After that I do
not get it any more but I do not have the left sidebar and some UI
links are not functional correctly like the profile link etc.

Any suggested fix?

On Jun 2, 2:31 pm, Rushabh Mehta rm...@gmail.com wrote:

Did you checkout wnframework-modules?

You need to set the modules in defs.py

btw - the administrator login / password is “Administrator” /
“admin”

Also you need to give 755 permission on the wnframework and
wnframework-modules folders

You will also get a traceback if you do index.cgi?cmd=startup

  • Rushabh

On Jun 2, 2011, at 4:37 PM, Samir wrote:

Thanks, that was a silly mistake from my side. I was able to make a
progress after that. It is running now but I get an empty login
page.
Any pointer? Look like basic questions but I am mainly coming
from MS
worlds so appreciate your patience.

On Jun 2, 7:04 am, Rushabh Mehta rm...@gmail.com wrote:

Default db_name can’t be ‘root’!

On Jun 1, 2011, at 7:00 PM, Samir wrote:

Thanks Rushbah.
It worked after I figured out that I was using the wrong
INSTALL.txt
file. After getting the latest release from svn, I found that
file and
I also found install.py which was not there originally. I was
using
the links on the project site (Google code site) so I guess they
need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File “/var/www/trunk/v170/index.cgi”, line 29, in
webnotes.auth.HTTPRequest()
File “/var/www/trunk/v170/cgi-bin/webnotes/auth.py”, line 28, in
init
if webnotes.conn.get_global(“__session_status”)==‘stop’:
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 279, in
get_global
g = self.sql(“select defvalue from tabDefaultValue where defkey=%
s and
parent=%s”, (key, user))
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 119,
in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line
166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”,
line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, ‘No database selected’)
(1046, ‘No database selected’)

Of course, I did the configuration for the def.py file as
follows:

default_db_name = ‘root’
db_password = ‘mypassword’

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error
(Access
denied to user wn…@localhost) encountered.

Any suggestion would be appreciated.

Samir


You received this message because you are subscribed to the
Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to
wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.





ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per
month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.




ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per
month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.



ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Hi Samir,


master.sql.gz file is too old, not patched for long time. I am committing latest master file, it will solve the problem.


Regards,
Nabin Hait


On Fri, Jun 3, 2011 at 2:13 PM, Samir <ma…@energytech.com.sa> wrote:

The traceback oin the patch.log file has only this error repeated:

Error in wnframework:

Traceback (innermost last):

File "/var/www/trunk/v170/cgi-bin/webnotes/modules/patch.py", line

15, in run

patch.execute(i)

File "/var/www/wnmodules/trunk/patches/patch.py", line 650, in

execute

delete_doc('DocType', 'Batch Settings')

File "/var/www/trunk/v170/cgi-bin/webnotes/model/init.py", line

60, in delete_doc

obj = get_obj(doctype, name)

File "/var/www/trunk/v170/cgi-bin/webnotes/model/code.py", line 159,

in get_obj

doclist = webnotes.model.doc.get(dt, dn, with_children = 0,

from_get_obj=1)

File "/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py", line 644,

in get

doc = Document(dt, dn, prefix=prefix)

File "/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py", line 84,

in init

self._loadfromdb(doctype, name)

File "/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py", line 105,

in _loadfromdb

raise Exception, '[WNF] %s %s does not exist' % (self.doctype,

self.name)

Exception: [WNF] DocType Batch Settings does not exist



I queried the table DocType directly to see if Batch Settings exists

but I didn't find any.



I sent also the Error report from the system (assuming that it will

reach you). It has a number of errors that blocks from loading some

pages which I am not sure how to solve.



On Jun 3, 6:44 am, Rushabh Mehta <rm...@gmail.com> wrote:
> Samir,
>
> Can you mail the last traceback from wnframework-modules/patches/
> patch.log
>
> Also you need to copy wnframework-modules/module-images.png to
> wnframework/images/user - so that the module icons appear.
>
> - Rushabh
>
> On Jun 2, 2011, at 10:24 PM, Samir wrote:
>
>
>
>
>
>
>
>
>
> > I was able to beyond that now. Now, the left Sidebar is showing. A lot
> > of things are functioning well. But I have few issues:
> > 1. I get the following error when I login:
> > "DocType Batch Settings does not exist -------------- There were
> > errors in running patches, please call the Administrator"
>
> > 2. Some important pages are cannot be loaded like:
> > - like when I click "Administrator" Profile, I get the following
> > error: "Page profile-settings does not exist"
> > - like when I click "Manage Account", I get the following error:
> > "Did not load Manage Account"
>
> > I think I am missing one last piece.
>
> > Thanks
>
> > On Jun 2, 5:09 pm, Samir <ma...@energytech.com.sa> wrote:
> >> Thanks again Rushabh.
>
> >> I followed your instructions and I continuted with the INSTALL.txt
> >> file found in the Framework Modules download. Things are working now
> >> but I am getting an Administrator error message (pop up) when I get
> >> the login page and another one at the Welcome page. After that I do
> >> not get it any more but I do not have the left sidebar and some UI
> >> links are not functional correctly like the profile link etc.
>
> >> Any suggested fix?
>
> >> On Jun 2, 2:31 pm, Rushabh Mehta <rm...@gmail.com> wrote:
>
> >>> Did you checkout wnframework-modules?
>
> >>> You need to set the modules in defs.py
>
> >>> btw - the administrator login / password is "Administrator" /
> >>> "admin"
>
> >>> Also you need to give 755 permission on the wnframework and
> >>> wnframework-modules folders
>
> >>> You will also get a traceback if you do index.cgi?cmd=startup
>
> >>> - Rushabh
>
> >>> On Jun 2, 2011, at 4:37 PM, Samir wrote:
>
> >>>> Thanks, that was a silly mistake from my side. I was able to make a
> >>>> progress after that. It is running now but I get an empty login
> >>>> page.
> >>>> Any pointer? Look like basic questions but I am mainly coming
> >>>> from MS
> >>>> worlds so appreciate your patience.
>
> >>>> On Jun 2, 7:04 am, Rushabh Mehta <rm...@gmail.com> wrote:
> >>>>> Default db_name can't be 'root'!
>
> >>>>> On Jun 1, 2011, at 7:00 PM, Samir wrote:
>
> >>>>>> Thanks Rushbah.
> >>>>>> It worked after I figured out that I was using the wrong
> >>>>>> INSTALL.txt
> >>>>>> file. After getting the latest release from svn, I found that
> >>>>>> file and
> >>>>>> I also found install.py which was not there originally. I was
> >>>>>> using
> >>>>>> the links on the project site (Google code site) so I guess they
> >>>>>> need
> >>>>>> to be updated.
>
> >>>>>> After that, I am facing a new problem when I am trying to run the
> >>>>>> framework. When I browse to the framework directory I get the
> >>>>>> following error:
>
> >>>>>> Traceback (innermost last):
> >>>>>> File "/var/www/trunk/v170/index.cgi", line 29, in
> >>>>>> webnotes.auth.HTTPRequest()
> >>>>>> File "/var/www/trunk/v170/cgi-bin/webnotes/auth.py", line 28, in
> >>>>>> __init__
> >>>>>> if webnotes.conn.get_global("__session_status")=='stop':
> >>>>>> File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 279, in
> >>>>>> get_global
> >>>>>> g = self.sql("select defvalue from tabDefaultValue where defkey=%
> >>>>>> s and
> >>>>>> parent=%s", (key, user))
> >>>>>> File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 119,
> >>>>>> in sql
> >>>>>> self._cursor.execute(query, values)
> >>>>>> File "/usr/lib/pymodules/python2.7/MySQLdb/cursors.py", line
> >>>>>> 166, in
> >>>>>> execute
> >>>>>> self.errorhandler(self, exc, value)
> >>>>>> File "/usr/lib/pymodules/python2.7/MySQLdb/connections.py",
> >>>>>> line 35,
> >>>>>> in defaulterrorhandler
> >>>>>> raise errorclass, errorvalue
> >>>>>> OperationalError: (1046, 'No database selected')
> >>>>>> (1046, 'No database selected')
>
> >>>>>> Of course, I did the configuration for the def.py file as
> >>>>>> follows:
>
> >>>>>> default_db_name = 'root'
> >>>>>> db_password = 'mypassword'
>
> >>>>>> I tried experimenting by changing the the default_db_name to the
> >>>>>> dbname in mysql (which I called wnframework) but another error
> >>>>>> (Access
> >>>>>> denied to user wn...@localhost) encountered.
>
> >>>>>> Any suggestion would be appreciated.
>
> >>>>>> Samir
>
> >>>>>> --
> >>>>>> You received this message because you are subscribed to the
> >>>>>> Google
> >>>>>> Groups "Web Notes Framework Forum" group.
> >>>>>> To post to this group, send email to
> >>>>>> wn...@googlegroups.com.
> >>>>>> To unsubscribe from this group, send email to wnframework
> >>>>>> +un...@googlegroups.com.
> >>>>>> For more options, visit this group athttp://groups.google.com/
> >>>>>> group/wnframework?hl=en.
>
> >>>>> ------------------------------------------------------------------
> >>>>> ---
> >>>>> ---
> >>>>> ---------
> >>>>> ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per
> >>>>> month)
>
> >>>>> Website:https://www.erpnext.com
> >>>>> Twitter: @rushabh_mehta
>
> >>>> --
> >>>> You received this message because you are subscribed to the Google
> >>>> Groups "Web Notes Framework Forum" group.
> >>>> To post to this group, send email to wn...@googlegroups.com.
> >>>> To unsubscribe from this group, send email to wnframework
> >>>> +un...@googlegroups.com.
> >>>> For more options, visit this group athttp://groups.google.com/
> >>>> group/wnframework?hl=en.
>
> >>> --------------------------------------------------------------------
> >>> ----
> >>> ---------
> >>> ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per
> >>> month)
>
> >>> Website:https://www.erpnext.com
> >>> Twitter: @rushabh_mehta
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Web Notes Framework Forum" group.
> > To post to this group, send email to wn...@googlegroups.com.
> > To unsubscribe from this group, send email to wnframework
> > +un...@googlegroups.com.
> > For more options, visit this group athttp://groups.google.com/
> > group/wnframework?hl=en.
>
> ------------------------------------------------------------------------
> ---------
> ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per month)
>
> Website:https://www.erpnext.com
> Twitter: @rushabh_mehta

--
You received this message because you are subscribed to the Google Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.




--
Regards,

Nabin Hait



You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.

To post to this group, send email to wn...@googlegroups.com.

To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Hi,


I had updated master.sql.gz file. Please update your local file and try.

Hopefully it will solve the problem.


Regards,
Nabin Hait


On Fri, Jun 3, 2011 at 2:43 PM, Nabin Hait <na…@gmail.com> wrote:

Hi Samir,

master.sql.gz file is too old, not patched for long time. I am committing latest master file, it will solve the problem.


Regards,
Nabin Hait



On Fri, Jun 3, 2011 at 2:13 PM, Samir <ma...@energytech.com.sa> wrote:

The traceback oin the patch.log file has only this error repeated:

Error in wnframework:

Traceback (innermost last):

File "/var/www/trunk/v170/cgi-bin/webnotes/modules/patch.py", line

15, in run

patch.execute(i)

File "/var/www/wnmodules/trunk/patches/patch.py", line 650, in

execute

delete_doc('DocType', 'Batch Settings')

File "/var/www/trunk/v170/cgi-bin/webnotes/model/init.py", line

60, in delete_doc

obj = get_obj(doctype, name)

File "/var/www/trunk/v170/cgi-bin/webnotes/model/code.py", line 159,

in get_obj

doclist = webnotes.model.doc.get(dt, dn, with_children = 0,

from_get_obj=1)

File "/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py", line 644,

in get

doc = Document(dt, dn, prefix=prefix)

File "/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py", line 84,

in init

self._loadfromdb(doctype, name)

File "/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py", line 105,

in _loadfromdb

raise Exception, '[WNF] %s %s does not exist' % (self.doctype,

self.name)

Exception: [WNF] DocType Batch Settings does not exist



I queried the table DocType directly to see if Batch Settings exists

but I didn't find any.



I sent also the Error report from the system (assuming that it will

reach you). It has a number of errors that blocks from loading some

pages which I am not sure how to solve.



On Jun 3, 6:44 am, Rushabh Mehta <rm...@gmail.com> wrote:
> Samir,
>
> Can you mail the last traceback from wnframework-modules/patches/
> patch.log
>
> Also you need to copy wnframework-modules/module-images.png to
> wnframework/images/user - so that the module icons appear.
>
> - Rushabh
>
> On Jun 2, 2011, at 10:24 PM, Samir wrote:
>
>
>
>
>
>
>
>
>
> > I was able to beyond that now. Now, the left Sidebar is showing. A lot
> > of things are functioning well. But I have few issues:
> > 1. I get the following error when I login:
> > "DocType Batch Settings does not exist -------------- There were
> > errors in running patches, please call the Administrator"
>
> > 2. Some important pages are cannot be loaded like:
> > - like when I click "Administrator" Profile, I get the following
> > error: "Page profile-settings does not exist"
> > - like when I click "Manage Account", I get the following error:
> > "Did not load Manage Account"
>
> > I think I am missing one last piece.
>
> > Thanks
>
> > On Jun 2, 5:09 pm, Samir <ma...@energytech.com.sa> wrote:
> >> Thanks again Rushabh.
>
> >> I followed your instructions and I continuted with the INSTALL.txt
> >> file found in the Framework Modules download. Things are working now
> >> but I am getting an Administrator error message (pop up) when I get
> >> the login page and another one at the Welcome page. After that I do
> >> not get it any more but I do not have the left sidebar and some UI
> >> links are not functional correctly like the profile link etc.
>
> >> Any suggested fix?
>
> >> On Jun 2, 2:31 pm, Rushabh Mehta <rm...@gmail.com> wrote:
>
> >>> Did you checkout wnframework-modules?
>
> >>> You need to set the modules in defs.py
>
> >>> btw - the administrator login / password is "Administrator" /
> >>> "admin"
>
> >>> Also you need to give 755 permission on the wnframework and
> >>> wnframework-modules folders
>
> >>> You will also get a traceback if you do index.cgi?cmd=startup
>
> >>> - Rushabh
>
> >>> On Jun 2, 2011, at 4:37 PM, Samir wrote:
>
> >>>> Thanks, that was a silly mistake from my side. I was able to make a
> >>>> progress after that. It is running now but I get an empty login
> >>>> page.
> >>>> Any pointer? Look like basic questions but I am mainly coming
> >>>> from MS
> >>>> worlds so appreciate your patience.
>
> >>>> On Jun 2, 7:04 am, Rushabh Mehta <rm...@gmail.com> wrote:
> >>>>> Default db_name can't be 'root'!
>
> >>>>> On Jun 1, 2011, at 7:00 PM, Samir wrote:
>
> >>>>>> Thanks Rushbah.
> >>>>>> It worked after I figured out that I was using the wrong
> >>>>>> INSTALL.txt
> >>>>>> file. After getting the latest release from svn, I found that
> >>>>>> file and
> >>>>>> I also found install.py which was not there originally. I was
> >>>>>> using
> >>>>>> the links on the project site (Google code site) so I guess they
> >>>>>> need
> >>>>>> to be updated.
>
> >>>>>> After that, I am facing a new problem when I am trying to run the
> >>>>>> framework. When I browse to the framework directory I get the
> >>>>>> following error:
>
> >>>>>> Traceback (innermost last):
> >>>>>> File "/var/www/trunk/v170/index.cgi", line 29, in
> >>>>>> webnotes.auth.HTTPRequest()
> >>>>>> File "/var/www/trunk/v170/cgi-bin/webnotes/auth.py", line 28, in
> >>>>>> __init__
> >>>>>> if webnotes.conn.get_global("__session_status")=='stop':
> >>>>>> File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 279, in
> >>>>>> get_global
> >>>>>> g = self.sql("select defvalue from tabDefaultValue where defkey=%
> >>>>>> s and
> >>>>>> parent=%s", (key, user))
> >>>>>> File "/var/www/trunk/v170/cgi-bin/webnotes/db.py", line 119,
> >>>>>> in sql
> >>>>>> self._cursor.execute(query, values)
> >>>>>> File "/usr/lib/pymodules/python2.7/MySQLdb/cursors.py", line
> >>>>>> 166, in
> >>>>>> execute
> >>>>>> self.errorhandler(self, exc, value)
> >>>>>> File "/usr/lib/pymodules/python2.7/MySQLdb/connections.py",
> >>>>>> line 35,
> >>>>>> in defaulterrorhandler
> >>>>>> raise errorclass, errorvalue
> >>>>>> OperationalError: (1046, 'No database selected')
> >>>>>> (1046, 'No database selected')
>
> >>>>>> Of course, I did the configuration for the def.py file as
> >>>>>> follows:
>
> >>>>>> default_db_name = 'root'
> >>>>>> db_password = 'mypassword'
>
> >>>>>> I tried experimenting by changing the the default_db_name to the
> >>>>>> dbname in mysql (which I called wnframework) but another error
> >>>>>> (Access
> >>>>>> denied to user wn...@localhost) encountered.
>
> >>>>>> Any suggestion would be appreciated.
>
> >>>>>> Samir
>
> >>>>>> --
> >>>>>> You received this message because you are subscribed to the
> >>>>>> Google
> >>>>>> Groups "Web Notes Framework Forum" group.
> >>>>>> To post to this group, send email to
> >>>>>> wn...@googlegroups.com.
> >>>>>> To unsubscribe from this group, send email to wnframework
> >>>>>> +un...@googlegroups.com.
> >>>>>> For more options, visit this group athttp://groups.google.com/
> >>>>>> group/wnframework?hl=en.
>
> >>>>> ------------------------------------------------------------------
> >>>>> ---
> >>>>> ---
> >>>>> ---------
> >>>>> ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per
> >>>>> month)
>
> >>>>> Website:https://www.erpnext.com
> >>>>> Twitter: @rushabh_mehta
>
> >>>> --
> >>>> You received this message because you are subscribed to the Google
> >>>> Groups "Web Notes Framework Forum" group.
> >>>> To post to this group, send email to wn...@googlegroups.com.
> >>>> To unsubscribe from this group, send email to wnframework
> >>>> +un...@googlegroups.com.
> >>>> For more options, visit this group athttp://groups.google.com/
> >>>> group/wnframework?hl=en.
>
> >>> --------------------------------------------------------------------
> >>> ----
> >>> ---------
> >>> ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per
> >>> month)
>
> >>> Website:https://www.erpnext.com
> >>> Twitter: @rushabh_mehta
>
> > --
> > You received this message because you are subscribed to the Google
> > Groups "Web Notes Framework Forum" group.
> > To post to this group, send email to wn...@googlegroups.com.
> > To unsubscribe from this group, send email to wnframework
> > +un...@googlegroups.com.
> > For more options, visit this group athttp://groups.google.com/
> > group/wnframework?hl=en.
>
> ------------------------------------------------------------------------
> ---------
> ERPNext - World's most affordable ERP - (Rs 299 / $7 per user per month)
>
> Website:https://www.erpnext.com
> Twitter: @rushabh_mehta

--
You received this message because you are subscribed to the Google Groups "Web Notes Framework Forum" group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.




--
Regards,

Nabin Hait



--
Regards,

Nabin Hait



You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.

To post to this group, send email to wn...@googlegroups.com.

To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Thank Nabin,

I though to start a fresh installation since I have the steps very
clear now in my mind and using the latest checkout I got from you.
However, now I am getting an error very early when I am running
install.py (this was not there before). The database is created
partially.

sudo python cgi-bin/webnotes/install_lib/install.py root xxxx erpx
Made copy of defs.py
Created user erpx
Created database erpx
Granted privileges to user erpx and database erpx
Starting database import…
Imported from database /var/www/wnframework/v170/data/Framework.sql
Traceback (most recent call last):
File “cgi-bin/webnotes/install_lib/install.py”, line 229, in

password = options.password, verbose = 1)
File “cgi-bin/webnotes/install_lib/install.py”, line 131, in
import_from_db
self.import_core_module()
File “cgi-bin/webnotes/install_lib/install.py”, line 68, in
import_core_module
import_module(‘core’)
File “cgi-bin/webnotes/modules/import_module.py”, line 24, in
import_module
import_file(module, doctype, docname, path)
File “cgi-bin/webnotes/modules/import_module.py”, line 60, in
import_file
set_doc(doclist, 1, 1, 1)
File “cgi-bin/webnotes/utils/transfer.py”, line 21, in set_doc
ud.sync()
File “cgi-bin/webnotes/utils/transfer.py”, line 42, in sync
is_mod = self.is_modified()
File “cgi-bin/webnotes/utils/transfer.py”, line 55, in is_modified
timestamp = webnotes.conn.sql(“select modified from tab%s where
name=%s” % (self.doc.doctype, ‘%s’), self.doc.name)
File “cgi-bin/webnotes/db.py”, line 116, in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line 166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”, line 35,
in defaulterrorhandler
raise errorclass, errorvalue
_mysql_exceptions.ProgrammingError: (1146, “Table ‘erpx.tabModule Def’
doesn’t exist”)

Appreciate your help.

On Jun 3, 12:25 pm, Nabin Hait na...@gmail.com wrote:

Hi,

I had updated master.sql.gz file. Please update your local file and try.

Hopefully it will solve the problem.

Regards,
Nabin Hait

On Fri, Jun 3, 2011 at 2:43 PM, Nabin Hait na...@gmail.com wrote:

Hi Samir,

master.sql.gz file is too old, not patched for long time. I am committing
latest master file, it will solve the problem.

Regards,
Nabin Hait

On Fri, Jun 3, 2011 at 2:13 PM, Samir ma...@energytech.com.sa wrote:

The traceback oin the patch.log file has only this error repeated:
Error in wnframework:
Traceback (innermost last):
File “/var/www/trunk/v170/cgi-bin/webnotes/modules/patch.py”, line
15, in run
patch.execute(i)
File “/var/www/wnmodules/trunk/patches/patch.py”, line 650, in
execute
delete_doc(‘DocType’, ‘Batch Settings’)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/init.py”, line
60, in delete_doc
obj = get_obj(doctype, name)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/code.py”, line 159,
in get_obj
doclist = webnotes.model.doc.get(dt, dn, with_children = 0,
from_get_obj=1)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 644,
in get
doc = Document(dt, dn, prefix=prefix)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 84,
in init
self._loadfromdb(doctype, name)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 105,
in _loadfromdb
raise Exception, ‘[WNF] %s %s does not exist’ % (self.doctype,
self.name)
Exception: [WNF] DocType Batch Settings does not exist

I queried the table DocType directly to see if Batch Settings exists
but I didn’t find any.

I sent also the Error report from the system (assuming that it will
reach you). It has a number of errors that blocks from loading some
pages which I am not sure how to solve.

On Jun 3, 6:44 am, Rushabh Mehta rm...@gmail.com wrote:

Samir,

Can you mail the last traceback from wnframework-modules/patches/
patch.log

Also you need to copy wnframework-modules/module-images.png to
wnframework/images/user - so that the module icons appear.

  • Rushabh

On Jun 2, 2011, at 10:24 PM, Samir wrote:

I was able to beyond that now. Now, the left Sidebar is showing. A lot
of things are functioning well. But I have few issues:

  1. I get the following error when I login:
    “DocType Batch Settings does not exist -------------- There were
    errors in running patches, please call the Administrator”
  1. Some important pages are cannot be loaded like:
  • like when I click “Administrator” Profile, I get the following
    error: “Page profile-settings does not exist”
  • like when I click “Manage Account”, I get the following error:
    “Did not load Manage Account”

I think I am missing one last piece.

Thanks

On Jun 2, 5:09 pm, Samir ma...@energytech.com.sa wrote:

Thanks again Rushabh.

I followed your instructions and I continuted with the INSTALL.txt
file found in the Framework Modules download. Things are working now
but I am getting an Administrator error message (pop up) when I get
the login page and another one at the Welcome page. After that I do
not get it any more but I do not have the left sidebar and some UI
links are not functional correctly like the profile link etc.

Any suggested fix?

On Jun 2, 2:31 pm, Rushabh Mehta rm...@gmail.com wrote:

Did you checkout wnframework-modules?

You need to set the modules in defs.py

btw - the administrator login / password is “Administrator” /
“admin”

Also you need to give 755 permission on the wnframework and
wnframework-modules folders

You will also get a traceback if you do index.cgi?cmd=startup

  • Rushabh

On Jun 2, 2011, at 4:37 PM, Samir wrote:

Thanks, that was a silly mistake from my side. I was able to make a
progress after that. It is running now but I get an empty login
page.
Any pointer? Look like basic questions but I am mainly coming
from MS
worlds so appreciate your patience.

On Jun 2, 7:04 am, Rushabh Mehta rm...@gmail.com wrote:

Default db_name can’t be ‘root’!

On Jun 1, 2011, at 7:00 PM, Samir wrote:

Thanks Rushbah.
It worked after I figured out that I was using the wrong
INSTALL.txt
file. After getting the latest release from svn, I found that
file and
I also found install.py which was not there originally. I was
using
the links on the project site (Google code site) so I guess they
need
to be updated.

After that, I am facing a new problem when I am trying to run the
framework. When I browse to the framework directory I get the
following error:

Traceback (innermost last):
File “/var/www/trunk/v170/index.cgi”, line 29, in
webnotes.auth.HTTPRequest()
File “/var/www/trunk/v170/cgi-bin/webnotes/auth.py”, line 28, in
init
if webnotes.conn.get_global(“__session_status”)==‘stop’:
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 279, in
get_global
g = self.sql(“select defvalue from tabDefaultValue where defkey=%
s and
parent=%s”, (key, user))
File “/var/www/trunk/v170/cgi-bin/webnotes/db.py”, line 119,
in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line
166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”,
line 35,
in defaulterrorhandler
raise errorclass, errorvalue
OperationalError: (1046, ‘No database selected’)
(1046, ‘No database selected’)

Of course, I did the configuration for the def.py file as
follows:

default_db_name = ‘root’
db_password = ‘mypassword’

I tried experimenting by changing the the default_db_name to the
dbname in mysql (which I called wnframework) but another error
(Access
denied to user wn…@localhost) encountered.

Any suggestion would be appreciated.

Samir


You received this message because you are subscribed to the
Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to
wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.





ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per
month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.




ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per
month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google
Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework
+un...@googlegroups.com.
For more options, visit this group athttp://groups.google.com/
group/wnframework?hl=en.



ERPNext - World’s most affordable ERP - (Rs 299 / $7 per user per month)

Website:https://www.erpnext.com
Twitter: @rushabh_mehta


You received this message because you are subscribed to the Google Groups
“Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to
wnframework+un...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/wnframework?hl=en.


Regards,

Nabin Hait


Regards,

Nabin Hait


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Hi Samir,

Sorry we are working on the installer… I know we should use
branches, it will come.

You don’t need to reinstall just import the new database using mysql…
Don’t run then installer either. Just set the db name in defs.py and
you should be set.

Rushabh

On Friday, June 3, 2011, Samir ma...@energytech.com.sa wrote:

Thank Nabin,

I though to start a fresh installation since I have the steps very
clear now in my mind and using the latest checkout I got from you.
However, now I am getting an error very early when I am running
install.py (this was not there before). The database is created
partially.

sudo python cgi-bin/webnotes/install_lib/install.py root xxxx erpx
Made copy of defs.py
Created user erpx
Created database erpx
Granted privileges to user erpx and database erpx
Starting database import…
Imported from database /var/www/wnframework/v170/data/Framework.sql
Traceback (most recent call last):
File “cgi-bin/webnotes/install_lib/install.py”, line 229, in

password = options.password, verbose = 1)
File “cgi-bin/webnotes/install_lib/install.py”, line 131, in
import_from_db
self.import_core_module()
File “cgi-bin/webnotes/install_lib/install.py”, line 68, in
import_core_module
import_module(‘core’)
File “cgi-bin/webnotes/modules/import_module.py”, line 24, in
import_module
import_file(module, doctype, docname, path)
File “cgi-bin/webnotes/modules/import_module.py”, line 60, in
import_file
set_doc(doclist, 1, 1, 1)
File “cgi-bin/webnotes/utils/transfer.py”, line 21, in set_doc
ud.sync()
File “cgi-bin/webnotes/utils/transfer.py”, line 42, in sync
is_mod = self.is_modified()
File “cgi-bin/webnotes/utils/transfer.py”, line 55, in is_modified
timestamp = webnotes.conn.sql(“select modified from tab%s where
name=%s” % (self.doc.doctype, ‘%s’), self.doc.name)
File “cgi-bin/webnotes/db.py”, line 116, in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line 166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”, line 35,
in defaulterrorhandler
raise errorclass, errorvalue
_mysql_exceptions.ProgrammingError: (1146, “Table ‘erpx.tabModule Def’
doesn’t exist”)

Appreciate your help.

On Jun 3, 12:25 pm, Nabin Hait na...@gmail.com wrote:

Hi,

I had updated master.sql.gz file. Please update your local file and try.

Hopefully it will solve the problem.

Regards,
Nabin Hait

On Fri, Jun 3, 2011 at 2:43 PM, Nabin Hait na...@gmail.com wrote:

Hi Samir,

master.sql.gz file is too old, not patched for long time. I am committing
latest master file, it will solve the problem.

Regards,
Nabin Hait

On Fri, Jun 3, 2011 at 2:13 PM, Samir ma...@energytech.com.sa wrote:

The traceback oin the patch.log file has only this error repeated:
Error in wnframework:
Traceback (innermost last):
File “/var/www/trunk/v170/cgi-bin/webnotes/modules/patch.py”, line
15, in run
patch.execute(i)
File “/var/www/wnmodules/trunk/patches/patch.py”, line 650, in
execute
delete_doc(‘DocType’, ‘Batch Settings’)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/init.py”, line
60, in delete_doc
obj = get_obj(doctype, name)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/code.py”, line 159,
in get_obj
doclist = webnotes.model.doc.get(dt, dn, with_children = 0,
from_get_obj=1)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 644,
in get
doc = Document(dt, dn, prefix=prefix)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 84,
in init
self._loadfromdb(doctype, name)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 105,
in _loadfromdb
raise Exception, ‘[WNF] %s %s does not exist’ % (self.doctype,
self.name)
Exception: [WNF] DocType Batch Settings does not exist

I queried the table DocType directly to see if Batch Settings exists
but I didn’t find any.

I sent also the Error report from the system (assuming that it will
reach you). It has a number of errors that blocks from loading some
pages which I am not sure how to solve.

On Jun 3, 6:44 am, Rushabh Mehta rm...@gmail.com wrote:

Samir,

Can you mail the last traceback from wnframework-modules/patches/
patch.log

Also you need to copy wnframework-modules/module-images.png to
wnframework/images/user - so that the module icons appear.

  • Rushabh

On Jun 2, 2011, at 10:24 PM, Samir wrote:

I was able to beyond that now. Now, the left Sidebar is showing. A lot
of things are functioning well. But I have few issues:

  1. I get the following error when I login:
    “DocType Batch Settings does not exist -------------- There were
    errors in running patches, please call the Administrator”
  1. Some important pages are cannot be loaded like:
  • like when I click “Administrator” Profile, I get the following
    error: “Page profile-settings does not exist”
  • like when I click “Manage Account”, I get the following error:
    “Did not load Manage Account”

I think I am missing one last piece.

Thanks

On Jun 2, 5:09 pm, Samir ma...@energytech.com.sa wrote:

Thanks again Rushabh.

I followed your instructions and I continuted with the INSTALL.txt
file found in the Framework Modules download. Things are working now
but I am getting an Administrator error message (pop up) when I get
the login page and another one at the Welcome page. After that I do
not get it any more but I do not have the left sidebar and some UI
links are not functional correctly like the profile link etc.

Any suggested fix?


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

I will do that. But I have a small issue that I would like you help me
with.
I was playing with permissions and for some reason now when I go to
the Login page, it displays the page for few seconds and then, it
redirects to www.erpnext.com?

On Jun 3, 6:35 pm, Rushabh Mehta rm...@gmail.com wrote:

Hi Samir,

Sorry we are working on the installer… I know we should use
branches, it will come.

You don’t need to reinstall just import the new database using mysql…
Don’t run then installer either. Just set the db name in defs.py and
you should be set.

Rushabh

On Friday, June 3, 2011, Samir ma...@energytech.com.sa wrote:

Thank Nabin,

I though to start a fresh installation since I have the steps very
clear now in my mind and using the latest checkout I got from you.
However, now I am getting an error very early when I am running
install.py (this was not there before). The database is created
partially.

sudo python cgi-bin/webnotes/install_lib/install.py root xxxx erpx
Made copy of defs.py
Created user erpx
Created database erpx
Granted privileges to user erpx and database erpx
Starting database import…
Imported from database /var/www/wnframework/v170/data/Framework.sql
Traceback (most recent call last):
File “cgi-bin/webnotes/install_lib/install.py”, line 229, in

password = options.password, verbose = 1)
File “cgi-bin/webnotes/install_lib/install.py”, line 131, in
import_from_db
self.import_core_module()
File “cgi-bin/webnotes/install_lib/install.py”, line 68, in
import_core_module
import_module(‘core’)
File “cgi-bin/webnotes/modules/import_module.py”, line 24, in
import_module
import_file(module, doctype, docname, path)
File “cgi-bin/webnotes/modules/import_module.py”, line 60, in
import_file
set_doc(doclist, 1, 1, 1)
File “cgi-bin/webnotes/utils/transfer.py”, line 21, in set_doc
ud.sync()
File “cgi-bin/webnotes/utils/transfer.py”, line 42, in sync
is_mod = self.is_modified()
File “cgi-bin/webnotes/utils/transfer.py”, line 55, in is_modified
timestamp = webnotes.conn.sql(“select modified from tab%s where
name=%s” % (self.doc.doctype, ‘%s’), self.doc.name)
File “cgi-bin/webnotes/db.py”, line 116, in sql
self._cursor.execute(query, values)
File “/usr/lib/pymodules/python2.7/MySQLdb/cursors.py”, line 166, in
execute
self.errorhandler(self, exc, value)
File “/usr/lib/pymodules/python2.7/MySQLdb/connections.py”, line 35,
in defaulterrorhandler
raise errorclass, errorvalue
_mysql_exceptions.ProgrammingError: (1146, “Table ‘erpx.tabModule Def’
doesn’t exist”)

Appreciate your help.

On Jun 3, 12:25 pm, Nabin Hait na...@gmail.com wrote:

Hi,

I had updated master.sql.gz file. Please update your local file and try.

Hopefully it will solve the problem.

Regards,
Nabin Hait

On Fri, Jun 3, 2011 at 2:43 PM, Nabin Hait na...@gmail.com wrote:

Hi Samir,

master.sql.gz file is too old, not patched for long time. I am committing
latest master file, it will solve the problem.

Regards,
Nabin Hait

On Fri, Jun 3, 2011 at 2:13 PM, Samir ma...@energytech.com.sa wrote:

The traceback oin the patch.log file has only this error repeated:
Error in wnframework:
Traceback (innermost last):
File “/var/www/trunk/v170/cgi-bin/webnotes/modules/patch.py”, line
15, in run
patch.execute(i)
File “/var/www/wnmodules/trunk/patches/patch.py”, line 650, in
execute
delete_doc(‘DocType’, ‘Batch Settings’)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/init.py”, line
60, in delete_doc
obj = get_obj(doctype, name)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/code.py”, line 159,
in get_obj
doclist = webnotes.model.doc.get(dt, dn, with_children = 0,
from_get_obj=1)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 644,
in get
doc = Document(dt, dn, prefix=prefix)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 84,
in init
self._loadfromdb(doctype, name)
File “/var/www/trunk/v170/cgi-bin/webnotes/model/doc.py”, line 105,
in _loadfromdb
raise Exception, ‘[WNF] %s %s does not exist’ % (self.doctype,
self.name)
Exception: [WNF] DocType Batch Settings does not exist

I queried the table DocType directly to see if Batch Settings exists
but I didn’t find any.

I sent also the Error report from the system (assuming that it will
reach you). It has a number of errors that blocks from loading some
pages which I am not sure how to solve.

On Jun 3, 6:44 am, Rushabh Mehta rm...@gmail.com wrote:

Samir,

Can you mail the last traceback from wnframework-modules/patches/
patch.log

Also you need to copy wnframework-modules/module-images.png to
wnframework/images/user - so that the module icons appear.

  • Rushabh

On Jun 2, 2011, at 10:24 PM, Samir wrote:

I was able to beyond that now. Now, the left Sidebar is showing. A lot
of things are functioning well. But I have few issues:

  1. I get the following error when I login:
    “DocType Batch Settings does not exist -------------- There were
    errors in running patches, please call the Administrator”
  1. Some important pages are cannot be loaded like:
  • like when I click “Administrator” Profile, I get the following
    error: “Page profile-settings does not exist”
  • like when I click “Manage Account”, I get the following error:
    “Did not load Manage Account”

I think I am missing one last piece.

Thanks

On Jun 2, 5:09 pm, Samir ma...@energytech.com.sa wrote:

Thanks again Rushabh.

I followed your instructions and I continuted with the INSTALL.txt
file found in the Framework Modules download. Things are working now
but I am getting an Administrator error message (pop up) when I get
the login page and another one at the Welcome page. After that I do
not get it any more but I do not have the left sidebar and some UI
links are not functional correctly like the profile link etc.

Any suggested fix?


You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.
To post to this group, send email to wn...@googlegroups.com.
To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.

Run: update tabSingles set value=0 where field="sync_with_gateway"..

Just check the exact column names, I am writing from memory, on my mobile!

On 3 Jun 2011 21:14, "Samir" <ma...@energytech.com.sa> wrote:

I will do that. But I have a small issue that I would like you help me

with.

I was playing with permissions and for some reason now when I go to

the Login page, it displays the page for few seconds and then, it

redirects to www.erpnext.com?


On Jun 3, 6:35 pm, Rushabh Mehta <rm...@gmail.com> wrote:
> Hi Samir,
>
> Sorry we are working on ...

> On Friday, June 3, 2011, Samir <ma...@energytech.com.sa> wrote:
> > Thank Nabin,
>
> > I though ...

--

You received this message because you are subscribed to the Google Groups "Web Notes Framework Forum...



You received this message because you are subscribed to the Google Groups “Web Notes Framework Forum” group.

To post to this group, send email to wn...@googlegroups.com.

To unsubscribe from this group, send email to wnframework+un...@googlegroups.com.

For more options, visit this group at http://groups.google.com/group/wnframework?hl=en.