Esempio n. 1
0
/**
 * Display install header.
 *
 * @since 2.5.0
 * @package NXTClass
 * @subpackage Installer
 */
function display_header()
{
    header('Content-Type: text/html; charset=utf-8');
    ?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" <?php 
    language_attributes();
    ?>
>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title><?php 
    _e('NXTClass &rsaquo; Installation');
    ?>
</title>
	<?php 
    nxt_admin_css('install', true);
    ?>
</head>
<body<?php 
    if (is_rtl()) {
        echo ' class="rtl"';
    }
    ?>
>
<h1 id="logo"><img alt="NXTClass" src="images/nxtclass-logo.png" /></h1>

<?php 
}
Esempio n. 2
0
 /**
  * Tries to ping a specific service showing as much as debug output as possible
  * @since 3.1.9
  * @return null
  */
 function ShonxtingResult()
 {
     check_admin_referer('sitemap');
     if (!current_user_can("administrator")) {
         echo '<p>Please log in as admin</p>';
         return;
     }
     $service = !empty($_GET["sm_ping_service"]) ? $_GET["sm_ping_service"] : null;
     $status =& GoogleSitemapGeneratorStatus::Load();
     if (!$status) {
         die("No build status yet. Build the sitemap first.");
     }
     $url = null;
     switch ($service) {
         case "google":
             $url = $status->_googleUrl;
             break;
         case "msn":
             $url = $status->_msnUrl;
             break;
         case "ask":
             $url = $status->_askUrl;
             break;
     }
     if (empty($url)) {
         die("Invalid ping url");
     }
     echo '<html><head><title>Ping Test</title>';
     if (function_exists('nxt_admin_css')) {
         nxt_admin_css('css/global', true);
     }
     echo '</head><body><h1>Ping Test</h1>';
     echo '<p>Trying to ping: <a href="' . $url . '">' . $url . '</a>. The sections below should give you an idea whats going on.</p>';
     //Try to get as much as debug / error output as possible
     $errLevel = error_reporting(E_ALL);
     $errDisplay = ini_set("display_errors", 1);
     if (!defined('nxt_DEBUG')) {
         define('nxt_DEBUG', true);
     }
     echo '<h2>Errors, Warnings, Notices:</h2>';
     if (nxt_DEBUG == false) {
         echo "<i>nxt_DEBUG was set to false somewhere before. You might not see all debug information until you remove this declaration!</i><br />";
     }
     if (ini_get("display_errors") != 1) {
         echo "<i>Your display_errors setting currently prevents the plugin from showing errors here. Please check your webserver logfile instead.</i><br />";
     }
     $res = $this->RemoteOpen($url);
     echo '<h2>Result (text only):</h2>';
     echo nxt_kses($res, array('a' => array('href' => array()), 'p' => array(), 'ul' => array(), 'ol' => array(), 'li' => array()));
     echo '<h2>Result (HTML):</h2>';
     echo htmlspecialchars($res);
     //Revert back old values
     error_reporting($errLevel);
     ini_set("display_errors", $errDisplay);
     echo '</body></html>';
     exit;
 }
Esempio n. 3
0
			<html xmlns="http://www.w3.org/1999/xhtml" <?php 
            if (function_exists('language_attributes')) {
                language_attributes();
            }
            ?>
>
				<head>
					<title><?php 
            _e('NXTClass &rsaquo; Confirm your action');
            ?>
</title>

					<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
					<?php 
            nxt_admin_css('install', true);
            nxt_admin_css('ie', true);
            ?>
				</head>
				<body>
					<h1 id="logo"><img alt="NXTClass" src="<?php 
            echo esc_attr(admin_url('images/nxtclass-logo.png'));
            ?>
" /></h1>
					<form action="sites.php?action=<?php 
            echo esc_attr($_GET['action2']);
            ?>
" method="post">
						<input type="hidden" name="action" value="<?php 
            echo esc_attr($_GET['action2']);
            ?>
" />
Esempio n. 4
0
function bp_forums_bbpress_install_wizard()
{
    $post_url = network_admin_url('admin.php?page=bb-forums-setup');
    $step = isset($_REQUEST['step']) ? $_REQUEST['step'] : '';
    switch ($step) {
        case 'existing':
            if (isset($_REQUEST['doinstall']) && 1 == (int) $_REQUEST['doinstall']) {
                if (!bp_forums_configure_existing_install()) {
                    _e('The bb-config.php file was not found at that location, please try again.', 'buddypress');
                } else {
                    ?>
					<h3><?php 
                    _e('Forums were set up correctly using your existing bbPress install!', 'buddypress');
                    ?>
</h3>
					<p><?php 
                    _e('BuddyPress will now use its internal copy of bbPress to run the forums on your site. If you wish, you can remove your old bbPress installation files, as long as you keep the bb-config.php file in the same location.', 'buddypress');
                    ?>
</p><?php 
                }
            } else {
                ?>

					<form action="" method="post">
						<h3><?php 
                _e('Existing bbPress Installation', 'buddypress');
                ?>
</h3>
						<p><?php 
                _e("BuddyPress can make use of your existing bbPress install. Just provide the location of your <code>bb-config.php</code> file, and BuddyPress will do the rest.", 'buddypress');
                ?>
</p>
						<p><label><code>bb-config.php</code> file location:</label><br /><input style="width: 50%" type="text" name="bbconfigloc" id="bbconfigloc" value="<?php 
                echo str_replace('buddypress', '', $_SERVER['DOCUMENT_ROOT']);
                ?>
" /></p>
						<p><input type="submit" class="button-primary" value="<?php 
                _e('Complete Installation', 'buddypress');
                ?>
" /></p>
						<input type="hidden" name="step" value="existing" />
						<input type="hidden" name="doinstall" value="1" />
						<?php 
                nxt_nonce_field('bp_forums_existing_install_init');
                ?>
					</form>

				<?php 
            }
            break;
        case 'new':
            if (isset($_REQUEST['doinstall']) && 1 == (int) $_REQUEST['doinstall']) {
                $result = bp_forums_bbpress_install();
                switch ($result) {
                    case 1:
                        _e('<p>All done! Configuration settings have been saved to the file <code>bb-config.php</code> in the root of your NXTClass install.</p>', 'buddypress');
                        break;
                    default:
                        // Just write the contents to screen
                        _e('<p>A configuration file could not be created. No problem, but you will need to save the text shown below into a file named <code>bb-config.php</code> in the root directory of your NXTClass installation before you can start using the forum functionality.</p>', 'buddypress');
                        ?>

						<textarea style="display:block; margin-top: 30px; width: 80%;" rows="50"><?php 
                        echo htmlspecialchars($result);
                        ?>
</textarea>

					<?php 
                        break;
                }
            } else {
                ?>

				<h3><?php 
                _e('New bbPress Installation', 'buddypress');
                ?>
</h3>
				<p><?php 
                _e("You've decided to set up a new installation of bbPress for forum management in BuddyPress. This is very simple and is usually just a one click\n\t\t\t\tprocess. When you're ready, hit the link below.", 'buddypress');
                ?>
</p>
				<p><a class="button-primary" href="<?php 
                echo nxt_nonce_url($post_url . '&step=new&doinstall=1', 'bp_forums_new_install_init');
                ?>
"><?php 
                _e('Complete Installation', 'buddypress');
                ?>
</a></p>

				<?php 
            }
            break;
        default:
            if (!file_exists(BP_PLUGIN_DIR . '/bp-forums/bbpress/')) {
                ?>

				<div id="message" class="error">
					<p><?php 
                printf(__('bbPress files were not found. To install the forums component you must download a copy of bbPress and make sure it is in the folder: "%s"', 'buddypress'), 'nxt-content/plugins/buddypress/bp-forums/bbpress/');
                ?>
</p>
				</div>

			<?php 
            } else {
                // Include the plugin install
                add_thickbox();
                nxt_enqueue_script('plugin-install');
                nxt_admin_css('plugin-install');
                ?>

				<div style="width: 45%; float: left;  margin-top: 20px;">
					<h3><?php 
                _e('Forums for Groups', 'buddypress');
                ?>
</h3>

					<p><?php 
                _e('Give each individual group its own discussion forum. Choose this if you\'d like to keep your members\' conversations separated into distinct areas.', 'buddypress');
                ?>
</p>
					<p class="description"><?php 
                _e('You may use an existing bbPress installation if you have one.', 'buddypress');
                ?>
</p>

					<h4 style="margin-bottom: 10px;"><?php 
                _e('Features', 'buddypress');
                ?>
</h4>
					<ul class="description" style="list-style: square; margin-left: 30px;">
						<li><?php 
                _e('Group Integration', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('Member Profile Integration', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('Activity Stream Integration', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('@ Mention Integration', 'buddypress');
                ?>
</p></li>
					</ul>

					<div>
						<a class="button button-primary" href="<?php 
                echo $post_url . '&step=new';
                ?>
"><?php 
                _e('Install Group Forums', 'buddypress');
                ?>
</a> &nbsp;
						<a class="button" href="<?php 
                echo $post_url . '&step=existing';
                ?>
"><?php 
                _e('Use Existing Installation', 'buddypress');
                ?>
</a>
					</div>
				</div>

				<div style="width: 45%; float: left; margin: 20px 0 20px 20px; padding: 0 20px 20px 20px; border: 1px solid #ddd; background-color: #fff;">
					<h3><?php 
                _e('New! Site Wide Forums', 'buddypress');
                ?>
</h3>
					<p><?php 
                _e('Your site will have central forums that are not isolated to any specific group. Choose this if you\'d like to have a central forum area for your members.', 'buddypress');
                ?>
</p>
					<p class="description"><?php 
                _e('You may activate both Group and Site Wide forums, but this may create a poor experience for your members.', 'buddypress');
                ?>
</p>

					<h4 style="margin-bottom: 10px;"><?php 
                _e('Features', 'buddypress');
                ?>
</h4>
					<ul class="description" style="list-style: square; margin-left: 30px;">
						<li><?php 
                _e('Central Discussion Area', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('Forum Plugins Available', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('Activity Stream Integration', 'buddypress');
                ?>
</p></li>
						<li><?php 
                _e('@ Mention Integration', 'buddypress');
                ?>
</p></li>
					</ul>
					<div>
						<a class="button thickbox button-primary" href="<?php 
                bp_admin_url(add_query_arg(array('tab' => 'plugin-information', 'plugin' => 'bbpress', 'TB_iframe' => 'true', 'width' => '640', 'height' => '500'), 'plugin-install.php'));
                ?>
"><?php 
                _e('Install Site Wide Forums', 'buddypress');
                ?>
</a> &nbsp;
					</div>
				</div>

			<?php 
            }
            break;
    }
}
Esempio n. 5
0
>
<head>
<meta http-equiv="Content-Type" content="<?php 
bloginfo('html_type');
?>
; charset=<?php 
echo get_option('blog_charset');
?>
" />
<title><?php 
_e('Rich Editor Help');
?>
</title>
<script type="text/javascript" src="tiny_mce_popup.js?ver=342"></script>
<?php 
nxt_admin_css('nxt-admin', true);
?>
<style type="text/css">
	body {
		min-width: 0;
	}
	#nxthead {
		font-size: 80%;
		border-top: 0;
		color: #555;
		background-color: #f1f1f1;
	}
	#nxthead h1 {
		font-size: 24px;
		color: #555;
		margin: 0;
Esempio n. 6
0
require_once '../../nxt-load.php';
header('Content-Type: text/html; charset=utf-8');
?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" <?php 
language_attributes();
?>
>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title><?php 
_e('NXTClass &rsaquo; Database Repair');
?>
</title>
	<?php 
nxt_admin_css('install', true);
?>
</head>
<body>
<h1 id="logo"><img alt="NXTClass" src="../images/nxtclass-logo.png" /></h1>

<?php 
if (!defined('nxt_ALLOW_REPAIR')) {
    echo '<p>' . __('To allow use of this page to automatically repair database problems, please add the following line to your nxt-config.php file.  Once this line is added to your config, reload this page.') . "</p><code>define('nxt_ALLOW_REPAIR', true);</code>";
} elseif (isset($_GET['repair'])) {
    check_admin_referer('repair_db');
    if (2 == $_GET['repair']) {
        $optimize = true;
    } else {
        $optimize = false;
    }
Esempio n. 7
0
function openid_page($message, $title = '')
{
    global $nxt_locale;
    ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" <?php 
    language_attributes();
    ?>
>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<title><?php 
    echo $title;
    ?>
</title>
<?php 
    nxt_admin_css('install', true);
    if ($nxt_locale && 'rtl' == $nxt_locale->text_direction) {
        nxt_admin_css('login-rtl', true);
    }
    do_action('admin_head');
    do_action('openid_page_head');
    ?>
</head>
<body id="openid-page">
	<?php 
    echo $message;
    ?>
</body>
</html>
<?php 
    die;
}