脚本的基目录

发布于 2024-11-17 10:53:53 字数 709 浏览 0 评论 0原文

我正在制作 twitter 应用程序,当我调用callback.php 时它显示一些错误 这是我的callback.php的一部分,我认为它有一些问题

////// First establish base directory for app
define('QA_BASE_DIR', dirname(empty($_SERVER['SCRIPT_FILENAME']) ? __FILE__ : $_SERVER['SCRIPT_FILENAME']).'/../../');

$qainc=$_SERVER['DOCUMENT_ROOT'] . '/qa-include';        //second

$piinc=$_SERVER['DOCUMENT_ROOT'] . '/qa-plugin';

/* Start session and load lib */
session_start();

require_once $piinc. '/twitter-oauth-login/twitteroauth/twitteroauth.php';
require_once $piinc. '/twitter-oauth-login/config.php';

,我想要我的目录url,所以我写第二行 www.domain.com/qa-plugin ----- 我想要这个网址,但这个命令返回这个地址 “/usr/local/apache/htdocs/qa-include” 如何纠正错误请帮我......

i am making twitter application when i call callback.php it shows some error
here is some part of my callback.php where i think it has some problem

////// First establish base directory for app
define('QA_BASE_DIR', dirname(empty($_SERVER['SCRIPT_FILENAME']) ? __FILE__ : $_SERVER['SCRIPT_FILENAME']).'/../../');

$qainc=$_SERVER['DOCUMENT_ROOT'] . '/qa-include';        //second

$piinc=$_SERVER['DOCUMENT_ROOT'] . '/qa-plugin';

/* Start session and load lib */
session_start();

require_once $piinc. '/twitter-oauth-login/twitteroauth/twitteroauth.php';
require_once $piinc. '/twitter-oauth-login/config.php';

i want my directory url so i write second line
www.domain.com/qa-plugin ----- i want this url but this command return this address
"/usr/local/apache/htdocs/qa-include"
how to correct error please help me out....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

再可℃爱ぅ一点好了 2024-11-24 10:53:53
getcwd(); //returns the current directory

更多信息

getcwd(); //returns the current directory

More info

ヤ经典坏疍 2024-11-24 10:53:53

$_SERVER['DOCUMENT_ROOT'] 更改为 $_SERVER['SERVER_NAME']

Change $_SERVER['DOCUMENT_ROOT'] to $_SERVER['SERVER_NAME']

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文