Manage App button has disappeared

The Manage App button has disappeared from my app even though I am signed in. My app is throwing an error suddenly after having run without issues for several months but I am not able to access the logs in order to investigate the error as the Manage App button has disappeared.

Instead of the Manage App button, the following button with the Streamlit logo appears at the bottom right which redirects to Streamlit Cloud

streamlit-button

I have tried rebooting the app to no avail.

The app with the issue is deployed from a dev branch. I can see the Manage App button in another app which is deployed from a main branch. My issue seems to be similar to the one described here, where it was found that the Manage App button was present in an app deployed from the main branch but not in an app deployed from a different branch. The post doesn’t have any solution however.

Can you make sure that you are logged in with the same Google account and Github account that you deployed the app with? That is generally what determines whether the Manage App button shows up.

If that doesn’t work, can you share the url of the app in question, and the url of the one that does work?

I have a similar problem, my app used to work fine (and it stil does local), but since last week it gives a valueError (on and I have no manage app button. I think it must have something to do with an update in streamlit? Local I use version 1.20.0.

The webversion error:
ValueError: This app has encountered an error. The original error message is redacted to prevent data leaks. Full error details have been recorded in the logs.
Traceback:
File “/home/appuser/venv/lib/python3.9/site-packages/streamlit/script_runner.py”, line 354, in _run_script
exec(code, module.dict)
File “/app/tte_webapp/TTEWEBapp.py”, line 72, in
app.run()
File “/app/tte_webapp/multipage.py”, line 41, in run
page’function’
File “/app/tte_webapp/pages/TTE_Planning_Output.py”, line 174, in app
df_capaciteit_c = df_capaciteit_c.astype(float).fillna(0)
File “/home/appuser/venv/lib/python3.9/site-packages/pandas/core/generic.py”, line 6324, in astype
new_data = self._mgr.astype(dtype=dtype, copy=copy, errors=errors)
File “/home/appuser/venv/lib/python3.9/site-packages/pandas/core/internals/managers.py”, line 451, in astype
return self.apply(
File “/home/appuser/venv/lib/python3.9/site-packages/pandas/core/internals/managers.py”, line 352, in apply
applied = getattr(b, f)(**kwargs)
File “/home/appuser/venv/lib/python3.9/site-packages/pandas/core/internals/blocks.py”, line 511, in astype
new_values = astype_array_safe(values, dtype, copy=copy, errors=errors)
File “/home/appuser/venv/lib/python3.9/site-packages/pandas/core/dtypes/astype.py”, line 242, in astype_array_safe
new_values = astype_array(values, dtype, copy=copy)
File “/home/appuser/venv/lib/python3.9/site-packages/pandas/core/dtypes/astype.py”, line 187, in astype_array
values = _astype_nansafe(values, dtype, copy=copy)
File “/home/appuser/venv/lib/python3.9/site-packages/pandas/core/dtypes/astype.py”, line 138, in _astype_nansafe
return arr.astype(dtype, copy=True)

@blackary I was logged in with the same account used for deploying the app.
The Manage App button has reappeared again. I did not do anything so it is rather unsatisfactory as a solution.

Same problem with me…

I’ve sign in my account used for deploying the app.

Then, I open the app from my account apps : https://share.streamlit.io/

However, the ‘manage app’ still not found, how can I see the error logs?

@blackary I am also facing the same issue, I am not able to access the app manage section, it just disappeared!

Can you make sure that you are logged in with the same Google account and Github account that you deployed the app with? That is generally what determines whether the Manage App button shows up.

If that doesn’t work, can you share the url of the app in question?

1 Like

Same issue for me. The app was working fine and i didnt change anything. When i tried running it today it suddenly says FileNotFound Error and i can’t even see the Logs since the manage App button is not showing up although im logged in and started the app from there. URL is https://emascreener.streamlit.app/

edit: i fixed the above by deleting all cookies and relogging. Now i get an error that didnt show up before.
FileNotFoundError: [Errno 2] No such file or directory: ‘/home/appuser/.cache/py-yfinance’. Its running fine locally.

Anyone know how to fix this? The app was running fine before and i did not change anything

edit 2: it seems to have been an issue with yfinance. latest version needs a cache folder to store the downloaded data. downgrading to yfinance==0.2.28 in requirements.txt fixed it

1 Like

See Fix for yfinance > 0.2.28 on Community Cloud -- /home/appuser/.cache/py-finance FileNotFound for more details about ways to solve the yfinance issue

My solution:

1- Close all your streamlit tabs
2- Delete your browser cookies
3- Re login in streamlit
4- Restart your app
5- Open your app

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.