(10-11-2019, 07:20 PM)remkonoteboom Wrote: You should get a final line saying:
Starting TACTIC v4.7.0.a11 ...
For some reason, if your run startup.py, it gives more information:
[03/Oct/2019:21:53:14] ENGINE Bus STARTING
[03/Oct/2019:21:53:14] ENGINE Serving on http://127.0.0.1:8081
[03/Oct/2019:21:53:14] ENGINE Bus STARTED
What does it say when you run startup.py. My guess is that TACTIC is not able to secure whatever port you have it set to in your tactic config file ($TACTIC_DATA_DIR/config/tactic-conf.xml) and it is waiting for that port to free up.
your guess was right, after using fuser to identify the rouge process using the port 8081 and kill it I'm able to start the app,
now im trying to fix some plugins that appear as 404 and broken icons that appear on the page.
Code:
('WARNING: ', AttributeError("'Index' object has no attribute 'plugins'",))
WARNING:
(' status: ', '404 Not Found')
(' message: ', "The path '/tactic/plugins/pdfjs/web/viewer.js' was not found.")
(' site: ', '')
(' project_code: ', 'plugins')
('WARNING: ', AttributeError("'Index' object has no attribute 'plugins'",))
WARNING:
(' status: ', '404 Not Found')
(' message: ', "The path '/tactic/plugins/pdfjs/build/pdf.js' was not found.")
(' site: ', '')
(' project_code: ', 'plugins')
('WARNING: ', AttributeError("'Index' object has no attribute 'plugins'",))
WARNING:
(' status: ', '404 Not Found')
(' message: ', "The path '/tactic/plugins/pdfjs/build/pdf.js' was not found.")
(' site: ', '')
(' project_code: ', 'plugins')
('WARNING: ', AttributeError("'Index' object has no attribute 'plugins'",))
WARNING:
(' status: ', '404 Not Found')
(' message: ', "The path '/tactic/plugins/pdfjs/web/viewer.js' was not found.")
(' site: ', '')
(' project_code: ', 'plugins')