<tfoot id='MvOya'></tfoot>

      <i id='MvOya'><tr id='MvOya'><dt id='MvOya'><q id='MvOya'><span id='MvOya'><b id='MvOya'><form id='MvOya'><ins id='MvOya'></ins><ul id='MvOya'></ul><sub id='MvOya'></sub></form><legend id='MvOya'></legend><bdo id='MvOya'><pre id='MvOya'><center id='MvOya'></center></pre></bdo></b><th id='MvOya'></th></span></q></dt></tr></i><div id='MvOya'><tfoot id='MvOya'></tfoot><dl id='MvOya'><fieldset id='MvOya'></fieldset></dl></div>
      • <bdo id='MvOya'></bdo><ul id='MvOya'></ul>

      <small id='MvOya'></small><noframes id='MvOya'>

      <legend id='MvOya'><style id='MvOya'><dir id='MvOya'><q id='MvOya'></q></dir></style></legend>
    1. 使用框架将独立脚本连接到 joomla DB

      Connect standalone script to joomla DB using framework(使用框架将独立脚本连接到 joomla DB)

        • <small id='gWE7B'></small><noframes id='gWE7B'>

          • <i id='gWE7B'><tr id='gWE7B'><dt id='gWE7B'><q id='gWE7B'><span id='gWE7B'><b id='gWE7B'><form id='gWE7B'><ins id='gWE7B'></ins><ul id='gWE7B'></ul><sub id='gWE7B'></sub></form><legend id='gWE7B'></legend><bdo id='gWE7B'><pre id='gWE7B'><center id='gWE7B'></center></pre></bdo></b><th id='gWE7B'></th></span></q></dt></tr></i><div id='gWE7B'><tfoot id='gWE7B'></tfoot><dl id='gWE7B'><fieldset id='gWE7B'></fieldset></dl></div>
                <tbody id='gWE7B'></tbody>
              • <bdo id='gWE7B'></bdo><ul id='gWE7B'></ul>

                <tfoot id='gWE7B'></tfoot>
                <legend id='gWE7B'><style id='gWE7B'><dir id='gWE7B'><q id='gWE7B'></q></dir></style></legend>
                本文介绍了使用框架将独立脚本连接到 joomla DB的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我目前正在编写一个脚本,该脚本将作为 cronjob 运行,以使用 joomla 数据库中的值进行一些计算,因为该脚本不会通过 joomla 作为插件等访问,我需要与它进行数据库连接.

                Im currently writing a script which will be run as a cronjob to do some calculations using values out of the joomla database, Because this script is not going to be accessed via joomla as a plugin etc i need to do DB connections with it.

                我试图做的是使用 Joomla 框架来完成所有工作(连接、查询等),以实现安全性和可移植性(而不是在此脚本中使用另一组登录凭据,所有这些都由 Joomla 处理)配置)

                What im attempting to do is use the Joomla framework to do all the work(Connection, queries, etc) for security and also portability purposes (instead of having another set of the login credentials in this script its all handled by the Joomla config)

                我已经尽力了,但是当我运行脚本时出现以下错误:

                I have done the best i can but when i run the script i get the following error:

                Database Error: Unable to connect to the database:Could not connect to MySQL
                

                我已经打印出变量并确保 mysql 的连接详细信息是正确的(它们是正确的).

                I have printed out the variable and made sure that the connection details for mysql are correct (which they are).

                我当前的代码是:

                <?php
                //init Joomla Framework
                define( '_JEXEC', 1 );
                define( 'JPATH_BASE', realpath(dirname(__FILE__).'/..' ));
                define( 'DS', DIRECTORY_SEPARATOR );
                
                require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
                require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );
                require_once( JPATH_CONFIGURATION   .DS.'configuration.php' );
                require_once ( JPATH_BASE .DS.'includes'.DS.'database.php' );
                require_once ( JPATH_LIBRARIES .DS.'joomla'.DS.'import.php' );
                
                //DB Connection
                $Config = new JConfig();
                
                $option['driver']   = $Config->dbtype;   // Database driver name
                $option['host']     = $Config->host;     // Database host name
                $option['user']     = $Config->user;     // User for database authentication
                $option['password'] = $Config->password; // Password for database authentication
                $option['database'] = $Config->db;       // Database name
                $option['prefix']   = $Config->dbprefix; // Database prefix (may be empty)
                
                $db = & JDatabase::getInstance($option);
                
                //DBQuery
                $database =& JFactory::getDBO();
                $query = "SELECT * FROM #__chronoforms_RD_NonDangerousGoods WHERE cf_id = 4;";
                $database->setQuery($query);
                $result = $database->query();
                print_r($result);
                ?>
                

                推荐答案

                试试这个

                   <?php
                        //init Joomla Framework
                        define( '_JEXEC', 1 );
                        define( 'DS', DIRECTORY_SEPARATOR );
                        define( 'JPATH_BASE', realpath(dirname(__FILE__).DS.'..' ));
                
                
                        require_once ( JPATH_BASE .DS.'includes'.DS.'defines.php' );
                        require_once ( JPATH_BASE .DS.'includes'.DS.'framework.php' );
                
                        $mainframe = JFactory::getApplication('site');
                
                        //DBQuery
                        $database =& JFactory::getDBO();
                        $query = "SELECT * FROM #__chronoforms_RD_NonDangerousGoods WHERE cf_id = 4;";
                        $database->setQuery($query);
                        $result = $database->query();
                        print_r($result);
                    ?>
                

                这篇关于使用框架将独立脚本连接到 joomla DB的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Is Joomla 2.5 much faster than Joomla 1.5 Querywise(Joomla 2.5 比 Joomla 1.5 Querywise 快得多吗)
                How to share Joomla login session from one joomla website to one ASP.Net MVC website(如何将 Joomla 登录会话从一个 joomla 网站共享到一个 ASP.Net MVC 网站)
                htaccess redirect root to subdirectory but allow index.php in root AND query strings to function(htaccess 将根重定向到子目录,但允许根和查询字符串中的 index.php 起作用)
                Joomla include database functions(Joomla 包含数据库功能)
                nl2br() not working when displaying SQL results(显示 SQL 结果时 nl2br() 不起作用)
                Joomla 2.5 JFactory::getSession(); seems to be caching in firefox(Joomla 2.5 JFactory::getSession();似乎在 Firefox 中缓存)

                    • <i id='dBoXG'><tr id='dBoXG'><dt id='dBoXG'><q id='dBoXG'><span id='dBoXG'><b id='dBoXG'><form id='dBoXG'><ins id='dBoXG'></ins><ul id='dBoXG'></ul><sub id='dBoXG'></sub></form><legend id='dBoXG'></legend><bdo id='dBoXG'><pre id='dBoXG'><center id='dBoXG'></center></pre></bdo></b><th id='dBoXG'></th></span></q></dt></tr></i><div id='dBoXG'><tfoot id='dBoXG'></tfoot><dl id='dBoXG'><fieldset id='dBoXG'></fieldset></dl></div>
                      <tfoot id='dBoXG'></tfoot>
                    • <small id='dBoXG'></small><noframes id='dBoXG'>

                        <tbody id='dBoXG'></tbody>

                        <legend id='dBoXG'><style id='dBoXG'><dir id='dBoXG'><q id='dBoXG'></q></dir></style></legend>
                          <bdo id='dBoXG'></bdo><ul id='dBoXG'></ul>