We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
XE 1.7.3.4
cafeXE 1.7.0.1
위 버전에서 카페 생성 -> Domain 접속으로 생성하신 후에 카페관리에 들어가실려면 '잘못된 요청입니다.' 라고 표시되면서 접속이 안되는 증상이 있습니다. 해당 증상은 아래와 같은 경우만 발생합니다.
도메인이 하나만 있고 카페XE로 이용하려면 사실상 이용을 할 수 없기 때문에 아래와 같은 조치를 취해주시면 해결 됩니다.
./modules/module/module.model.php
/** * @brief Get the defaul mid according to the domain */ function getDefaultMid() { $default_url = preg_replace('/\/$/','',Context::getDefaultUrl()); $request_url = preg_replace('/\/$/','',Context::getRequestUri()); $default_url_parse = parse_url($default_url); $request_url_parse = parse_url($request_url); $vid = Context::get('vid'); $mid = Context::get('mid'); // Set up // test.xe.com $domain = ''; if($default_url && $default_url_parse['host'] != $request_url_parse['host']) { $url_info = parse_url($request_url); $hostname = $url_info['host']; $path = preg_replace('/\/$/','',$url_info['path']); $domain = sprintf('%s%s%s', $hostname, $url_info['port']&&$url_info['port']!=80?':'.$url_info['port']:'',$path); }
위 $default_url &&을 제거하시고 관리자페이지 기본 URL을 공란으로 두시면 해결 됩니다.
The text was updated successfully, but these errors were encountered:
5270c68
Sorry, something went wrong.
largeden
No branches or pull requests
XE 1.7.3.4
cafeXE 1.7.0.1
위 버전에서 카페 생성 -> Domain 접속으로 생성하신 후에 카페관리에 들어가실려면 '잘못된 요청입니다.' 라고 표시되면서 접속이 안되는 증상이 있습니다. 해당 증상은 아래와 같은 경우만 발생합니다.
도메인이 하나만 있고 카페XE로 이용하려면 사실상 이용을 할 수 없기 때문에 아래와 같은 조치를 취해주시면 해결 됩니다.
./modules/module/module.model.php
위 $default_url &&을 제거하시고 관리자페이지 기본 URL을 공란으로 두시면 해결 됩니다.
The text was updated successfully, but these errors were encountered: