JFactory failing to import(JFactory 无法导入)
问题描述
我正在尝试为适用于我的 2.5 Joomla 网站的 Android 应用程序制作登录系统.我试图通过制作一个 Joomla 插件来做到这一点,Android 应用程序将发布数据发送到一个 php 文件,然后该文件对用户进行身份验证以查看登录凭据是否正确.我整个下午都在努力让它工作,但似乎我所有导入 JFactory 的尝试都失败了.
I am trying to make a login system for an android application that works in with my 2.5 Joomla website. I am trying to do this by making a Joomla plugin which the android application sends post data to a php file which that then authenticates the user to see if the credentials are correct or not for the login. I have been trying to get this working all afternoon but it seems all my attempts of importing JFactory are failing.
我有下面的代码,它在第一次提到 JFactory 时出错.我尝试导入它也不起作用.
I have the below code which bugs out at the first mention of JFactory. My attempt of importing it is not working either.
我查看了有关导入 JFactory 的其他问题,但没有一个对我有用:
- JFactory,JDatabase 类未在/var/www/joomla2.5/database.php
- 未找到JFactory"类
- 在外部 php 文件 Joomla 中包含 Jfactory 类
I have looked at these other questions about importing JFactory but none of them are working for me:
- JFactory,JDatabase class not found in /var/www/joomla2.5/database.php
- Class 'JFactory' not found
- include Jfactory class in an external php file, Joomla
所以我的简化问题是如何导入 JFactory 或至少在这种情况下解决它?任何感觉比我更聪明的人都会这么好心地回答这个问题 :)
So my simplified question is how do I import JFactory or at least work around it in this situation? Anyone feeling smarter than me who would be so kind to answer the question :)
一般信息:
- 运行 php 5.1.13
- Joomla 2.5
- 在 wamp 服务器 (localhost) 上测试
推荐答案
我建议采用官方的 Joomla 方式并引导应用程序.我所做的工作非常好,是推荐的 Joomla 方式(我没有测试下面的代码,但它应该给你一个起点,因为它是从我的代码中的多个来源复制粘贴).
I suggest to go the official Joomla way and bootstrap an application. What I did works pretty well and is the recommended Joomla way (I haven't tested the code below but it should give you a starting point as it was a copy paste from multiple sources in my code).
类似的东西对我有用.更多平台示例可以在这里找到 https://github.com/joomla/joomla-platform-examples/tree/master/web.
Something along the lines works for me. More platform examples can be found here https://github.com/joomla/joomla-platform-examples/tree/master/web.
这篇关于JFactory 无法导入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!