Questions tagged [web-admin]

9 questions
5
votes
5 answers

Windows PowerShell Snap-In for IIS fails on 32-bit?

I'm trying to write a PowerShell script that will automate my IIS website deployments. I'm trying to run the scripts on my Windows Server 2008 R2 machine, under 32-bit in: C:\Windows\SysWOW64\WindowsPowerShell\v1.0\powershell.exe Whenever I run a…
urig
  • 16,016
  • 26
  • 115
  • 184
4
votes
1 answer

how to get openlitespeed webadmin password or reset litespeed admin panel password?

I installed openlitespeed by following step: wget --no-check-certificate https://raw.githubusercontent.com/litespeedtech/ols1clk/master/ols1clk.sh bash ols1clk.sh -w After this, I tried to login to http://myip:7080/login.php. And I tried admin…
harrrrrrry
  • 13,643
  • 2
  • 23
  • 28
1
vote
1 answer

Is there any Ruby web app/gem which offsers a web shell?

Is there any Ruby web app/ gem which allows you to administrate a computer ( I'm mostly interested in running shell commands ) through a web interface?
Geo
  • 93,257
  • 117
  • 344
  • 520
1
vote
1 answer

Web interface neo4j embedded remote not working

I am running Neo4j in embedded mode on a remote Linux server... everything works well except the ability to connect to the web interface /host:7474/webadmin/ Using Neo4j 1.8.2 Major Stable Version Relevant POM artifacts:
assaf_miz84
  • 687
  • 2
  • 15
  • 33
0
votes
0 answers

Apache2 - How to disable directory listing on a Virtual Host?

I'm running an Apache2.4 webserver on Ubuntu 18.04, and I'd like to disable directory listing on one of the virtual hosts. I realize that I can do this with a .htaccess file, but I'd much prefer to do so in the virtual host config. I edited…
geofurb
  • 489
  • 4
  • 13
0
votes
0 answers

What could happen if I install all server roles on Windows Azure Pack: Web Sites on one machine?

At work, I'm in the process of installing Windows Azure Pack: Web Sites in a VMWare ESXi lab environment. I have little available RAM and hard drive space on the ESXi. I originally thought I would be able to do this without spending too much…
0
votes
1 answer

Neo4j webadmin shows shows Labels, Relationships on Left side but does not list Nodes

I am using Neo4j 2.1.2 community edition. When I point neo4j to the database I created and login to webadmin, it shows the relationship type and and Labels I created in my code but when i try to fetch the nodes and relationship it does not list any…
Bagira
  • 2,149
  • 4
  • 26
  • 55
0
votes
2 answers

Edit or Create Graph Style Sheets for WebAdmin

I have updated to neo4j 2.0 and I am currently becoming desperate trying to edit the web admin stylesheets for my graph. There was a comfortable styles editor in the old version, I can not find in the new one. There is a message displayed, which is…
user3245029
  • 11
  • 1
  • 2
0
votes
2 answers

In Neo4J Web Admin - how do I provide arguments to a parameterized query?

Say I want to parameterize this simple query: match (u) where u.username={uname} return u (How) can I provide parameters when executing it in Neo4J web admin?