Changeset 1032
- Timestamp:
- 08/30/06 11:19:22 (2 years ago)
- Files:
-
- feedmelinks/account.php (modified) (1 diff)
- feedmelinks/bin/clean-usr-dirs.sh (added)
- feedmelinks/bin/configure.sh (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
feedmelinks/account.php
r927 r1032 78 78 if( $_FILES['profile_image']['size '] < $max_profile_image_size ) { 79 79 80 $uploadDir = get_ root() . "/usr/$u";80 $uploadDir = get_user_folder( $u ); 81 81 $uploadFile = $uploadDir . "/profile." . strtolower( $ext ); 82 82 feedmelinks/bin/configure.sh
r925 r1032 11 11 fi 12 12 13 # FIXME: remove this and move into setup 13 14 xsl="_config/parse-config.xsl" 14 15 xml="_config/servers.xml" … … 44 45 xsltproc --$sp server-name $s --$sp mode php $xsl $xml > $root/modules/env.inc.php 45 46 47 echo 4. FIXME: need to ALSO save these to a perl and/or sh-readable format for the maintenance scripts to read 48 echo 5. FIXME: need to ALSO build the crontab with the right paths 49 46 50 exit 0 47 51