Ignore:
Timestamp:
Oct 14, 2007, 3:32:47 PM (17 years ago)
Author:
andersk
Message:
Uncurl advancedbook, advancedpoll, e107, joomla, phpbb.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • locker/deploy/bin/joomla

    r127 r472  
    1111chomp($title);
    1212
    13 totmp("-d \"DBhostname=$sqlhost&DBuserName=$sqluser&DBpassword=$sqlpass&DBDel=0&DBname=$sqldbcurl&DBPrefix=jos_&DBSample=1\"");
    14 `curl -K $tmp http://$server/~$USER/$addrend/installation/install2.php 2>/dev/null`;
     13fetch_uri(
     14    'installation/install2.php',
     15    {},
     16    {DBhostname => $sqlhost,
     17     DBuserName => $sqluser,
     18     DBpassword => $sqlpass,
     19     DBDel => 0,
     20     DBname => $sqldb,
     21     DBPrefix => 'jos_',
     22     DBSample => 1});
    1523
    1624my $pwd = `pwd`;
    1725chomp($pwd);
    18 totmp("-d \"DBhostname=$sqlhost&DBuserName=$sqluser&DBpassword=$sqlpass&DBname=$sqldbcurl&DBPrefix=jos_&sitename=$title&siteUrl=http://$server/~$USER/$addrend&absolutePath=$pwd&adminEmail=$human%40mit.edu&adminPassword=$admin_password&filePerms=0&dirPerms=0\"");
    19 `curl -K $tmp http://$server/~$USER/$addrend/installation/install4.php 2>/dev/null`;
     26
     27print "=== $base_uri ===\n";
     28   
     29fetch_uri(
     30    'installation/install4.php',
     31    {},
     32    {DBhostname => $sqlhost,
     33     DBuserName => $sqluser,
     34     DBpassword => $sqlpass,
     35     DBname => $sqldb,
     36     DBPrefix => 'jos_',
     37     sitename => $title,
     38     siteUrl => $base_uri,
     39     absolutePath => $pwd,
     40     adminEmail => "$human\@mit.edu",
     41     adminPassword => $admin_password,
     42     filePerms => 0,
     43     dirPerms => 0});
    2044
    2145`rm -rf installation`;
Note: See TracChangeset for help on using the changeset viewer.