- Timestamp:
- 2007/03/13 10:06:10 (16 years ago)
- Location:
- branches/dev
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/data/conf/mobile.conf
r11811 r11813 19 19 //-------------------------------------------------------------------------------------------------------- 20 20 // conf.php ¤ÇÄêµÁ¤µ¤ì¤ëÄê¿ô¤Î¤¦¤Á¡¢¥â¥Ð¥¤¥ë¥µ¥¤¥ÈÍѤËÊѹ¹¤¬É¬Íפʤâ¤Î 21 /* 21 22 define ('MOBILE_HTML_PATH', HTML_PATH); 22 23 define ('MOBILE_URL_DIR', URL_DIR); 23 24 define ('MOBILE_SITE_URL', SITE_URL); 24 25 define ('MOBILE_SSL_URL', SSL_URL); 25 26 */ 26 27 define('TEMPLATE_DIR', DATA_PATH . 'Smarty/templates/mobile'); // SMARTY¥Æ¥ó¥×¥ì¡¼¥È 27 28 define('COMPILE_DIR', DATA_PATH . 'Smarty/templates_c/mobile'); // SMARTY¥³¥ó¥Ñ¥¤¥ë -
branches/dev/data/include/mobile.inc
r11460 r11813 355 355 356 356 list($session_id, $next_url, $email) = $arrRow; 357 $objURL = new Net_URL( SITE_URL . $next_url);357 $objURL = new Net_URL(MOBILE_SITE_URL . $next_url); 358 358 $objURL->addQueryString(session_name(), $session_id); 359 359 $url = $objURL->getURL(); -
branches/dev/html/mobile/entry/index.php
r11690 r11813 43 43 //SSLURLȽÄê 44 44 if (SSLURL_CHECK == 1){ 45 $ssl_url= sfRmDupSlash( SSL_URL.$_SERVER['REQUEST_URI']);45 $ssl_url= sfRmDupSlash(MOBILE_SSL_URL.$_SERVER['REQUEST_URI']); 46 46 if (!ereg("^https://", $non_ssl_url)){ 47 47 sfDispSiteError(URL_ERROR); … … 183 183 // ¶õ¥á¡¼¥ë¤ò¼õ¿®ºÑ¤ß¤Î¾ì¹ç¤Ï¤¹¤°¤ËËÜÅÐÏ¿´°Î»¤Ë¤¹¤ë¡£ 184 184 if (isset($_SESSION['mobile']['kara_mail_from'])) { 185 header("Location:" . gfAddSessionId( URL_DIR . "regist/index.php?mode=regist&id=" . $objPage->uniqid));185 header("Location:" . gfAddSessionId(MOBILE_URL_DIR . "regist/index.php?mode=regist&id=" . $objPage->uniqid)); 186 186 exit; 187 187 } -
branches/dev/html/mobile/magazine/confirm.php
r11686 r11813 66 66 $CONF = sf_getBasisData(); 67 67 $objPage->CONF = $CONF; 68 $objPage->tpl_url = gfAddSessionId( SSL_URL . "magazine/" . $_REQUEST['mode'] . ".php?id=" . $uniqId);68 $objPage->tpl_url = gfAddSessionId(MOBILE_SSL_URL . "magazine/" . $_REQUEST['mode'] . ".php?id=" . $uniqId); 69 69 70 70 $objMailText = new SC_SiteView(); -
branches/dev/html/mobile/redirect.php
r11686 r11813 20 20 header("Location: $next_url"); 21 21 } else { 22 header('Location: ' . SITE_URL);22 header('Location: ' . MOBILE_SITE_URL); 23 23 } 24 24 ?>
Note: See TracChangeset
for help on using the changeset viewer.