#!/usr/bin/perl # Do NOT use the -w flag on the path to Perl in the above line # Editwrx runs on "perl" NOT on "perl5" (perl5 is a sub=language) # Do NOT use STRICT, the taint flag, or any other brain-dead OOP modules or settings # On Windows servers use only #!/perl for the first line (the path to Perl is found in Windows registery) use CGI::Carp qw(fatalsToBrowser); $url_to_editor = "http://www.pallottines.org/cgi-bin/editor.cgi"; # absolute URL to this file (lower case only) $url_to_wrx_library_folder = "http://www.pallottines.org/cms/wrx_library"; # absolute URL to wrx_library folder (lower case only) $path_to_library = "/home/sites/site110/web/cms/wrx_library"; # PATH to library folder (library must be inside the domain path) # PATH may be absolute server path (example: /home/sites/yourSite/www/wrx_library), # or relative path from editor.cgi (example: ../wrx_library) # on Win servers do not use a backslash (\), instead use the slash (/) @separators=qw(sep1 sep2 sep3 sep4 sep5 sep6 sep7 sep8 sep9 sep10 sep11); # edit only to remove a separator from the toolbar ################################################# ## DO NOT EDIT BELOW HERE ################################################# ################################################################## # # COPYRIGHT NOTICE: # # Copyright 2003 editwrx.com TM # A subsidiary of Digital Odyssey # # web site: http://www.editwrx.com # E-Mail: support@editwrx.com # Software released date: Nov 2, 2003 # Version: 5.4 # # EditWrx is protected by the copyright laws and international # copyright treaties, as well as other intellectual property laws # and treaties. EditWrx is licensed, not sold. # ################################################################### $path_to_library =~ s!/$!!; $editor_htm = $path_to_library."/editor.htm"; require "$editor_htm";