
Home
Download
User Info
New User FAQ
Tutorials
Demos
Commands
Variables
Troubleshooting
Code Examples
Sysop Info
Sysop FAQ
Theory
Installation
Management
Tests
Troubleshooting
FAQ
Feedback
Resources
Release Notes
Credits
Disclaimer
|
This document is designed to answer some questions that we frequently get
in our mailbox. New questions will be answered and added as time allows
with each release. There are very few code examples listed in this section.
If you would like to see some common code examples, you can look at the
NeoWebScript Common Code Examples page.
Questions1. How do I build and enable GD Dynamic Image Generation support for my
NeoWebScript Server?2. How do I build and enable Postgres support for my NeoWebScript Server? 3. How can I make a single header file appear at the top of all my documents? 4. How can I make a single footer file appear at the bottom of all my documents? 5. How do I use the mod_auth_tcl module to password protect a directory? 6. What options can I set using the NeoWebServerConf directive? 7. What options can I set using the NeoWebDirConf directive? 8. What is the NeoWebUserConf directive and what does it do? 9. Why don't some of the commands I read about in my TCL book work in NeoWebScript? 10. What is the difference between a regular NeoWebScript interpreter and a
Supervisor interpreter page? 11. Can NeoWebScript run together on a server with PHP? Q. How do I build and enable GD Dynamic Image Generation support for my
NeoWebScript Server?A. If you are installing NeoWebScript 3.2 or later, GD support is enabled in
the build by default. All you need to do is uncomment the two lines in your
httpd.conf file which read:
- AddType image/gif .gd
- AddHandler neo-generate-image .gd
If you are using an earlier version of NeoWebScript, or you are compiling
the mod_nescoript module by hand, you must include -DGDTCL in your command
line. Q. How do I build and enable Postgres support for my NeoWebScript Server?A. When you run the ./configure script for your NeoWebScript modules (in the
modules/ directory), you must specify the --enable-postgres option. This
will turn on Postgres support in mod_neoscript.c Q. How can I make a single header file appear at the top of all my documents?A. You can either add a directory-specific directive in your httpd.conf file
or create a .htaccess file in the HTML directory and add the following
directive:
NeoWebUserConf HeaderFile yourFileHere.nhtml
Once this is done, yourFileHere.nhtml will be output before every file in the
directory in the directory tree. This means that any file in a subdirectory
beneath the current directory will also include this file as a header.
WARNING: The document you are requesting must be parsed by the
NeoWebScript module, and the header must be parsed by the same parser. This
means that the file must be of a filetype in the line in your httpd.conf file
that read:
AddHandler neo-server-parsed .nhtml .nws ...
With the default settings, any file called .nhtml or .nws will be parsed by
the NeoWebScript module. So, if you wanted to include a file called header,
it would be named header.nhtml so that NeoWebScript can parse it.
This does not mean that the file needs to have NeoWebScript code in it. It
can be just a plain HTML file without any code and it will work just fine.
NOTE: The HeaderFile directive only works in NeoWebScript v3.3+ Q. How can I make a single footer file appear at the bottom of all my documents?A. You can either add a directory-specific directive in your httpd.conf file
or create a .htaccess file in the HTML directory and add the following
directive:
NeoWebUserConf FooterFile yourFileHere.nhtml
Once this is done, yourFileHere.nhtml will be output after every file in the
directory in the directory tree. This means that any file in a subdirectory
beneath the current directory will also include this file as a header.
WARNING: The document you are requesting must be parsed by the
NeoWebScript module, and the footer must be parsed by the same parser. This
means that the file must be of a filetype in the line in your httpd.conf file
that read:
AddHandler neo-server-parsed .nhtml .nws ...
With the default settings, any file called .nhtml or .nws will be parsed by
the NeoWebScript module. So, if you wanted to include a file called footer,
it would be named footer.nhtml so that NeoWebScript can parse it.
This does not mean that the file needs to have NeoWebScript code in it. It
can be just a plain HTML file without any code and it will work just fine.
NOTE: The FooterFile directive only works in NeoWebScript v3.3+ Q. How do I use the mod_auth_tcl module to password protect a directory?A. If you have built mod_auth_tcl with your NeoWebScript server, you can use
the following directives in a directory directive within your httpd.conf
file or within a .htaccess file.
TclAuthBasic tcl_db_auth [username] [db filename]
OR
TclAuthBasic tcl_passwd_auth
AND
TclAuthAccess tcl_passwd_access
require valid-user
DB function can be either of:
- tcl_db_auth - To search a db file for the username.
- tcl_passwd_auth - To search the /etc/passwd file for the username.
Username is only required for tcl_db_auth. It tells NeoWebScript which user
to look for the DB file under. So, if the db file was created with a page
owned by user foo, you would put foo as the username.
DB filename is the actual name of the .db file in the user's db directory.
NOTE: getpass must have been compiled and installed with your
NeoWebScript server in order for tcl_passwd_auth to work. Once getpass is
installed, you must make it SETUID root. Do this by going to where getpass
was installed and typing:
Q. What options can I set using the NeoWebServerConf directive?A.
| HavePostgres |
Tells NeoWebScript that you have Postgres enabled. |
| SendMail |
Tells NeoWebScript where your sendmail binary is for use with the
open_outbound_mail. |
| Du |
Tells NeoWebScript where your du binary is for use with the
directory_listing command |
| WebUnpack |
Tells NeoWebScript where your webunpack binary is installed for use with
MIME uploads. |
| UrlAccessCounter |
Tells NeoWebScript which db file to use when storing CGI-style
counters. |
| PostgresLib |
Tells NeoWebScript where your libpgtcl.so file is located. |
| PostgrePkg |
Tells NeoWebScript the name of the Postgres package to require. |
| PostgresHost |
Tells NeoWebScript the default host to connect to for contacting your
Postgres server. |
| PostgresPort |
Tells NeoWebScript the default port to connect to for your Postgres
server. |
Q. What options can I set using the NeoWebDirConf directive?A.
| Supervisor [0|1] |
Turns Supervisor mode on or off for the directory. 0 is off (default),
and 1 is on. |
| Postgres [Yes|Any] |
Tells NeoWebScript to turn on Postgres support for this directory.
Yes means the user has Postgres access but can only access tables
within their own username. Any means the user can access tables under
any username. |
| WebPageOwnerName [user] |
Tells NeoWebScript to make every file in the directory owned by user
instead of taking ownership from the file. |
| PostgresVersion [version] |
Tells NeoWebScript to load a particular version of Postgres. Good when you
have more than one version of the Postgres libraries, and you wish to load
a different one for each directory. |
| PostgresOptions [options] |
A string of options passed to the pg_option command after the Postgres
library has been loaded. |
Q. What is the NeoWebUserConf directive and what does it do?A. NeoWebUserConf is a NeoWebScript directive to Apache that sets a variable
in the NeoWebUserConf array in the safe interpreter. By setting up a
.htaccess file, you can set a variable that will get set everytime a
document within that directory is output. Example:
NeoWebUserConf turnOnOptions yes
Will set NeoWebUserConf(turnOnOptions) to yes.
NOTE: Any variable set through this method will be set in all
documents in the current directory and below. Q. Why don't some of the commands I read about in my TCL book work in NeoWebScript?A. Unless you are in a Supervisor directory, NeoWebScript creates for each page
what is called a Safe Interpreter. This means that certain commands which
have been considered harmful to the system or users have been disabled. If
you are running your own server and would like access to these commands, you
can give yourself a Supervisor directory, and you will have a full TCL
interpreter at your disposal. If you are on a system run by an administrator,
you will have to ask them to grant you a Supervisor directory to execute your
webpages. Q. What is the difference between a regular NeoWebScript interpreter and a
Supervisor interpreter page?A. When NeoWebScript creates an interpreter for a document, it creates what
is called a Safe interpreter. What this does is remove some commands
from the TCL interpreter that would be considered dangerous or harmful to
the system and the rest of the user base.
When a directory has been given Supervisor permissions, it is created
as a full TCL interpreter without any restrictions. This gives full access
to all the commands available in TCL. Most Supervisor commands are not
document through the NeoWebScript documentation, so you'll need to use TCL's
help files and man pages in order to learn more about the commands available
within a Supervisor interpreter. Q. Can NeoWebScript run together on a server with PHP?A. Yes. NeoWebScript and PHP can live harmoniously together on the same system.
Both are simply modules that install into a standard version of Apache. You
can either install Apache and then install each module seperately, or just
install the full NeoWebScript release with Apache included and then install
PHP's module into that server.
| User Contributed Notes | 04/20/18 02:37:58 | ylq Want oakley
sunglasses to jack
wolfskin be drunk burberry online
shop for north
face sad, burberry sale
Qing air max
95 song
nike.dk Mo houston rockets
broken longchamp
outlet heart. fidget spinner
This reebok
shoes chaos nike
outlet store of
tommy hilfiger online
shop the hollister
clothing store earth, ferragamo
shoes exactly christian
louboutin shoes how
salvatore ferragamo
much nike
outlet despair prada
sunglasses and sadness.
ray
bans You want ferragamo
outlet to do dsquared2
jeans a cheap michael
kors brave
montre pas cher
man, toms
outlet for stone
island store love, for
swarovski
the faith, vigorous struggle. timberland
boots You are ray ban
zonnebril full of
unparalleled burberry outlet
aura birkenstock taschen
outlet and
nfl lions light.
prada
outlet You have
burberry uk a mcm backpack outlet
great barbour mens jackets
man with
nike air max the
talent nike free
5.0 and converse
chucks reputation, hollister
co you
nike tn requin
are true religion
outlet so proud and nba jerseys
lonely toms
outlet man. milwaukee bucks
Your kevin durant
shoeskobe bryant shoes
inch ralph
lauren polo of mcm outlet
madness did
bottega not los angeles
clippers say, has coach factory outlet
online been
adidas sneakers
several times the omega
watches evening
rain.Once thought, utah jazz love
nfl
jaguars people
nike.se must
spend, only portland trail
blazers to suns jerseys
spend, emotional coach outlet
long-term. hogan shoes
outlet However, this
shore nfl
steelers and
cheap true religion
the uhren
other nike max
side is only a gap lacoste polos
between the space, but bos jersey
can not stretch nfl
vikings the
louboutin
distance of michael kors
canada the soul.Time
michael kors
flies, longchamp
handbags silent
the north face
years. nfl
panthers The
ed hardy clothing
day is not bcbg max
azria slow, such nfl
falcons as
nfl colts
trickling stream of quiet nike
huaraches flow, ray ban
sunglasses and
toms outlet from
the side philipp plein
clothes of
cheap oakley the
wholesale
handbags flow nfl
buccaneers of north face
outlet only time,
precipitation versace
outlet is
michael kors
accompanied by
burberry handbags
your happiness coach factory outlet
online and
ralph lauren
tracksuits happiness,
nike mercurial vapor
warm moncler outlet
online and rolex warm.
nfl texans In
nfl browns me,
in this skechers
dying scarpe
hogan feel the poetic
autumn, just want to
ray ban sbocco
do one thing, twist nfl
raiders a crimson marc jacobs
handbags maple
www.tommyhilfiger.nl
leaf, gently roshes engraved
my polo outlet
online heart
watches
language. tods mens
shoes On michael kors
purses the tory
burch sale faith, mcm
bags is my barbour women
jackets life dallas mavericks
jersey never change the
fendi outlet
online theme! ray ban
sunglasses Then, ray
ban happy to chicago bulls
send ralph
lauren to you nop jerseys
that
asics city. thomas
sabo From then on, lacoste
shirts in my heart, in
my new balance
store life, timberland
outlet the light of your
nfl
seahawks warmth, quietly
in the nike free
run years
nike air max 2015
of the
birkenstock outlet
other side, waiting toronto raptors
for asics
you nfl
bills eternal!A
celine handbags
period michael
kors outlet online of
oakley love, knicks jerseys
repeated
cheap jerseys
weigh, and finally deepened coach
outlet the years of toms
shoes long. All swarovski
australia the cheap jerseys
way to
hollister catch
burberry up, all
nike air
force the longchamp
outlet way
converse to
recall, what is the designer
handbags last, adidas shoes
outlet and finally ralph lauren
uk what is oakley
sunglasses lost.
Perhaps, flat iron
only
womens hoodies
we the north
face will michael
kors purses understand
kanye west
shoes when the
ferragamo
meditation, pandora
jewellery this way of
recall, we cheap true
religion get ralph lauren
online happiness
abercrombie is
hilfiger often
kobe bryant jersey
less than pain.
michael kors outlet online
sale When Acacia ralph lauren
uk into the War,
jerseys from china
in adidas
neo addition
nba jerseys outlet
to
northface the
lament ray ban
outlet of the
fitflop moon,
nothing caught.Has michael kors
handbags been chrome
hearts jewelry attached
replica watches
to prada
handbags the simple
nfl chiefs style
armani clothing
of
pandora life,
only nfl
ravens willing
ray ban sunglasses
outlet to pandora
rings use belstaff
an indifferent versace shoes
outlet heart
nike air to see
air
max Yunjuyun Shu, see
the
polo ralph
season true
religion change. hollister
kids Many nike
outlet of
occhiali oakley
the
michaelkors.com
time Hermes
of the things, will inevitably
zapatillas
nike be left charlotte hornets
jersey over coach outlet
sale time, mont blanc
pens like the lush
autumn michael
kors leaves, adidas
shoes until nfl
broncos the skechers
womens shoes life is skechers
exhausted, and finally vibram
shoes from
kate spade the
ray ban outlet
veins ray ban
sunglasses of air max
the
vans schuhe
phase phase nfl
patriots pull.
gucci womens shoes
And jimmy
choo I jimmy choo
shoes have been true religion
jeans women here, shake
cheap eyeglasses
off
guess bags outlet
a burden, the eternal nike free
shoes attitude
nba jerseys of
roshe
run the
rayban tree
standing burberry
outlet online in the
nfl jets
monsoon,
uggs head
mcm bags toward
the nba
jerseys boundless warm
nike
mercurial blue sky.Night
longchamp fell,
belstaff mens
jackets spring michael kors outlet
online and softball
bats soft new
balance kissing
longchamp taschen
thin valentino
shoes outlet as nfl
redskins onion
babyliss skin
bcbg dresses
curtain, coach purses
rhythm of the patter new balance
on ralph
lauren factory store the
coach black
friday window baseball
jerseys lattice, but barbour
outlet also nfl
chargers added unlimited
ideas. hermes
birkin Ideas michaelkors.com
in me, in happiness fred perry shoes
and lunette ray ban pas
cher tranquil, polo ralph lauren
the nike
air twist michael kors
outlet online
heartstrings thomas sabo
uk into michael kors v?skor
the
coach outlet
water as
reebok gentle
grace in red
bottoms the nfl
bengals affectionate mont blanc
rainy coach
factory online night. At
the cheap oakley
sunglasses moment, the
rain outside nfl
packers the
nfl rams window
washington
wizards is no longer kate spade
outlet online a cold gucci mens
shoes autumn, cheap oakley
sunglasses and orlando magic
in my Mou is ecco women shoes
a iphone 4s
cases soft,
jerseys from china
like pandora
rings the
guciheaven
girl's woolrich outlet
online feelings,
lunette oakley pas
cher is
nfl saints pity,
michael kors bags
love, ralph lauren
is supra
footwear soft, is
running replica
watches in coach
outlet online my nike free
shoes heart burberry outlet
online is pandora
bracelets a vision, birkenstock taschen
deutschland vision With
a air max
shoes beautiful future,
ray ban
sunglasses and converse
outlet you cheap
jerseys embraced in burberry
handbags the rainy
season, let roshe
run love wantonly gsw jerseys
in philadelphia 76ers
jersey the oil
jordans for sale
paper timberland
homme umbrella,
nfl giants
bluestone edge, nike
huarache clove alley swarovski
such
converse shoes a
cheap nike
shoes state nfl
cowboys of
dansko shoes
mind, cheap basketball
shoes such jack wolfskin outlet
online a
relojes especiales
time, such iphone 5
cases a
fred perry
moment, inadvertently juicy
couture It was drunk, louboutin
outlet drunk, michael
kors outlet online sale
drunk
hogan in such true
religion jeans outlet a
bottega
veneta graceful light michael kors
bags dance
coach factory outlet
online in the cheap
oakley autumnSunset
burberry broken
moon sky, puma outlet
store still hermes
outlet reflected
hugo boss outlet
in
louboutin the
home of nfl
eagles the road,
wandering for rolex
replica a swarovski
jewelry long time belstaff
sale to write a
huaraches tired
mia jersey pen
air
jordans with nfl
azcardinals the levis outlet
store tired, accompanied
by withered haggard, cheap ray
ban and memphis
grizzlies the mottled
fragments jerseys from
china of
burberry handbags
the coincidence, north face pas cher
splash cheap oakley
sunglasses ripples north face
jackets in
adidas.de the
heart christian
louboutin of
thomas sabo a calvin
klein few strands
nike air max
Gossip, let minnesota
timberwolves the
kate spade outlet
year to
nike.de hold
nike air max the
hand of gafas oakley
the replica
handbags hand,
replica watches
listen to giuseppe zanotti
the ralph
lauren outlet gurgling
mcm
handbags water;
fluctuations
prada outlet in
russell westbrook
jersey the flow of giuseppe
shoes the timberland
shoes heart
shop coach factory
of tommy
hilfiger outlet stores
the nike air force
sea, chi hair
called for; whirling salomon schuhe
years, sketched
nike air max out
nike
online who
cheap michael kors
mottled only drunk vans
shoes glass lodging, baseball
bats but also
nfl bears a
sleepless michael kors
outlet night TheTrue
adidas.se love,
is the people in
supra shoes a roche run
thousand air max 2014
miles, but the free
running dream
mizuno running
of devotion; coach
bags true love,
nfl 49ers is
pandora the
soccer outlet online
years
guess jeans of
ralph
lauren outlet
circulation, nike.com but
hollister never
abandon; true juicy
couture clothings love,
michael kors
bags is ralph lauren to
oakley
sunglasses cheap pay
each
katespade outlet
other, but no regrets.Sakura has a oakley
sunglasses outlet single
cheap glasses
cherry
air jordan and
double cherry, vans
outlet they
swarovski bloom
toms
shoes when the ralph
lauren outlet online
tree polo ralph lauren
outlet is full of sac jerseys
fragrant, under
armour curry fragrant,
single cherry michael
kors white north face
backpacks snow
oakley prescription
clouds,
plein outlet
double barbour mens
jackets cherry color new
balance like fire toms shoes
outlet like
adidas Xia. But
whether under armour
ua shoes it is polo ralph
lauren a
givenchy bags outlet
single cherry
longchamp or designer
handbags double
pandora cherry,
they nfl
titans are
c&c beanies wholesale
not oakley outlet
online in coach
outlet full bloom michael kors
australia time, polo ralph
lauren more than jordan
shoes 20 days of air jordan retro
the scene, open the colorful,
tommy hilfiger
full soccer
shoes of san antonio spurs
trees, puma
falling star
burberry outlet
online valve,
hurried.Late indiana pacers
autumn ugg
australia is
dsquared2 shoes
still far, nfl
jerseys slowly polo ralph
lauren outlet online the
fake rolex
wind air jordan
shoes blowing, swarovski
crystal but nike
roshe also had michael kors
purses a bit
long champ
bleak, spring, nets jersey not
marc jacobs
outlet only the nfl
dolphins sky flying
flowers, jordan release
dates there are polo ralph
lauren outlet scattered
pistons jersey
flowers
rayban
everywhere fragrance.
ray ban With the north face
outlet the autumn rhyme
gradually
asics gel rich
denver nuggets
up, free
run the oakley
sunglasses outlet yard
of
hollister online shop
deutschland flowers louboutin shoes
will adidas
superstar be ralph
lauren shirts in
prada full
bloom,
cheap jerseys
the tommy
hilfiger whole yard
aroma replica rolex
overflowing, filled with sweet
shoes on sale
taste.
coach factory outlet
online Jin cleveland cavaliers
jerseys Chan's
air max 90
flowers michael kors
handbags a
nike roshe
string of strings, a
barbour women jackets
pinch moncler women
jackets summary, heavy
nike air max
2014 stacked salvatore
ferragamo clusters hermes bags
surrounded hilfiger
outlet by
rayban sunglasses
dense green oakley
leaves, new
balance shoes warm
mizuno running shoes
and warm ralph
lauren like nike
store a child's
oakley outlet
smile, as if christian
louboutin to this warm
spring the
north face into coach outlet
online a
tory burch shoes
bright burberry
handbags The mbt shoes
outlet scenery.
ray ban wayfarer |
|