in reply to Cross platform coding advice
Virtually only thing that was making problems to me is the newline character. You only need to make sure that first line (#!usr/bin/perl or similar) is on it's own. And since Windows and Linux have different line endings unless you save files in Unix mode it won't be the case.
As I'm using CGI::Application and many of it's plug ins - that aren't widely available on the plain hostings here's what I'm using :
In my root folder (htdocs or www usually) I have index.pl file which just calls CGI::Application::Dispatch run method. All other files are inside folder named by the application (say AppName). That folder is protected with .htaccess (just write "deny from all" inside of it).
And inside of it I have :
Templates/
Templates/Module1/files.dwt
Templates/Module2/files.dwt
...
Foundation/ (modules inherithed by others)
Foundation/Database.pm
Foundation/Runmodes.pm (this one is use base '' in all Runmodes, and itself inhretihs from CGI::App)
...
Runmodes/
Runmodes/Module1.pm
Runmodes/Module2.pm
...
Config/ (some config files)
Cron/ (some scripts run by cron, delete old sessions ...etc)
CAPN/ (inside of it, there are all the modules that are from CPAN, but aren't available on the server. You need to add it to the @INC in the index.pl file)
Overall it works pretty good. Once I set it up on the server, I only upload files inside Runmodes and Templates folders (most of the time).
O yeah, templates are just plain HTML + HTML::Template tags, but are named *.dwt and not *.tmpl so Dreamweaver would open them nicely with WYSIWYG part working too.
|
|---|