Only A few desktop icons

Hi,

I am new in ErpNext. Firstly I want to thank all community for this great app.

Yesterday I install erpnext at digitalocean droplet ubuntu 14.04 . I was use below codes to install

wget https://raw.githubusercontent.com/frappe/bench/master/install_scripts/setup_frappe.sh
sudo bash setup_frappe.sh --setup-production

When I login to system I face with only 2-3 desktop icons.

Then I search on the forum. As described some posts I went to setup page and tried “show/hide modules” option. There was no unchecked modules there.

Then I tried to reinstall site

bench --site erp.mysite.com reinstall
bench install-app erpnext

Without success. I need your help to fix this issue. I guess I am missing something.

By the way erpnext site configured as subdomain in nginx config.

Regards.

Sadik.

Check if you have frappe-bench/apps/erpnext directory
if its not there under apps then it means somehow ERPNext repository was not properly configured and downloaded onto your server.
You may manually remove erpnext from apps or using bench by uninstalling it from site and directory etc. (refer bench --help)
Now, you can initialize github repo using bench and get erpnext app.
Once you have ERPNext app downloaded onto server then you can install it on existing or new site using bench.

1 Like

Thank you very much. I did what you said and now it is working good. I’ ll add what I exactly did below for future referance.

Firstly I moved frappe-bench/apps/erpnext directory to /root directory then,

bench get-app erpnext https://github.com/frappe/erpnext
bench --site erp.mysite.com reinstall
bench --site erp.mysite.com install-app erpnext

After that my erpnext app fixed. Lastly I removed /root/erpnext directory.
1 Like