-
Published Answer
I had to change the below line -
ssh -L 5901:127.0.0.1:5901 -N -f -l username serveripaddress
It didn’t work for me but
ssh…
•
By
Elizine
-
Published Answer
Here’s an example of nginx config to reverse proxy a node-red server (websocket support)
server {
listen 80;
server...
•
By
Elizine
-
Published Answer
To modify the permissions for a specific directory so that you can write to it, set read/write permissions with the command below
…
•
By
Elizine
-
Published Answer
You are getting this error 35012 due to a corrupted object, such as a form, in your database.
To resolve this error message, follo…
•
By
Elizine
-
Published Answer
Please follow the steps below -
Try reloading the webpage with F5.
Restart all your network devices.
If you are using …
•
By
Elizine
-
Published Answer
Error 400 forbidden is often caused by pasting the wrong URL in the address window but there are some other relatively common cause…
•
By
Elizine
-
Published Answer
Apply a “shebang” line, something like
#!/usr/bin/env python
as the first line. Also, make sure the script is execu…
•
By
Elizine
-
Published Answer
Set up the mass virtual with:
VirtualDocumentRoot /var/www/html/%0
But didn’t allow override for the parent directory…
Accepted Answer:
Set up the mass virtual with:
VirtualDocumentRoot /var/www/html/%0
But didn’t allow override for the parent directory…
•
By
Elizine
-
Published Answer
The nginx process is running as www-data, so, the root:www-data ownership would only work with group write permissions set. There i…
•
By
Elizine
-
Published Answer
Yes, you can connect OpenVPN between two servers.
Simply set up the config, generate the certs and start the processes. Don’t f…
•
By
Elizine
-
Published Answer
Some users have reported similar problems with 10.10.2
Looking true you attempts, I would suggest following additional steps.
…
•
By
Elizine
-
Published Answer
The correct result is as below -
location /other {
rewrite ^/other/(.*) /wp-includes/$1?sEyM_hide_my_wp=1234 break;
}
loc...
•
By
Elizine
-
Published Answer
Below is the code that you should place in your .htaccess file on the old site:
<IfModule mod_rewrite.c>
RewriteEngine On
...
•
By
Elizine
-
Published Answer
The true code is as below -
var checkboxValues = JSON.parse(localStorage.getItem('checkboxValues')) || {};
var $checkboxe...
•
By
Elizine
-
Published Answer
It is possible to turn your site into a multi site install and then use the Domain Mapping Plugin. This is the easy method, you jus…
•
By
Elizine
-
Published Answer
Please follow the instructions below -
How to run hubot?
Change your docker-compose.yml, where it says - “`ROCKETCHAT_URL=…
•
By
Elizine
-
Published Answer
It is quite simple -
Clone the repo
Replace the image files with your branding
Tweak manifest.json (‘name’, 'description’,…
•
By
Elizine
-
Published Answer
I would you to use and LDAP server on your website, that registers users in the LDAP DB. After that get RC connect to the same LDAP…
•
By
Elizine
-
Published Answer
The JSch library definitely makes this easy and supports port forwarding:
JSch jsch = new JSch();
Session session = jsch.g...
•
By
Elizine
-
Published Answer
Installing ipset package on Ubuntu 14.04 (Trusty Tahr) is as easy as running the following command on terminal:
sudo apt-ge...
•
By
Elizine