Unable to see default apps after login

Hi Team ,
I have done the setup for erpnext production and i started weblogin and completed .but after login I am unable to see apps its like strcuk
Unable to see default apps after login

Please check console logs which will help you to get some idea about the issue.

How can extract console log ? Through terminal ? I am not getting any error log on ERPNext web console

You can also check your UI console logs, press Ctrl+Shift+J to see the console logs.

Thank you for your reply will check and let you know

Hi @Sathams_Tech_TV,

if you have just recently performed a fresh install on this server, it might be this issue: Update error: Cannot babelify - Unknown plugin "transform-object-rest-spread"

Check whether bench build works properly (and as mentioned before, check your browser console, also available on F12 in Firefox/Chrome). If it contains “… is not a function”, it might be the above. If it is, install dependecies as described, then run bench build and bench restart. Hope this helps.

1 Like

Hello,
I have the same problem here.
This is what i got on console log:
Uncaught SyntaxError: Unexpected token { desk:46

and on sources:

Frappe Desk
<!-- hack! load background image asap, before desktop is rendered -->


<script type="text/javascript" src="/assets/frappe/js/lib/jquery/jquery.min.js"></script>

<script type="text/javascript">
window._version_number = "{{ build_version }}";
// browser support
window.app = true;
window.dev_server = 1;

if(!window.frappe) window.frappe = {};

frappe.boot = {{ boot }};

frappe.csrf_token = "{{ csrf_token }}";

</script>

Thank you its working now and I could start the erpnext dashboard and used bench build command and working without error.But I couldn’t update since its showing these error after i bench update

error: Your local changes to the following files would be overwritten by merge:
bench/config/templates/Procfile
Please, commit your changes or stash them before you can merge.
Aborting
Traceback (most recent call last):
File “/usr/local/bin/bench”, line 11, in
load_entry_point(‘bench’, ‘console_scripts’, ‘bench’)()
File “/home/frappe/.bench/bench/cli.py”, line 40, in cli
bench_command()
File “/usr/local/lib/python2.7/dist-packages/click/core.py”, line 722, in call
return self.main(*args, **kwargs)
File “/usr/local/lib/python2.7/dist-packages/click/core.py”, line 697, in main
rv = self.invoke(ctx)
File “/usr/local/lib/python2.7/dist-packages/click/core.py”, line 1066, in invoke
return _process_result(sub_ctx.command.invoke(sub_ctx))
File “/usr/local/lib/python2.7/dist-packages/click/core.py”, line 895, in invoke
return ctx.invoke(self.callback, **ctx.params)
File “/usr/local/lib/python2.7/dist-packages/click/core.py”, line 535, in invoke
return callback(*args, **kwargs)
File “/home/frappe/.bench/bench/commands/update.py”, line 34, in update
update_bench()
File “/home/frappe/.bench/bench/utils.py”, line 272, in update_bench
exec_cmd(“git pull”, cwd=cwd)
File “/home/frappe/.bench/bench/utils.py”, line 142, in exec_cmd
raise CommandFailedError(cmd)
bench.utils.CommandFailedError: git pull

https://discuss.frappe.io/t/bench-update-error-bench-utils-commandfailederror-git-pull/34061/5
Please refer the above link to resolve your issue.

Hi @Sathams_Tech_TV,

you have local changes. Either commit, stash or reset them. Or, if you are sure that you have not made any changes, try

$ bench update --reset

Thank you …Its works.But after update I have checked my erpnext app updates are not made .

[[Fix] Sales Person-wise Transaction Summary report by shreyashah115 · Pull Request #12992 · frappe/erpnext · GitHub]

I was looking for this above updates in my erpnext app and it still the same

Given pull request is merged in hotfix branch. Not yet available on develop and master branch.

Thank you for ur reply …will it be available or how can I fix this issue …Please help me