Search results

  1. J

    PHP selocale() function ?

    Hi, I cant get the PHP setlocale function to work on OSX. <?php setlocale (LC_TIME, "C"); print (strftime ("%A in Finnish is ")); setlocale (LC_TIME, 'fi_FI'); print (strftime ("%A, in French ")); setlocale (LC_TIME, "fr_FR"); print (strftime ("%A and in German ")); setlocale (LC_TIME...
  2. J

    Neeh help Installing PROFTPD

    Hello, I am trying to install proftpd on OSX 10.1.3 without success. I do ./configure and then make and then I have some errors. Could someone help me ? --------------------------------------- echo \#define BUILD_STAMP \"`date`\" > include/buildstamp.h cd lib ; make lib cc...
  3. J

    Multiple index files and server admin ?

    Got It !! The correct syntax in httpd_macosxserver.conf is : DirectoryIndex "index.html""index.php""index.php3" So in the server admin tool I had to enter : index.html""index.php""index.php3 (without the starting and ending ") Silly no ?
  4. J

    Multiple index files and server admin ?

    Hello, I am trying to have more than one index file name using the server admin graphical tool in virtual hosts : I need index.html, index.php and index.php3. It works with my main server name when I change manually in the httpd.conf: <IfModule mod_dir.c> DirectoryIndex index.html...
Back
Top