Custom Query (196 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (112 - 114 of 196)

Ticket Resolution Summary Owner Reporter
#68 worksforme Trying to make a cert-protected WordPress results in a redirection loop andersk
Description

If you create a WordPress? (with or without price’s r725), and add a .htaccess file like

AuthType SSLCert
Require afsgroup system:scripts-moira
ErrorDocument 401 /__scripts/needcerts

you get an infinite redirection loop (http -> https:444 -> https -> https:444).

Examples: without r725, with r725.

#252 fixed TurboGears FCGI stub needs to be updated for F15 geofft
Description

Apparently commands.py is now command.py, so you need this tiny patch to flup.fcgi and everything works:

  • flup.fcgi

     
    1616
    1717sys.path.append(code_dir)
    1818
    19 __import__(package_name+'.commands') # Make sure its requirements get satisfied
     19__import__(package_name+'.command') # Make sure its requirements get satisfied
    2020
    2121# -- END USER EDIT SECTION

But it looks like flup.fcgi is in /mit/scripts/deploy/turbogears.tar.gz and not particularly versioned?

Also, in any case, the app seems to think its root directory is /, not the directory you installed it into.

#62 fixed Unbreak phpMyAdmin andersk
Description

The phpMyAdmin installation(s) in the sql locker are old and somewhat screwed up. geofft was going to fix this but he went to sleep, so I’m recording the necessary steps here as a reminder.

  • svn co https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/tags/STABLE/phpMyAdmin
  • Copy config.sample.inc.php to config.inc.php.
    • Set $cfg['blowfish_secret'] to a secure random value.
    • Set $cfg['Servers'][$i]['host'] = 'sql.mit.edu'
    • Set $cfg['Servers'][$i]['extension'] = 'mysqli'
    • Set $cfg['ForceSSL'] = TRUE
  • Copy /etc/php.ini to php.ini.
    • Add the mcrypt and mysqli extensions.

The patches and .htaccess redirect are then unnecessary, and future upgrades will be as simple as svn up. (Example: <https://andersk.scripts.mit.edu/phpMyAdmin/>.)

Note: See TracQuery for help on using queries.