Twiki aufsetzen


  • Chris2603
  • 6751 Aufrufe 19 Antworten

Diese Seite verwendet Cookies. Durch die Nutzung unserer Seite erklären Sie sich damit einverstanden, dass wir Cookies setzen. Weitere Informationen

  • Twiki aufsetzen

    Hi,

    hoffe hier kann mir jemand helfen, ich bin Azubi und soll bei mir in der Firma ein Twiki aufsetzen. Hab schon bisl im Internet rum gelesen finde alles nur in Englisch beschrieben, was ein wenig problematisch ist. siehe: TWiki - the open source wiki for the enterprise

    Habe heraus gefunden dass man Twiki welches eigentlich für Linux entwickelt wurde auch Theoretisch auf Windows funktionieren soll.

    Ich soll in der Firma Twiki auf einen Windows 2000 Server installieren, habe aber zuhause auf meinem Heim Pc (XP Profesional) schonmal versucht Twiki zu installieren, zuerst habe ich nach dem Windows Cookbook installiert und es funktionierte garnichts.

    Jetzt habe ich einen Twikiwindows installer, auch von der Seite, aber eine Beta version ausprobiert, habe aber nun das Problem wenn ich mit der Installation fertig bin, dass ich nicht Twiki Konfigurieren oder Starten kann.

    Hoffe das mir Hier einer am Board helfen kann....


    Mit freundlichem Gruß chris2603
  • :danke: für die mühe @ voodoo44


    Das hatte ich im Netz noch nicht gefunden is aber ähnlich wie vonder Twiki Seite werd mir das aber trotzdem durchlesen und schauen ob ich einen Fehler von mir entdecke.

    Am besten wäre aber wenn mir jemand, der Twiki selber schon aufgesetzt hat, mir erzählen könnte wie er es gemacht hat und falls es irgendwelche Trick, Kniffe oder ähnliches dabei gibt mir die dann auch beschreiben würde.
  • Ja, aber nur, dass ich es zum laufen kriege ;)

    Was mich gerade nervt...argh, diese verdammt twiki.org-Page ist down !!!

    Andere Frage:
    Wo genau bei der Installation hängts denn bei dir?

    Haste den Apache richtig konfiguriert? Oder tut cygwin nicht richtig?

    Was genau ist der Fehler denn?
  • Ich denke das ser Apache server nicht richtig läuft habe das problem, dass wenn ich twiki aus meiner startleiste starten will, dass er dann meinen internetexplorer öffnet und mir eine Seiten-Ladefehler anzeigt, er versucht auf: localhost/twiki/bin/view zu zugreifen.

    Habe diese datei bei mir im Twiki verzeichnis gefunden ist eine 2 Kb datei.

    Wenn ich die Konfigurationsdatei vom Apache Server Testen lasse kommt heraus, das in der Zeile 133 ein Syntax error besteht, aber dass hilft mir nicht gerade weiter.:(

    Das ist die config datei des Apache 2.2:

    Quellcode

    1. #
    2. # This is the main Apache HTTP server configuration file. It contains the
    3. # configuration directives that give the server its instructions.
    4. # See <URL:http://httpd.apache.org/docs/2.2/> for detailed information.
    5. # In particular, see
    6. # <URL:http://httpd.apache.org/docs/2.2/mod/directives.html>
    7. # for a discussion of each configuration directive.
    8. #
    9. # Do NOT simply read the instructions in here without understanding
    10. # what they do. They're here only as hints or reminders. If you are unsure
    11. # consult the online docs. You have been warned.
    12. #
    13. # Configuration and logfile names: If the filenames you specify for many
    14. # of the server's control files begin with "/" (or "drive:/" for Win32), the
    15. # server will use that explicit path. If the filenames do *not* begin
    16. # with "/", the value of ServerRoot is prepended -- so "logs/foo.log"
    17. # with ServerRoot set to "C:/Programme/Apache Software Foundation/Apache2.2" will be interpreted by the
    18. # server as "C:/Programme/Apache Software Foundation/Apache2.2/logs/foo.log".
    19. #
    20. # NOTE: Where filenames are specified, you must use forward slashes
    21. # instead of backslashes (e.g., "c:/apache" instead of "c:\apache").
    22. # If a drive letter is omitted, the drive on which Apache.exe is located
    23. # will be used by default. It is recommended that you always supply
    24. # an explicit drive letter in absolute paths, however, to avoid
    25. # confusion.
    26. #
    27. # ThreadsPerChild: constant number of worker threads in the server process
    28. # MaxRequestsPerChild: maximum number of requests a server process serves
    29. ThreadsPerChild 250
    30. MaxRequestsPerChild 0
    31. #
    32. # ServerRoot: The top of the directory tree under which the server's
    33. # configuration, error, and log files are kept.
    34. #
    35. # Do not add a slash at the end of the directory path. If you point
    36. # ServerRoot at a non-local disk, be sure to point the LockFile directive
    37. # at a local disk. If you wish to share the same ServerRoot for multiple
    38. # httpd daemons, you will need to change at least LockFile and PidFile.
    39. #
    40. ServerRoot "C:/Programme/Apache Software Foundation/Apache2.2"
    41. #
    42. # Listen: Allows you to bind Apache to specific IP addresses and/or
    43. # ports, instead of the default. See also the <VirtualHost>
    44. # directive.
    45. #
    46. # Change this to Listen on specific IP addresses as shown below to
    47. # prevent Apache from glomming onto all bound IP addresses (0.0.0.0)
    48. #
    49. #Listen 12.34.56.78:80
    50. Listen 80
    51. #
    52. # Dynamic Shared Object (DSO) Support
    53. #
    54. # To be able to use the functionality of a module which was built as a DSO you
    55. # have to place corresponding `LoadModule' lines at this location so the
    56. # directives contained in it are actually available _before_ they are used.
    57. # Statically compiled modules (those listed by `httpd -l') do not need
    58. # to be loaded here.
    59. #
    60. # Example:
    61. # LoadModule foo_module modules/mod_foo.so
    62. #
    63. LoadModule actions_module modules/mod_actions.so
    64. LoadModule alias_module modules/mod_alias.so
    65. LoadModule asis_module modules/mod_asis.so
    66. LoadModule auth_basic_module modules/mod_auth_basic.so
    67. #LoadModule auth_digest_module modules/mod_auth_digest.so
    68. #LoadModule authn_anon_module modules/mod_authn_anon.so
    69. #LoadModule authn_dbm_module modules/mod_authn_dbm.so
    70. LoadModule authn_default_module modules/mod_authn_default.so
    71. LoadModule authn_file_module modules/mod_authn_file.so
    72. #LoadModule authz_dbm_module modules/mod_authz_dbm.so
    73. LoadModule authz_default_module modules/mod_authz_default.so
    74. LoadModule authz_groupfile_module modules/mod_authz_groupfile.so
    75. LoadModule authz_host_module modules/mod_authz_host.so
    76. LoadModule authz_user_module modules/mod_authz_user.so
    77. LoadModule autoindex_module modules/mod_autoindex.so
    78. #LoadModule cern_meta_module modules/mod_cern_meta.so
    79. LoadModule cgi_module modules/mod_cgi.so
    80. #LoadModule dav_module modules/mod_dav.so
    81. #LoadModule dav_fs_module modules/mod_dav_fs.so
    82. #LoadModule deflate_module modules/mod_deflate.so
    83. LoadModule dir_module modules/mod_dir.so
    84. LoadModule env_module modules/mod_env.so
    85. #LoadModule expires_module modules/mod_expires.so
    86. #LoadModule file_cache_module modules/mod_file_cache.so
    87. #LoadModule headers_module modules/mod_headers.so
    88. LoadModule imagemap_module modules/mod_imagemap.so
    89. LoadModule include_module modules/mod_include.so
    90. #LoadModule info_module modules/mod_info.so
    91. LoadModule isapi_module modules/mod_isapi.so
    92. LoadModule log_config_module modules/mod_log_config.so
    93. LoadModule mime_module modules/mod_mime.so
    94. #LoadModule mime_magic_module modules/mod_mime_magic.so
    95. #LoadModule proxy_module modules/mod_proxy.so
    96. #LoadModule proxy_ajp_module modules/mod_proxy_ajp.so
    97. #LoadModule proxy_balancer_module modules/mod_proxy_balancer.so
    98. #LoadModule proxy_connect_module modules/mod_proxy_connect.so
    99. #LoadModule proxy_http_module modules/mod_proxy_http.so
    100. #LoadModule proxy_ftp_module modules/mod_proxy_ftp.so
    101. LoadModule negotiation_module modules/mod_negotiation.so
    102. #LoadModule rewrite_module modules/mod_rewrite.so
    103. LoadModule setenvif_module modules/mod_setenvif.so
    104. #LoadModule speling_module modules/mod_speling.so
    105. #LoadModule status_module modules/mod_status.so
    106. #LoadModule unique_id_module modules/mod_unique_id.so
    107. LoadModule userdir_module modules/mod_userdir.so
    108. #LoadModule usertrack_module modules/mod_usertrack.so
    109. #LoadModule vhost_alias_module modules/mod_vhost_alias.so
    110. #LoadModule ssl_module modules/mod_ssl.so
    111. # 'Main' server configuration
    112. #
    113. # The directives in this section set up the values used by the 'main'
    114. # server, which responds to any requests that aren't handled by a
    115. # <VirtualHost> definition. These values also provide defaults for
    116. # any <VirtualHost> containers you may define later in the file.
    117. #
    118. # All of these directives may appear inside <VirtualHost> containers,
    119. # in which case these default settings will be overridden for the
    120. # virtual host being defined.
    121. #
    122. #
    123. # ServerAdmin: Your address, where problems with the server should be
    124. # e-mailed. This address appears on some server-generated pages, such
    125. # as error documents. e.g. admin@your-domain.com
    126. #
    127. ServerAdmin
    128. #
    129. # ServerName gives the name and port that the server uses to identify itself.
    130. # This can often be determined automatically, but we recommend you specify
    131. # it explicitly to prevent problems during startup.
    132. #
    133. # If your host doesn't have a registered DNS name, enter its IP address here.
    134. #
    135. [COLOR='Red']ServerName :80[/COLOR] <--- wenn ich mich nicht verzählt habe ist das zeile 133
    136. #
    137. # DocumentRoot: The directory out of which you will serve your
    138. # documents. By default, all requests are taken from this directory, but
    139. # symbolic links and aliases may be used to point to other locations.
    140. #
    141. DocumentRoot "C:/Programme/Apache Software Foundation/Apache2.2/htdocs"
    142. #
    143. # Each directory to which Apache has access can be configured with respect
    144. # to which services and features are allowed and/or disabled in that
    145. # directory (and its subdirectories).
    146. #
    147. # First, we configure the "default" to be a very restrictive set of
    148. # features.
    149. #
    150. <Directory />
    151. Options FollowSymLinks
    152. AllowOverride None
    153. Order deny,allow
    154. Deny from all
    155. Satisfy all
    156. </Directory>
    157. #
    158. # Note that from this point forward you must specifically allow
    159. # particular features to be enabled - so if something's not working as
    160. # you might expect, make sure that you have specifically enabled it
    161. # below.
    162. #
    163. #
    164. # This should be changed to whatever you set DocumentRoot to.
    165. #
    166. <Directory "C:/Programme/Apache Software Foundation/Apache2.2/htdocs">
    167. #
    168. # Possible values for the Options directive are "None", "All",
    169. # or any combination of:
    170. # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    171. #
    172. # Note that "MultiViews" must be named *explicitly* --- "Options All"
    173. # doesn't give it to you.
    174. #
    175. # The Options directive is both complicated and important. Please see
    176. # http://httpd.apache.org/docs/2.2/mod/core.html#options
    177. # for more information.
    178. #
    179. Options Indexes FollowSymLinks
    180. #
    181. # AllowOverride controls what directives may be placed in .htaccess files.
    182. # It can be "All", "None", or any combination of the keywords:
    183. # Options FileInfo AuthConfig Limit
    184. #
    185. AllowOverride None
    186. #
    187. # Controls who can get stuff from this server.
    188. #
    189. Order allow,deny
    190. Allow from all
    191. </Directory>
    192. #
    193. # DirectoryIndex: sets the file that Apache will serve if a directory
    194. # is requested.
    195. #
    196. <IfModule dir_module>
    197. DirectoryIndex index.html
    198. </IfModule>
    199. #
    200. # The following lines prevent .htaccess and .htpasswd files from being
    201. # viewed by Web clients.
    202. #
    203. <FilesMatch "^\.ht">
    204. Order allow,deny
    205. Deny from all
    206. </FilesMatch>
    207. #
    208. # ErrorLog: The location of the error log file.
    209. # If you do not specify an ErrorLog directive within a <VirtualHost>
    210. # container, error messages relating to that virtual host will be
    211. # logged here. If you *do* define an error logfile for a <VirtualHost>
    212. # container, that host's errors will be logged there and not here.
    213. #
    214. ErrorLog logs/error.log
    215. #
    216. # LogLevel: Control the number of messages logged to the error_log.
    217. # Possible values include: debug, info, notice, warn, error, crit,
    218. # alert, emerg.
    219. #
    220. LogLevel warn
    221. <IfModule log_config_module>
    222. #
    223. # The following directives define some format nicknames for use with
    224. # a CustomLog directive (see below).
    225. #
    226. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    227. LogFormat "%h %l %u %t \"%r\" %>s %b" common
    228. <IfModule logio_module>
    229. # You need to enable mod_logio.c to use %I and %O
    230. LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    231. </IfModule>
    232. #
    233. # The location and format of the access logfile (Common Logfile Format).
    234. # If you do not define any access logfiles within a <VirtualHost>
    235. # container, they will be logged here. Contrariwise, if you *do*
    236. # define per-<VirtualHost> access logfiles, transactions will be
    237. # logged therein and *not* in this file.
    238. #
    239. CustomLog logs/access.log common
    240. #
    241. # If you prefer a logfile with access, agent, and referer information
    242. # (Combined Logfile Format) you can use the following directive.
    243. #
    244. #CustomLog logs/access.log combined
    245. </IfModule>
    246. <IfModule alias_module>
    247. #
    248. # Redirect: Allows you to tell clients about documents that used to
    249. # exist in your server's namespace, but do not anymore. The client
    250. # will make a new request for the document at its new location.
    251. # Example:
    252. # Redirect permanent /foo http:///bar
    253. #
    254. # Alias: Maps web paths into filesystem paths and is used to
    255. # access content that does not live under the DocumentRoot.
    256. # Example:
    257. # Alias /webpath /full/filesystem/path
    258. #
    259. # If you include a trailing / on /webpath then the server will
    260. # require it to be present in the URL. You will also likely
    261. # need to provide a <Directory> section to allow access to
    262. # the filesystem path.
    263. #
    264. # ScriptAlias: This controls which directories contain server scripts.
    265. # ScriptAliases are essentially the same as Aliases, except that
    266. # documents in the target directory are treated as applications and
    267. # run by the server when requested rather than as documents sent to the
    268. # client. The same rules about trailing "/" apply to ScriptAlias
    269. # directives as to Alias.
    270. #
    271. ScriptAlias /cgi-bin/ "C:/Programme/Apache Software Foundation/Apache2.2/cgi-bin/"
    272. </IfModule>
    273. #
    274. # "C:/Programme/Apache Software Foundation/Apache2.2/cgi-bin" should be changed to whatever your ScriptAliased
    275. # CGI directory exists, if you have that configured.
    276. #
    277. <Directory "C:/Programme/Apache Software Foundation/Apache2.2/cgi-bin">
    278. AllowOverride None
    279. Options None
    280. Order allow,deny
    281. Allow from all
    282. </Directory>
    283. #
    284. # Apache parses all CGI scripts for the shebang line by default.
    285. # This comment line, the first line of the script, consists of the symbols
    286. # pound (#) and exclamation (!) followed by the path of the program that
    287. # can execute this specific script. For a perl script, with perl.exe in
    288. # the C:\Program Files\Perl directory, the shebang line should be:
    289. #!c:/program files/perl/perl
    290. # Note you _must_not_ indent the actual shebang line, and it must be the
    291. # first line of the file. Of course, CGI processing must be enabled by
    292. # the appropriate ScriptAlias or Options ExecCGI directives for the files
    293. # or directory in question.
    294. #
    295. # However, Apache on Windows allows either the Unix behavior above, or can
    296. # use the Registry to match files by extention. The command to execute
    297. # a file of this type is retrieved from the registry by the same method as
    298. # the Windows Explorer would use to handle double-clicking on a file.
    299. # These script actions can be configured from the Windows Explorer View menu,
    300. # 'Folder Options', and reviewing the 'File Types' tab. Clicking the Edit
    301. # button allows you to modify the Actions, of which Apache 1.3 attempts to
    302. # perform the 'Open' Action, and failing that it will try the shebang line.
    303. # This behavior is subject to change in Apache release 2.0.
    304. #
    305. # Each mechanism has it's own specific security weaknesses, from the means
    306. # to run a program you didn't intend the website owner to invoke, and the
    307. # best method is a matter of great debate.
    308. #
    309. # To enable the this Windows specific behavior (and therefore -disable- the
    310. # equivilant Unix behavior), uncomment the following directive:
    311. #
    312. #ScriptInterpreterSource registry
    313. #
    314. # The directive above can be placed in individual <Directory> blocks or the
    315. # .htaccess file, with either the 'registry' (Windows behavior) or 'script'
    316. # (Unix behavior) option, and will override this server default option.
    317. #
    318. #
    319. # DefaultType: the default MIME type the server will use for a document
    320. # if it cannot otherwise determine one, such as from filename extensions.
    321. # If your server contains mostly text or HTML documents, "text/plain" is
    322. # a good value. If most of your content is binary, such as applications
    323. # or images, you may want to use "application/octet-stream" instead to
    324. # keep browsers from trying to display binary files as though they are
    325. # text.
    326. #
    327. DefaultType text/plain
    328. <IfModule mime_module>
    329. #
    330. # TypesConfig points to the file containing the list of mappings from
    331. # filename extension to MIME-type.
    332. #
    333. TypesConfig conf/mime.types
    334. #
    335. # AddType allows you to add to or override the MIME configuration
    336. # file specified in TypesConfig for specific file types.
    337. #
    338. #AddType application/x-gzip .tgz
    339. #
    340. # AddEncoding allows you to have certain browsers uncompress
    341. # information on the fly. Note: Not all browsers support this.
    342. #
    343. #AddEncoding x-compress .Z
    344. #AddEncoding x-gzip .gz .tgz
    345. #
    346. # If the AddEncoding directives above are commented-out, then you
    347. # probably should define those extensions to indicate media types:
    348. #
    349. AddType application/x-compress .Z
    350. AddType application/x-gzip .gz .tgz
    351. #
    352. # AddHandler allows you to map certain file extensions to "handlers":
    353. # actions unrelated to filetype. These can be either built into the server
    354. # or added with the Action directive (see below)
    355. #
    356. # To use CGI scripts outside of ScriptAliased directories:
    357. # (You will also need to add "ExecCGI" to the "Options" directive.)
    358. #
    359. #AddHandler cgi-script .cgi
    360. # For type maps (negotiated resources):
    361. #AddHandler type-map var
    362. #
    363. # Filters allow you to process content before it is sent to the client.
    364. #
    365. # To parse .shtml files for server-side includes (SSI):
    366. # (You will also need to add "Includes" to the "Options" directive.)
    367. #
    368. #AddType text/html .shtml
    369. #AddOutputFilter INCLUDES .shtml
    370. </IfModule>
    371. #
    372. # The mod_mime_magic module allows the server to use various hints from the
    373. # contents of the file itself to determine its type. The MIMEMagicFile
    374. # directive tells the module where the hint definitions are located.
    375. #
    376. #MIMEMagicFile conf/magic
    377. #
    378. # Customizable error responses come in three flavors:
    379. # 1) plain text 2) local redirects 3) external redirects
    380. #
    381. # Some examples:
    382. #ErrorDocument 500 "The server made a boo boo."
    383. #ErrorDocument 404 /missing.html
    384. #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    385. #ErrorDocument 402 http:///subscription_info.html
    386. #
    387. #
    388. # EnableMMAP and EnableSendfile: On systems that support it,
    389. # memory-mapping or the sendfile syscall is used to deliver
    390. # files. This usually improves server performance, but must
    391. # be turned off when serving from networked-mounted
    392. # filesystems or if support for these functions is otherwise
    393. # broken on your system.
    394. #
    395. #EnableMMAP off
    396. #EnableSendfile off
    397. # Supplemental configuration
    398. #
    399. # The configuration files in the conf/extra/ directory can be
    400. # included to add extra features or to modify the default configuration of
    401. # the server, or you may simply copy their contents here and change as
    402. # necessary.
    403. # Server-pool management (MPM specific)
    404. #Include conf/extra/httpd-mpm.conf
    405. # Multi-language error messages
    406. #Include conf/extra/httpd-multilang-errordoc.conf
    407. # Fancy directory listings
    408. #Include conf/extra/httpd-autoindex.conf
    409. # Language settings
    410. #Include conf/extra/httpd-languages.conf
    411. # User home directories
    412. #Include conf/extra/httpd-userdir.conf
    413. # Real-time info on requests and configuration
    414. #Include conf/extra/httpd-info.conf
    415. # Virtual hosts
    416. #Include conf/extra/httpd-vhosts.conf
    417. # Local access to the Apache HTTP Server Manual
    418. #Include conf/extra/httpd-manual.conf
    419. # Distributed authoring and versioning (WebDAV)
    420. #Include conf/extra/httpd-dav.conf
    421. # Various default settings
    422. #Include conf/extra/httpd-default.conf
    423. # Secure (SSL/TLS) connections
    424. #Include conf/extra/httpd-ssl.conf
    425. #
    426. # Note: The following must must be present to support
    427. # starting without SSL on platforms with no /dev/random equivalent
    428. # but a statically compiled-in mod_ssl.
    429. #
    430. <IfModule ssl_module>
    431. SSLRandomSeed startup builtin
    432. SSLRandomSeed connect builtin
    433. </IfModule>
    Alles anzeigen



    Sorry das ich den ganzen Code gepostet hab werd ich aber auch wider rausnehmen wenn dus gelesen hast
  • Wichtig ist u.a. das hier:

    Quellcode

    1. $ mkdir /twiki /c c:/twiki
    2. $ mount -b -s c:/twiki /twiki
    3. $ mount -b -s c:/ /c
    4. $ mount -b -c /cygdrive
    5. $ mount
    6. Device Directory Type Flags
    7. C:\cygwin\bin /usr/bin system binmode
    8. C:\cygwin\lib /usr/lib system binmode
    9. C:\cygwin / system binmode
    10. c:\twiki /twiki system binmode
    11. c: /c system binmode
    Alles anzeigen


    Sowie folgendes:

    Quellcode

    1. $ cd /twiki/bin
    2. $ ls
    3. attach geturl oops rdiff save testenv viewfile
    4. changes installpasswd passwd register search upload
    5. edit mailnotify preview rename statistics view
    6. $ mkdir .backup
    7. $ cp * .backup
    8. $ head -1 view
    9. #!/usr/bin/perl -wT
    10. $ perl -pi~ -e 's;#!/usr/bin/perl;#!c:/cygwin/bin/perl;' *[a-z]
    11. $ head -1 view
    12. #!c:/cygwin/bin/perl -wT
    13. $ ls
    14. attach geturl oops rdiff save testenv viewfile~
    15. attach~ geturl~ oops~ rdiff~ save~ testenv~ view~
    16. changes installpasswd passwd register search upload
    17. changes~ installpasswd~ passwd~ register~ search~ upload~
    18. edit mailnotify preview rename statistics view
    19. edit~ mailnotify~ preview~ rename~ statistics~ viewfile
    Alles anzeigen


    Nicht vergessen eine Bentuzerumgebungsvariable in der Systemsteuerung festzulegen ("HOME" -> soll zeigen auf "C:\cygwin\home\DEIN_USERNAME")

    Danach Apachen konfigurieren, twiki nach c:\twiki kopieren und das wars dann auch schon fast
  • Ach so: Wie immer gilt - bei Problemen melden, sag mir wo du festhängst und ich versuch zu helfen.

    btw:
    Ich habe unter Punkt "Perl module installation - 6. Installing required Perl modules" nicht mehr weiter gemacht, danach konnte man das Teil schon einwandfrei verwenden - ein paar Errors kamen zwar (u.a., dass kein Fast-CGI Anbindung für Session existiert - naja, dann eben Sessions abschlaten bei der Konfiguration).

    Wenn alle Errors weg sind geht er dann von der config automatisch auf die Hauptseite ;)