[355] | 1 | <?php
|
---|
[410] | 2 | // used wptouch plugin & iPhone access check (thx uemu)
|
---|
| 3 | function is_iphone_with_wptouch(){
|
---|
| 4 | global $wptouch_plugin;
|
---|
| 5 | if (is_object($wptouch_plugin)) return $wptouch_plugin->applemobile;
|
---|
| 6 | return false;
|
---|
| 7 | }
|
---|
| 8 |
|
---|
[650] | 9 | function comment_quicktags_plus_patch(){
|
---|
| 10 | $active_plugins = get_option('active_plugins');
|
---|
[652] | 11 | foreach($active_plugins as $active_plugin){
|
---|
| 12 | if(preg_match('/comment_quicktags_plus\.php/',$active_plugin)) ob_end_flush();
|
---|
[650] | 13 | }
|
---|
| 14 | }
|
---|
[454] | 15 | function safe_site_url(){
|
---|
[524] | 16 | global $xoops_config,$blog_id,$blogname;
|
---|
[454] | 17 |
|
---|
| 18 | if (is_xpress_index_page_call()){
|
---|
[548] | 19 |
|
---|
| 20 | if (!empty($_POST['submit_url_change'])) {
|
---|
| 21 | if (!empty($_POST['site_url_set'])) {
|
---|
| 22 | update_option('siteurl' , $_POST['site_url_set']);
|
---|
| 23 | }
|
---|
| 24 | if (!empty($_POST['home_url_set'])) {
|
---|
| 25 | update_option('home' , $_POST['home_url_set']);
|
---|
| 26 | }
|
---|
| 27 | }
|
---|
[549] | 28 | if (!empty($_POST['submit_redirect'])) {
|
---|
| 29 | $url = get_option('home') . '/wp-admin/options-permalink.php';
|
---|
| 30 | // echo $url;
|
---|
| 31 | wp_redirect($url);
|
---|
| 32 | exit();
|
---|
| 33 | }
|
---|
[548] | 34 |
|
---|
[454] | 35 | $siteurl = get_option('siteurl');
|
---|
| 36 | $home = get_option('home');
|
---|
| 37 | $module_url = $xoops_config->module_url;
|
---|
[475] | 38 | $module_name = $xoops_config->module_name;
|
---|
| 39 | $schema = ( isset($_SERVER['HTTPS']) && strtolower($_SERVER['HTTPS']) == 'on' ) ? 'https://' : 'http://';
|
---|
| 40 | $guess_url = preg_replace('|/' . $module_name . '/.*|i', '/' . $module_name, $schema . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'] );
|
---|
[524] | 41 | $blog_sub_path = '';
|
---|
[534] | 42 | if(function_exists('is_multisite') && is_multisite()){
|
---|
[567] | 43 | if ($blog_id > 0 && $blog_id != BLOG_ID_CURRENT_SITE){
|
---|
[524] | 44 | $blog_sub_path = '/' .$blogname;
|
---|
| 45 | }
|
---|
| 46 | }
|
---|
| 47 | $guess_url .= $blog_sub_path;
|
---|
[548] | 48 | $xoops_module_url = $module_url.$blog_sub_path;
|
---|
| 49 |
|
---|
| 50 | $site_url_error = false;
|
---|
| 51 | if(strcmp($siteurl,$guess_url) !== 0) {
|
---|
[454] | 52 | if (!@fclose(@fopen($siteurl . '/xoops_version.php', "r"))){
|
---|
[548] | 53 | $site_url_error = true;
|
---|
[454] | 54 | }
|
---|
| 55 | }
|
---|
[548] | 56 | $home_url_error = false;
|
---|
| 57 | if(strcmp($guess_url,$home) !== 0) {
|
---|
| 58 | $home_url_error = true;
|
---|
| 59 | }
|
---|
| 60 | if ($site_url_error || $home_url_error){
|
---|
| 61 | include $xoops_config->xoops_root_path ."/header.php";
|
---|
| 62 | $form = '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n";
|
---|
| 63 | $form .= '<table cellspacing="1" cellpadding="1" border="0">';
|
---|
| 64 | $form .= '<tbody>';
|
---|
| 65 | if ($site_url_error){
|
---|
[549] | 66 | $site_url_error_log = __('Can not access WordPress address (URL).','xpressme');
|
---|
[548] | 67 | $form .= '<tr><td colspan="3"><font color="red"><b>' . $site_url_error_log . '</b></font></td></tr>';
|
---|
| 68 | $form .= '<tr>';
|
---|
| 69 | $form .= '<td width="16"> </td>';
|
---|
[549] | 70 | $form .= '<td width="64">'.__('WordPress address (URL)').'</td>';
|
---|
| 71 | $form .= '<td>';
|
---|
| 72 | $form .= $siteurl . '<br />';
|
---|
| 73 | $form .= ' to<br />';
|
---|
| 74 | $form .= '<input name="site_url_set" type="text" size="64" maxlength="200" value="' . $guess_url . '" /></td>';
|
---|
[548] | 75 | $form .= '</tr>';
|
---|
[475] | 76 |
|
---|
[454] | 77 | }
|
---|
[548] | 78 | if ($home_url_error){
|
---|
| 79 | if ($site_url_error) $form .= '<tr><td colspan="3"> </td></tr>';;
|
---|
[549] | 80 | $home_url_error_log = __('WordPress Blog address (URL) is different from access URL.','xpressme');
|
---|
[548] | 81 | $form .= '<tr><td colspan="3"><font color="red"><b>' . $home_url_error_log . '</b></font></td></tr>';
|
---|
| 82 | $form .= '<tr>';
|
---|
| 83 | $form .= '<td width="16"> </td>';
|
---|
[549] | 84 | $form .= '<td width="144">'. __('Blog address (URL)') .'</td>';
|
---|
| 85 | $form .= '<td>';
|
---|
| 86 | $form .= $home . '<br />';
|
---|
| 87 | $form .= ' to<br />';
|
---|
| 88 | $form .= '<input name="home_url_set" type="text" size="64" maxlength="200" value="' . $guess_url . '" /></td>';
|
---|
[548] | 89 | $form .= '</tr>';
|
---|
| 90 | }
|
---|
| 91 | $form .= '</tbody>';
|
---|
| 92 | $form .= '</table><br />';
|
---|
[549] | 93 | $form .= '<input type="submit" value= "'.__('Save Changes').'" name="submit_url_change" />' ."\n";
|
---|
| 94 | $form .= '</form>' ."\n";
|
---|
[548] | 95 | echo $form;
|
---|
| 96 | include $xoops_config->xoops_root_path . '/footer.php';
|
---|
| 97 | exit();
|
---|
[454] | 98 | }
|
---|
[549] | 99 | if (!empty($_POST['home_url_set'])) {
|
---|
| 100 | $url = get_option('home') . '/wp-admin/options-permalink.php';
|
---|
| 101 | $form = '<form method="post" action="' . $_SERVER["REQUEST_URI"] . '">'."\n";
|
---|
| 102 | $form .= '<p><font color="blue"><b>'. __('After Blog address (URL) is set, it is necessary to set the permalink again.','xpressme').'</b></font></p>';
|
---|
| 103 | $form .= '<input type="submit" value= "'.__('Permalink Settings').'" name="submit_redirect" />' ."\n";
|
---|
| 104 | $form .= '</form>' ."\n";
|
---|
| 105 | include $xoops_config->xoops_root_path ."/header.php";
|
---|
| 106 | echo $form;
|
---|
| 107 | include $xoops_config->xoops_root_path . '/footer.php';
|
---|
| 108 | exit();
|
---|
| 109 | }
|
---|
| 110 |
|
---|
[454] | 111 | }
|
---|
| 112 | }
|
---|
| 113 |
|
---|
[355] | 114 | require_once( dirname( __FILE__ ).'/request_url.php');
|
---|
[551] | 115 | require_once( dirname( __FILE__ ).'/memory_limit.php');
|
---|
[355] | 116 | if (is_xpress_index_page_call()){
|
---|
[479] | 117 | //$_SERVER['REQUEST_METHOD'] = 'POST' is
|
---|
[360] | 118 | //When notifying by a private message, Notification_reserve_send();
|
---|
[358] | 119 | //it is evaded that the data base becomes read-only as a result of the check on the referrer and the method.
|
---|
[477] | 120 | $request_method = (isset($_SERVER['REQUEST_METHOD'])) ? $_SERVER['REQUEST_METHOD'] : '';
|
---|
[358] | 121 | $_SERVER['REQUEST_METHOD'] = 'POST';
|
---|
[355] | 122 | require_once $xoops_config->xoops_mainfile_path; //It is necessary to execute it for the user attestation before wp-settings.php.
|
---|
[477] | 123 | $_SERVER['REQUEST_METHOD'] = $request_method;
|
---|
[551] | 124 | xpress_set_memory_limmit(); // Set memory limmit.(Limmit Value from XPressMe modele config.)
|
---|
[479] | 125 | unset($offset); //This Trap is provides the case where $offset is defined on the XOOPS side.
|
---|
[355] | 126 | require_once(ABSPATH.'wp-settings.php');
|
---|
[454] | 127 |
|
---|
[479] | 128 | //When it is not possible to connect it correctly at site home URL on the WordPress side,
|
---|
| 129 | //URL is corrected based on accessed URL.
|
---|
[548] | 130 | global $xoopsUserIsAdmin;
|
---|
| 131 | if ($xoopsUserIsAdmin) safe_site_url();
|
---|
[454] | 132 |
|
---|
[355] | 133 | if (!is_object($xoopsUser)){ // before login auth cookie clear
|
---|
| 134 | wp_logout();
|
---|
| 135 | }
|
---|
| 136 | wp();
|
---|
| 137 |
|
---|
[421] | 138 | //for Event notification update on single post to which link is changed by permalink
|
---|
| 139 | if ( is_404() ) {
|
---|
| 140 | if (!empty($_POST['not_redirect'])) {
|
---|
| 141 | include '../../mainfile.php';
|
---|
| 142 | require_once XOOPS_ROOT_PATH.'/include/notification_update.php';
|
---|
| 143 | exit();
|
---|
| 144 | }
|
---|
| 145 | }
|
---|
| 146 |
|
---|
[355] | 147 | if (!function_exists('is_wordpress_style')){ // When the XPressME plug-in is invalid
|
---|
| 148 | require_once dirname( __FILE__ ).'/xpress_active_plugin.php' ;
|
---|
| 149 | xpress_pulugin_activation('xpressme/xpressme.php');
|
---|
| 150 | // reloaded
|
---|
| 151 | header('Location: ' . $xoops_config->module_url . '/');
|
---|
| 152 |
|
---|
| 153 | $err_str = "The activation of the XPressME plugin was executed.<br />\n";
|
---|
| 154 | $err_str .= "Because the XPressME plugin was invalid.<br />\n";
|
---|
| 155 | $err_str .= "Please do the rereading seeing on the page.\n";
|
---|
| 156 | die($err_str);
|
---|
| 157 | }
|
---|
[358] | 158 |
|
---|
| 159 | Notification_reserve_send();
|
---|
[355] | 160 | ob_start();
|
---|
[360] | 161 | if (version_compare($xoops_config->wp_version,'2.2', '<'))
|
---|
[355] | 162 | require_once dirname( __FILE__ ).'/old_template-loader.php' ;
|
---|
| 163 | else
|
---|
| 164 | require_once( ABSPATH . WPINC . '/template-loader.php' );
|
---|
[650] | 165 | comment_quicktags_plus_patch();
|
---|
[355] | 166 | $wp_output = ob_get_contents();
|
---|
| 167 | ob_end_clean();
|
---|
[576] | 168 |
|
---|
| 169 | // insert credit
|
---|
| 170 | $pattern = '<body';
|
---|
| 171 | $replace = "\n<!-- credit " . xpress_credit('echo=0&no_link=1') . " -->\n<body";
|
---|
| 172 | $wp_output = preg_replace("/" . $pattern . "/s", $replace, $wp_output);
|
---|
| 173 |
|
---|
[410] | 174 | //Rendering Select
|
---|
| 175 | if(
|
---|
| 176 | is_wordpress_style() // When the display mode is WordPress style
|
---|
| 177 | || is_feed() // It judges it here because it does in is_index_page() through feed to which the permalink is set.
|
---|
| 178 | || is_iphone_with_wptouch() // When iPhone access & used wptouch plugin (thx uemu)
|
---|
| 179 | ){
|
---|
[576] | 180 |
|
---|
[410] | 181 | echo $wp_output;
|
---|
[355] | 182 | } else {
|
---|
[410] | 183 | require_once( dirname( __FILE__ ).'/xpress_render.php' );
|
---|
| 184 | xpress_render($wp_output);
|
---|
[355] | 185 | }
|
---|
| 186 |
|
---|
| 187 | //When there is no block cache, and an optional block is different, cache is refreshed.
|
---|
| 188 | //When adding, and changing and deleting Post & Comment, block cache is refreshed by add_action at any time.
|
---|
| 189 | // This Function in xpressme plugin
|
---|
| 190 | require_once( dirname( __FILE__ ).'/xpress_block_render.php' );
|
---|
| 191 | xpress_unnecessary_block_cache_delete($xoops_config->module_name);
|
---|
[573] | 192 | if (is_home()) {
|
---|
| 193 | xpress_block_cache_refresh($xoops_config->module_name);
|
---|
| 194 | require_once( dirname( __FILE__ ).'/xpress_block_header.php' );
|
---|
| 195 | set_xpress_block_header($xoops_config->module_name);
|
---|
| 196 | }
|
---|
[355] | 197 | exit(); // The return to wp-blog-header.php is stolen here
|
---|
| 198 | }
|
---|
[360] | 199 | if (is_admin_post_call()) require_once $xoops_config->xoops_mainfile_path; // for Notification_triggerEvent
|
---|
| 200 | if (is_xpress_comments_post_call()) require_once $xoops_config->xoops_mainfile_path; // for Notification_triggerEvent
|
---|
[551] | 201 | xpress_set_memory_limmit(); // Set memory limmit.(Limmit Value from XPressMe modele config.)
|
---|
[355] | 202 | ?> |
---|