Thanks for the plugin. I’m trying to get it working, but when I click the link in the post screen, I get a blank window for /wp-admin/image-browser.php. There’s no error, and the page has a title, but there is nothing on the screen.
If I view the source, I see this, which looks correct:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="https://www.w3.org/1999/xhtml">
<head>
<title>WordPress › Radical Congruency › Select Image</title>
<link rel="stylesheet" href="wp-admin.css" type="text/css" />
<link rel="shortcut icon" href="../wp-images/wp-favicon.png" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript">
<!--
window.focus();
// a nifty little script from Alex King (https://www.alexking.org)
function insertAtCursor(myField, myValue) {
//IE support
if (document.selection) {
myField.focus();
sel = document.selection.createRange();
sel.text = myValue;
}
//MOZILLA/NETSCAPE support
else if (myField.selectionStart || myField.selectionStart == '0') {
var startPos = myField.selectionStart;
var endPos = myField.selectionEnd;
myField.value = myField.value.substring(0, startPos)
+ myValue
+ myField.value.substring(endPos, myField.value.length);
} else {
myField.value += myValue;
}
}
//-->
</script>
<style type="text/css">
#iiwrapper { margin: 8px; padding: 0;}
.image { background: #eeeeee; margin: 0 0 12px 0; padding: 4px; border: 1px solid #cccccc; }
.image h1 { font-size: 1em; padding:0; margin: 0 0 8px 0; }
.description { margin: 6px 0 0 0; }
</style>
</head>
<body>
<div id="iiwrapper">
</div><!-- iiwrapper -->
</body>
</html>
I tried setting permissions to 755 and 777, but still nothing. Any ideas? Thanks!