]> andersk Git - sql-web.git/commitdiff
Don't advertise /do/signup; it doesn't write a my.cnf
authorQuentin Smith <quentin@mit.edu>
Fri, 8 Jan 2010 06:18:09 +0000 (06:18 +0000)
committerQuentin Smith <quentin@mit.edu>
Fri, 8 Jan 2010 06:18:09 +0000 (06:18 +0000)
git-svn-id: svn://presbrey.mit.edu/sql/web/main@180 a142d4bd-2cfb-0310-9673-cb33a7e74f58

login.php
tpl/index.php
tpl/menu.php

index 48588930438b22573df3ab27423bad0bdf6a2f4a..32a4461b6db6726b133e3e93ec66888d85c2d1d8 100644 (file)
--- a/login.php
+++ b/login.php
@@ -21,7 +21,7 @@ if (isPost() && empty($err)) {
        }
        
        if ($Login->exists() && !$Login->isEnabled()) {
-               $err[] = 'Account not active. <a href="do/signup">Did you signup yet?</a>.';
+               $err[] = 'Account not active.';
        } elseif (!$Login->exists()) {
                $err[] = 'Nonexistant account or invalid password.';
        } elseif (!$Login->canLogin()) {
index f235d5618b768095b42575113b9ded2b3994304a..d48d031220fa0f272539f982c9fe585b0a1ae98e 100644 (file)
@@ -4,7 +4,7 @@ include 'head.php';
 
 <p>
 This service provides <a target="_blank" href="http://dev.mysql.com/doc">MySQL</a> databases to <a target="_blank" href="http://ca.mit.edu/">MIT certificate</a> holders.
-You must choose a MySQL password (which should be different from your Athena account password) when you <a href="do/signup">sign up</a>, and
+You must choose a MySQL password (which should be different from your Athena account password) when you <a href="http://scripts.mit.edu/faq/27">sign up</a>, and
 then use this interface to create and drop databases.  All subsequent SQL commands can be issued from any host, client, and/or script of your choice;
 simply connect to the MySQL server at <b>sql.mit.edu</b> using your username and your new MySQL password.
 You may find it convenient to run scripts using the <a target="_blank" href="http://scripts.mit.edu/web">web script service</a> or
index b96bb464febd04d5a27a84f3602ae6ab15119b6c..2bd5a09328a039b39f6505c9967140ed48bc10b6 100644 (file)
@@ -20,7 +20,7 @@ Logged in: <em><?=$loggedInText?>@<?=DBHOST?></em>&nbsp;
 </div>
 <?php else: ?>
 <div style="float:left;">
-<li><a href="do/signup">Sign up</a></li>
+<li><a href="http://scripts.mit.edu/faq/27">Sign up</a></li>
 <li><a href="https://scripts.mit.edu/~sql/phpMyAdmin/" target="_blank">phpMyAdmin</a></li>
 <?php if (DEBUG) { ?>
 <li><a href="do/index">Home</a></li>
This page took 0.071195 seconds and 5 git commands to generate.