SQL2
All nodes with a specific name
SELECT * FROM [nt:unstructured] AS node
WHERE ISDESCENDANTNODE(node, "/search/in/path")
AND NAME() = "nodeName"
All pages below content path
SQL2
All nodes with a specific name
SELECT * FROM [nt:unstructured] AS node
WHERE ISDESCENDANTNODE(node, "/search/in/path")
AND NAME() = "nodeName"
All pages below content path
#!/bin/bash | |
# You should place this script in user's home bin dir like : | |
# /home/redmine/bin/server_puma.sh | |
# | |
# Normally the user's bin directory should be in the PATH. | |
# If not, add this in /home/redmine/.profile : | |
# | |
# ------------------>8 | |
# #set PATH so it includes user's private bin if it exists |