ERPNext-Production_v14.8.0 ova download link

@topus

There is another solution for this.
1:- Go > frape-bench directory.

bench backup

2:- After create backup of database you do reset ERPNext.

bench --site frappe.com reinstall --force

3:- Now, you can restore backup of database.

bench restore [path_of_backup] --force

After complete above steps you should restart system.

Note:- If you face Permission [error no13] then do like as below.

chmod -R o+rx /home/frappe
sudo nano /etc/supervisor/supervisord.conf

Add extra these lines under [unix_http_server]

chmod=0755
chmod=0760
chown=frappe:frappe

Save & exit

Reboot system after restart supervisor services

sudo service supervisor restart
sudo reboot 
1 Like

hi how to adding storage space in VM machine ? and this erpnext system can install indirectadmin?

@jouvylee
1st:- If you want extend disk space then follow below post.

https://discuss.frappe.io/t/erpnext-production-v14-8-0-ova-download-link/96926/48?u=hafiz4saqib

2nd:- You can’t use without admin user.
Create new user with privileges settings after Admin Account

need poweroff erpnext ?
i cannot change space


how to fix this why only two domain where here?
can you please update the latest patch with complete domain in it?

@ARK_143

1:- You should do these settings

chmod -R o+rx /home/frappe
sudo nano /etc/supervisor/supervisord.conf

Add extra these lines under [unix_http_server]

chmod=0755
chmod=0760
chown=frappe:frappe

Save & exit

Reboot system after restart supervisor services

sudo service supervisor restart
sudo reboot 

2:- Go to in frappe-bench directory.

source env/bin/activate
bench update --reset
deactivate

and reboot system

Now, you have latest ERPNext.

hi i already install this erpnext but storage only 15gb ?how to add more storage?

@jouvylee
1st power off VirtualBox.
Then follow these instructions to extend size of disk.

ok i got it ,thx u very much
and how to backup data and how to reinstall backup data?

Hello. after I run the VM it stuck like this;

any help please?

this is the error I have encounter

@ARK_143
Check your internet connactivity with VirtualBox

@hafiz4saqib hello i installed your ova but i can not see the option to open POS


Can you please help me on it

Hey can you help me with the ova file of latest version as i am not avle to install pos awesome on this because it requires 14.27 version would be greatful thankyou

@Singhstyle

You should follow this post.

ERPNext-Production_v14.8.0 ova download link - #83 by hafiz4saqib

do you know what is the latest production or erpnext release? I can’t find anywhere where is the latest production release. This link only shows the latest release, it could be dev and not production… Releases · frappe/erpnext · GitHub

@l4cky
Dont worry about Dev/Pro, just follow this post and in the end you should have latest version of ERPNext.

ERPNext-Production_v14.8.0 ova download link - #83 by hafiz4saqib

How to resolve the issue after update.

2:- Go to in frappe-bench directory.

source env/bin/activate
bench update --reset
deactivate

and reboot system

Now, you have latest ERPNext.

after that

Traceback (most recent call last):
  File "apps/frappe/frappe/www/app.py", line 28, in get_context
    boot = frappe.sessions.get()
  File "apps/frappe/frappe/sessions.py", line 166, in get
    bootinfo = get_bootinfo()
  File "apps/frappe/frappe/boot.py", line 38, in get_bootinfo
    get_user(bootinfo)
  File "apps/frappe/frappe/boot.py", line 279, in get_user
    bootinfo.user = frappe.get_user().load_user()
  File "apps/frappe/frappe/utils/user.py", line 210, in load_user
    d = frappe.db.get_value(
  File "apps/frappe/frappe/database/database.py", line 510, in get_value
    result = self.get_values(
  File "apps/frappe/frappe/database/database.py", line 607, in get_values
    out = self._get_values_from_table(
  File "apps/frappe/frappe/database/database.py", line 837, in _get_values_from_table
    return query.run(as_dict=as_dict, debug=debug, update=update, run=run, pluck=pluck)
  File "apps/frappe/frappe/query_builder/utils.py", line 76, in execute_query
    return frappe.db.sql(query, params, *args, **kwargs)  # nosemgrep
  File "apps/frappe/frappe/database/database.py", line 221, in sql
    self._cursor.execute(query, values)
  File "env/lib/python3.10/site-packages/pymysql/cursors.py", line 158, in execute
    result = self._query(query)
  File "env/lib/python3.10/site-packages/pymysql/cursors.py", line 325, in _query
    conn.query(q)
  File "env/lib/python3.10/site-packages/pymysql/connections.py", line 549, in query
    self._affected_rows = self._read_query_result(unbuffered=unbuffered)
  File "env/lib/python3.10/site-packages/pymysql/connections.py", line 779, in _read_query_result
    result.read()
  File "env/lib/python3.10/site-packages/pymysql/connections.py", line 1157, in read
    first_packet = self.connection._read_packet()
  File "env/lib/python3.10/site-packages/pymysql/connections.py", line 729, in _read_packet
    packet.raise_for_error()
  File "env/lib/python3.10/site-packages/pymysql/protocol.py", line 221, in raise_for_error
    err.raise_mysql_exception(self._data)
  File "env/lib/python3.10/site-packages/pymysql/err.py", line 143, in raise_mysql_exception
    raise errorclass(errno, errval)
pymysql.err.OperationalError: (1054, "Unknown column 'onboarding_status' in 'field list'")

The above exception was the direct cause of the following exception:

Traceback (most recent call last):
  File "apps/frappe/frappe/website/serve.py", line 18, in get_response
    response = renderer_instance.render()
  File "apps/frappe/frappe/website/page_renderers/template_page.py", line 84, in render
    html = self.get_html()
  File "apps/frappe/frappe/website/utils.py", line 510, in cache_html_decorator
    html = func(*args, **kwargs)
  File "apps/frappe/frappe/website/page_renderers/template_page.py", line 95, in get_html
    self.update_context()
  File "apps/frappe/frappe/website/page_renderers/template_page.py", line 163, in update_context
    data = self.run_pymodule_method("get_context")
  File "apps/frappe/frappe/website/page_renderers/template_page.py", line 225, in run_pymodule_method
    return method(self.context)
  File "apps/frappe/frappe/www/app.py", line 30, in get_context
    raise frappe.SessionBootFailed from e
frappe.exceptions.SessionBootFailed

i Can’t Find Shopify in marketplace integrations … how can i integrate with shopify ?

hi @hafiz4saqib , thanks a lot for the OVA, i have install erpnext from various method and not working, and with this ova is super simple to get up running.
Another question, whats the fastest and simplest method to use this running on VPS. i currently using this on my computer locally, my team access this with tailscale vpn.
im not linux guy, so any error and complex syntax easily takes hours for me to solved.
Thanks before. :grin: