Thread Problem mit einem cgi script - Interactive Story: Anfänger braucht Hilfe (7 answers)
Opened by Gast at 2006-08-31 02:16

Melanie
 2006-09-01 21:58
#8625 #8625
User since
2006-08-31
3 Artikel
BenutzerIn
[default_avatar]
Die storyconfig enthält nichts relevantes, das sehe sogar ich. ;)

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/local/bin/perl

# This file contains configurable settings for story.cgi program.
# Change these values as needed for your particular site.
# Any customization for a particular site can be made here in the
# storyconfig file. No changes to the story.pl program should
# be required.

#
# Interactive Story program written by Valerie Mates, [EMAIL=valerie@cyberspace.org]valerie@cyberspace.org[/EMAIL]
# 1/15/98.
#
# This program is freeware, but, if you use it, you are required
# to leave my URL in the page footer and send me an email message
# (valerie@cyberspace.org) to let me know that you are using it.
#
# If you translate the program to another language, I would appreciate a
# copy to add to the collection of translated versions. This is not
# required, but it is appreciated.
#
# The program is not permitted for use on pornographic sites.
#

# This is the name of the directory where the story data is stored.
# You'll need to make sure it exists -- that the web server can write to it.
# By default, this program uses a directory called "story" under the
# cgi-bin directory.
$story_dir = "story";

# URL of image directory, or "." if they are in the same directory
# as this script:
$image_url = "../images";

# Your own web page URL
# Example: $host_url = "http://www.yourhost.com/~yourlogin";
$host_url = "/";

# Email address to send mail to when each new page is posted. Or leave
# blank to not send e-mail. IMPORTANT: Put a \ before any @ characters!
# Example: $announce_to = "you\@somewhere.com";
$announce_to = "";

# Location of your sendmail program, if you want the program to send
# you mail about each new response. (Unix only.)
$sendmail = "/usr/lib/sendmail";

# URL of header image, and the image's width and height and alt text.
$header_image = "$image_url/an_interactive_story.gif";
$image_width = 498;
$image_height = 131;
$image_alt = "An Interactive Story";

View full thread Problem mit einem cgi script - Interactive Story: Anfänger braucht Hilfe