After i login page no pages to display

Hi,

when i try to install new fresh  version using this link

Fresh Installation

u find this output:


x@x-Lap:/var/www/erp$ sudo python install_erpnext.py
MySQL Root user's Password:
New ERPNext Database Name: erp
New ERPNext Database's Password: admin
Cloning into 'lib'...

Cloning into 'app'...

gzip: /var/www/erp/app/master.sql.gz: No such file or directory

Created user erp
Created database erp
Granted privileges to user erp and database erp
Starting database import...
Imported from database /var/www/erp/app/master.sql
lib/webnotes/db.py:124: Warning: Unknown table '__Auth'
  self._cursor.execute(query)
Traceback (most recent call last):
  File "./lib/wnf.py", line 490, in <module>
    run()
  File "./lib/wnf.py", line 285, in run
    build.bundle(False, cms_make)
  File "/var/www/erp/lib/webnotes/build.py", line 37, in bundle
    check_lang()
  File "/var/www/erp/lib/webnotes/build.py", line 69, in check_lang
    update_translations()
  File "/var/www/erp/lib/webnotes/translate.py", line 88, in update_translations
    build_message_files()
  File "/var/www/erp/lib/webnotes/translate.py", line 109, in build_message_files
    build_from_database()
  File "/var/www/erp/lib/webnotes/translate.py", line 146, in build_from_database
    "custom": get_select_options
  File "/var/www/erp/lib/webnotes/translate.py", line 150, in build_for_doc_from_database
    for item in webnotes.conn.sql("""select name from `tab%s`""" % fields.doctype, as_dict=1):
  File "/var/www/erp/lib/webnotes/db.py", line 130, in sql
    raise e
_mysql_exceptions.ProgrammingError: (1146, "Table 'erp.tabDocType' doesn't exist")

Setting up lang files for fr...
Extracting / updating translatable strings...

Traceback (most recent call last):
  File "./lib/wnf.py", line 490, in <module>
    run()
  File "./lib/wnf.py", line 418, in run
    patch_sync_build()
  File "./lib/wnf.py", line 81, in patch_sync_build
    patch_sync()
  File "./lib/wnf.py", line 85, in patch_sync
    apply_latest_patches()
  File "./lib/wnf.py", line 68, in apply_latest_patches
    webnotes.modules.patch_handler.run_all()
  File "/var/www/erp/lib/webnotes/modules/patch_handler.py", line 41, in run_all
    executed = [p[0] for p in webnotes.conn.sql("""select patch from `tabPatch Log`""")]
  File "/var/www/erp/lib/webnotes/db.py", line 130, in sql
    raise e
_mysql_exceptions.ProgrammingError: (1146, "Table 'erp.tabPatch Log' doesn't exist")


    Notes:
    ------

    sample apache conf file
    #-----------------------------------------------------------
    SetEnv PYTHON_EGG_CACHE /var/www

    # you can change 99 to any other port

    Listen 99
    NameVirtualHost *:99
    <VirtualHost *:99>
        ServerName localhost
        DocumentRoot {path to erpnext's folder}/public
        AddHandler cgi-script .cgi .xml .py

        <Directory {path to erpnext's folder}/public/>
            # directory specific options
            Options -Indexes +FollowSymLinks +ExecCGI

            # directory's index file
            DirectoryIndex web.py

            # rewrite rule
            RewriteEngine on

            # condition 1:
            # ignore login-page.html, app.html, blank.html, unsupported.html
            RewriteCond %{REQUEST_URI} ^((?!app\.html|blank\.html|unsupported\.html).)*$

            # condition 2: if there are no slashes
            # and file is .html or does not containt a .
            RewriteCond %{REQUEST_URI} ^(?!.+/)((.+\.html)|([^.]+))$

            # rewrite if both of the above conditions are true
            RewriteRule ^(.+)$ web.py?page=$1 [NC,L]

            AllowOverride all
            Order Allow,Deny
            Allow from all
        </Directory>
    </VirtualHost>
    #-----------------------------------------------------------

    To Do:

    * Configure apache/http conf file to point to public folder
    * chown recursively all files in your folder to apache user
    * login using: user="Administrator" and password="admin"

   
x@x-Lap:/var/www/erp$

so i start to creat the database manually using this command "lib/wnf.py --install_fresh erp" and then back to use rest of steps normally from step 8

and it run the server but the out put become this page in the picture  after login


thanks in advance



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.

     

     
Those were old instructions. I've removed them. Use the installer: https://github.com/webnotes/erpnext/wiki/How-to-Install-ERPNext

Thanks,
Anand.

On 24-Jul-2013, at 4:31 PM, mh...@vieracom.com wrote:

Hi,

when i try to install new fresh  version using this link

Fresh Installation

u find this output:


x@x-Lap:/var/www/erp$ sudo python install_erpnext.py
MySQL Root user's Password:
New ERPNext Database Name: erp
New ERPNext Database's Password: admin
Cloning into 'lib'...

Cloning into 'app'...

gzip: /var/www/erp/app/master.sql.gz: No such file or directory

Created user erp
Created database erp
Granted privileges to user erp and database erp
Starting database import...
Imported from database /var/www/erp/app/master.sql
lib/webnotes/db.py:124: Warning: Unknown table '__Auth'
  self._cursor.execute(query)
Traceback (most recent call last):
  File "./lib/wnf.py", line 490, in <module>
    run()
  File "./lib/wnf.py", line 285, in run
    build.bundle(False, cms_make)
  File "/var/www/erp/lib/webnotes/build.py", line 37, in bundle
    check_lang()
  File "/var/www/erp/lib/webnotes/build.py", line 69, in check_lang
    update_translations()
  File "/var/www/erp/lib/webnotes/translate.py", line 88, in update_translations
    build_message_files()
  File "/var/www/erp/lib/webnotes/translate.py", line 109, in build_message_files
    build_from_database()
  File "/var/www/erp/lib/webnotes/translate.py", line 146, in build_from_database
    "custom": get_select_options
  File "/var/www/erp/lib/webnotes/translate.py", line 150, in build_for_doc_from_database
    for item in webnotes.conn.sql("""select name from `tab%s`""" % fields.doctype, as_dict=1):
  File "/var/www/erp/lib/webnotes/db.py", line 130, in sql
    raise e
_mysql_exceptions.ProgrammingError: (1146, "Table 'erp.tabDocType' doesn't exist")

Setting up lang files for fr...
Extracting / updating translatable strings...

Traceback (most recent call last):
  File "./lib/wnf.py", line 490, in <module>
    run()
  File "./lib/wnf.py", line 418, in run
    patch_sync_build()
  File "./lib/wnf.py", line 81, in patch_sync_build
    patch_sync()
  File "./lib/wnf.py", line 85, in patch_sync
    apply_latest_patches()
  File "./lib/wnf.py", line 68, in apply_latest_patches
    webnotes.modules.patch_handler.run_all()
  File "/var/www/erp/lib/webnotes/modules/patch_handler.py", line 41, in run_all
    executed = [p[0] for p in webnotes.conn.sql("""select patch from `tabPatch Log`""")]
  File "/var/www/erp/lib/webnotes/db.py", line 130, in sql
    raise e
_mysql_exceptions.ProgrammingError: (1146, "Table 'erp.tabPatch Log' doesn't exist")


    Notes:
    ------

    sample apache conf file
    #-----------------------------------------------------------
    SetEnv PYTHON_EGG_CACHE /var/www

    # you can change 99 to any other port

    Listen 99
    NameVirtualHost *:99
    <VirtualHost *:99>
        ServerName localhost
        DocumentRoot {path to erpnext's folder}/public
        AddHandler cgi-script .cgi .xml .py

        <Directory {path to erpnext's folder}/public/>
            # directory specific options
            Options -Indexes +FollowSymLinks +ExecCGI

            # directory's index file
            DirectoryIndex web.py

            # rewrite rule
            RewriteEngine on

            # condition 1:
            # ignore login-page.html, app.html, blank.html, unsupported.html
            RewriteCond %{REQUEST_URI} ^((?!app\.html|blank\.html|unsupported\.html).)*$

            # condition 2: if there are no slashes
            # and file is .html or does not containt a .
            RewriteCond %{REQUEST_URI} ^(?!.+/)((.+\.html)|([^.]+))$

            # rewrite if both of the above conditions are true
            RewriteRule ^(.+)$ web.py?page=$1 [NC,L]

            AllowOverride all
            Order Allow,Deny
            Allow from all
        </Directory>
    </VirtualHost>
    #-----------------------------------------------------------

    To Do:

    * Configure apache/http conf file to point to public folder
    * chown recursively all files in your folder to apache user
    * login using: user="Administrator" and password="admin"

   
x@x-Lap:/var/www/erp$

so i start to creat the database manually using this command "lib/wnf.py --install_fresh erp" and then back to use rest of steps normally from step 8

and it run the server but the out put become this page in the picture  after login


thanks in advance



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 Wednesday, July 24, 2013 1:15:49 PM UTC+2, Anand Doshi wrote:

Those were old instructions. I’ve removed them. Use the installer: https://github.com/webnotes/erpnext/wiki/How-to-Install-ERPNext

Thanks,
Anand.

On 24-Jul-2013, at 4:31 PM, mh…@vieracom.com wrote:

Hi,

when i try to install new fresh  version using this link

Fresh Installation

u find this output:


x@x-Lap:/var/www/erp$ sudo python install_erpnext.py
MySQL Root user’s Password:
New ERPNext Database Name: erp
New ERPNext Database’s Password: admin
Cloning into ‘lib’…

Cloning into ‘app’…

gzip: /var/www/erp/app/master.sql.gz: No such file or directory

Created user erp
Created database erp
Granted privileges to user erp and database erp
Starting database import…
Imported from database /var/www/erp/app/master.sql
lib/webnotes/db.py:124: Warning: Unknown table ‘__Auth’
  self._cursor.execute(query)
Traceback (most recent call last):
  File “./lib/wnf.py”, line 490, in <module>
    run()
  File “./lib/wnf.py”, line 285, in run
    build.bundle(False, cms_make)
  File “/var/www/erp/lib/webnotes/build.py”, line 37, in bundle
    check_lang()
  File “/var/www/erp/lib/webnotes/build.py”, line 69, in check_lang
    update_translations()
  File “/var/www/erp/lib/webnotes/translate.py”, line 88, in update_translations
    build_message_files()
  File “/var/www/erp/lib/webnotes/translate.py”, line 109, in build_message_files
    build_from_database()
  File “/var/www/erp/lib/webnotes/translate.py”, line 146, in build_from_database
    “custom”: get_select_options
  File “/var/www/erp/lib/webnotes/translate.py”, line 150, in build_for_doc_from_database
    for item in webnotes.conn.sql(“”“select name from tab%s”“” % fields.doctype, as_dict=1):
  File “/var/www/erp/lib/webnotes/db.py”, line 130, in sql
    raise e
mysql_exceptions.ProgrammingError: (1146, “Table ‘erp.tabDocType’ doesn’t exist”)

Setting up lang files for fr…
Extracting / updating translatable strings…

Traceback (most recent call last):
  File “./lib/wnf.py”, line 490, in <module>
    run()
  File “./lib/wnf.py”, line 418, in run
    patch_sync_build()
  File “./lib/wnf.py”, line 81, in patch_sync_build
    patch_sync()
  File “./lib/wnf.py”, line 85, in patch_sync
    apply_latest_patches()
  File “./lib/wnf.py”, line 68, in apply_latest_patches
    webnotes.modules.patch
handler.run_all()
  File “/var/www/erp/lib/webnotes/modules/patch_handler.py”, line 41, in run_all
    executed = [p[0] for p in webnotes.conn.sql(“”“select patch from tabPatch Log”“”)]
  File “/var/www/erp/lib/webnotes/db.py”, line 130, in sql
    raise e
_mysql_exceptions.ProgrammingError: (1146, “Table ‘erp.tabPatch Log’ doesn’t exist”)


    Notes:
    ------

    sample apache conf file
    #-----------------------------------------------------------
    SetEnv PYTHON_EGG_CACHE /var/www

    # you can change 99 to any other port

    Listen 99
    NameVirtualHost *:99
    <VirtualHost :99>
        ServerName localhost
        DocumentRoot {path to erpnext’s folder}/public
        AddHandler cgi-script .cgi .xml .py

        <Directory {path to erpnext’s folder}/public/>
            # directory specific options
            Options -Indexes +FollowSymLinks +ExecCGI

            # directory’s index file
            DirectoryIndex web.py

            # rewrite rule
            RewriteEngine on

            # condition 1:
            # ignore login-page.html, app.html, blank.html, unsupported.html
            RewriteCond %{REQUEST_URI} ^((?!app.html|blank.html|unsupported.html).)
$

            # condition 2: if there are no slashes
            # and file is .html or does not containt a .
            RewriteCond %{REQUEST_URI} ^(?!.+/)((.+.html)|([^.]+))$

            # rewrite if both of the above conditions are true
            RewriteRule ^(.+)$ web.py?page=$1 [NC,L]

            AllowOverride all
            Order Allow,Deny
            Allow from all
        </Directory>
    </VirtualHost>
    #-----------------------------------------------------------

    To Do:

    * Configure apache/http conf file to point to public folder
    * chown recursively all files in your folder to apache user
    * login using: user=“Administrator” and password=“admin”

   
x@x-Lap:/var/www/erp$

so i start to creat the database manually using this command “lib/wnf.py --install_fresh erp” and then back to use rest of steps normally from step 8

and it run the server but the out put become this page in the picture  after login


thanks in advance



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.

     

     
thanks i 'll try it now and see



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.

     

     

thanks it works please if the old method is deprectaed mark it as depracated … i lost alot of time follow it with no results

thank you very match



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.