joomla 相关问题

的Joomla!是一个免费的开源内容管理系统(CMS),用于在万维网和内部网上发布内容,以及一个模型 - 视图 - 控制器(MVC)Web应用程序框架,也可以单独使用。也可以在https://joomla.stackexchange.com/上询问Joomla问题

Joomla 插件将 github 代码显示到文章中[已关闭]

joomla 2.5 是否有任何插件可用于嵌入 github 存储库中的代码。对于Word Press,有一个插件可以实现相同的功能(http://wordpress.org/extend/plugins/github-code-viewer-2/)。我

回答 2 投票 0

联系我们表格提交

我们如何知道联系我们表单是在 Joomla 1.5 的模块上提交的。 我知道提交后联系我们表单函数submit()在组件上

回答 0 投票 0

JArchive::为 Joomla 2.5 创建?

基本上我正在尝试使用 Joomla JArchive::create() 函数从相对路径压缩目录。到目前为止,我可以压缩一个目录,但它会压缩整个绝对路径。 我正在使用的代码

回答 2 投票 0

自定义Google地图参数删除迷你菜单

http://mtavares.geantduweb.ca/en/annonce?view=fiche&task=fiche.display&fiche_id=5 我查遍了所有地方...如何关闭 小地图上的地图/周六/三月/地球菜单...我的...

回答 1 投票 0

在 Joomla 中突出显示活动菜单项

我正在覆盖 Joomla 1.5 中的 mod_mainmenu 模块,并且无法获取要在页面上显示的 .active 或 #current CSS 类或 ID。它显示了以下菜单 HTML: 我正在覆盖 Joomla 1.5 中的 mod_mainmenu 模块,但无法获取要在页面上显示的 .active 或 #current CSS 类或 ID。它显示了以下菜单 HTML: <ul id="top-nav" class="flatList"> <li access="0" level="1" id="1"> <a href="#"> <span class="embed embed-top-nav">Home</span> <p>news, highlights</p> </a> </li> <li access="0" level="1" id="4"> <a href="/content/index.php?option=com_content&amp;view=article&amp;id=1&amp;Itemid=4"> <span class="embed embed-top-nav">Watch UNC-TV</span> <p>schedule, programs</p> </a> </li> </ul> 我读到 mod_mainmenu 会自动在其中的某个位置插入 active 或 current ,以便您可以知道哪个项目是当前活动的菜单选择。但我在生成的 HTML 中没有看到其中任何一个。我想对活动元素应用一些 CSS,但似乎没有任何方法可以做到这一点。有什么想法吗? 谢谢。 更新:这是我创建的mod_mainmenu的代码: <?php // no direct access defined('_JEXEC') or die('Restricted access'); if ( ! defined('fancyMenuPatch') ) { function fancyMenuPatch($result,$tag){ $menu = JSite::getMenu(); $active = $menu->getActive(); // Add to the start of the UL tag. $begin_ul = "<ul id=\"top-nav\" class=\"flatList\">"; $begin_span = "<span class=\"embed embed-top-nav\">"; $home_p = "Home</span><p>news, highlights</p></a>"; $watch_p = "Watch UNC-TV</span><p>schedule, programs</p></a>"; $learn_p = "Learn</span><p>education, unc-tv kids</p></a>"; $support_p = "Support Us</span><p>pledge, volunteer, corporate</p></a>"; $contact_p = "Contact</span><p>feedback, connect, share</p></a>"; // do the replacements $result = str_replace("<ul class=\"menu\">",$begin_ul, $result); $result = str_replace("<span>", $begin_span, $result); $result = str_replace("Home</span></a>",$home_p,$result); $result = str_replace("Watch UNC-TV</span></a>",$watch_p,$result); $result = str_replace("Learn</span></a>",$learn_p,$result); $result = str_replace("Support Us</span></a>",$support_p,$result); $result = str_replace("Contact</span></a>",$contact_p,$result); return $result; } define('fancyMenuPatch', true); } if ( ! defined('modMainMenuXMLCallbackDefined') ) { function modMainMenuXMLCallback(&$node, $args) { $user = &JFactory::getUser(); $menu = &JSite::getMenu(); $active = $menu->getActive(); $path = isset($active) ? array_reverse($active->tree) : null; if (($args['end']) && ($node->attributes('level') >= $args['end'])) { $children = $node->children(); foreach ($node->children() as $child) { if ($child->name() == 'ul') { $node->removeChild($child); } } } if ($node->name() == 'ul') { foreach ($node->children() as $child) { if ($child->attributes('access') > $user->get('aid', 0)) { $node->removeChild($child); } } } if (($node->name() == 'li') && isset($node->ul)) { $node->addAttribute('class', 'parent'); } if (isset($path) && (in_array($node->attributes('id'), $path) || in_array($node->attributes('rel'), $path))) { if ($node->attributes('class')) { $node->addAttribute('class', $node->attributes('class').' active'); } else { $node->addAttribute('class', 'active'); } } else { if (isset($args['children']) && !$args['children']) { $children = $node->children(); foreach ($node->children() as $child) { if ($child->name() == 'ul') { $node->removeChild($child); } } } } if (($node->name() == 'li') && ($id = $node->attributes('id'))) { if ($node->attributes('class')) { $node->addAttribute('class', $node->attributes('class').' item'.$id); } else { $node->addAttribute('class', 'item'.$id); } } if (isset($path) && $node->attributes('id') == $path[0]) { $node->addAttribute('id', 'current'); } else { $node->removeAttribute('id'); } $node->removeAttribute('rel'); $node->removeAttribute('level'); $node->removeAttribute('access'); } define('modMainMenuXMLCallbackDefined', true); } ob_start(); modMainMenuHelper::render($params, 'modMyMainMenuXMLCallback'); $menu_html = ob_get_contents(); ob_end_clean(); if($params->get('menutype')=="mainmenu"){ $tag = $params->get('tag_id'); } //output the menu! echo fancyMenuPatch($menu_html,$tag); ?> 试试这个,这是 mod_mainmenu 的代码(覆盖): <?php // no direct access defined('_JEXEC') or die('Restricted access'); if ( ! defined('fancyMenuPatch') ) { function fancyMenuPatch($result,$tag){ $menu = JSite::getMenu(); $active = $menu->getActive(); // Add to the start of the UL tag. $begin_ul = "<ul id=\"top-nav\" class=\"flatList\">"; $begin_span = "<span class=\"embed embed-top-nav\">"; $home_p = "Home</span><p>news, highlights</p></a>"; $watch_p = "Watch UNC-TV</span><p>schedule, programs</p></a>"; $learn_p = "Learn</span><p>education, unc-tv kids</p></a>"; $support_p = "Support Us</span><p>pledge, volunteer, corporate</p></a>"; $contact_p = "Contact</span><p>feedback, connect, share</p></a>"; // do the replacements $result = str_replace("<ul class=\"menu\">",$begin_ul, $result); $result = str_replace("<span>", $begin_span, $result); $result = str_replace("Home</span></a>",$home_p,$result); $result = str_replace("Watch UNC-TV</span></a>",$watch_p,$result); $result = str_replace("Learn</span></a>",$learn_p,$result); $result = str_replace("Support Us</span></a>",$support_p,$result); $result = str_replace("Contact</span></a>",$contact_p,$result); return $result; } define('fancyMenuPatch', true); } if ( ! defined('modMyMainMenuXMLCallbackDefined') ) { function modMyMainMenuXMLCallback(&$node, $args) { $user = &JFactory::getUser(); $menu = &JSite::getMenu(); $active = $menu->getActive(); $path = isset($active) ? array_reverse($active->tree) : null; if (($args['end']) && ($node->attributes('level') >= $args['end'])) { $children = $node->children(); foreach ($node->children() as $child) { if ($child->name() == 'ul') { $node->removeChild($child); } } } if ($node->name() == 'ul') { foreach ($node->children() as $child) { if ($child->attributes('access') > $user->get('aid', 0)) { $node->removeChild($child); } } } if (($node->name() == 'li') && isset($node->ul)) { $node->addAttribute('class', 'parent'); } if (isset($path) && in_array($node->attributes('id'), $path)) { if ($node->attributes('class')) { $node->addAttribute('class', $node->attributes('class').' active'); } else { $node->addAttribute('class', 'active'); } } else { if (isset($args['children']) && !$args['children']) { $children = $node->children(); foreach ($node->children() as $child) { if ($child->name() == 'ul') { $node->removeChild($child); } } } } if (($node->name() == 'li') && ($id = $node->attributes('id'))) { if ($node->attributes('class')) { $node->addAttribute('class', $node->attributes('class').' item'.$id); } else { $node->addAttribute('class', 'item'.$id); } } if (isset($path) && $node->attributes('id') == $path[0]) { $node->addAttribute('id', 'current'); } else { $node->removeAttribute('id'); } $node->removeAttribute('level'); $node->removeAttribute('access'); } define('modMyMainMenuXMLCallbackDefined', true); } ob_start(); modMainMenuHelper::render($params, 'modMyMainMenuXMLCallback'); $menu_html = ob_get_contents(); ob_end_clean(); if($params->get('menutype')=="mainmenu"){ $tag = $params->get('tag_id'); } //output the menu! echo fancyMenuPatch($menu_html,$tag); ?> 检查你的template文件夹,有一个template.css文件,你可以在那里找到!

回答 2 投票 0

php版本从7.4升级到8的问题

我正在使用 Joomla 版本 3.10,将 php 版本从 7.4 升级到 8.0 后,我收到此错误。 致命错误:未加括号?乙:丙? d : 不支持 e。使用(a ? b : c) 之一? d...

回答 1 投票 0

Joomla 2.5.6 中 Itemid 在哪里用于标记活动菜单项?

任何人都可以帮助我处理 Joomla Itemid 参数最终成为突出显示的菜单项的流程吗? 我已经在 Joomla 中嵌入了第 3 方应用程序,并且临时...

回答 3 投票 0

从数据库中检索单个列SQLl

我需要哪些代码才能从 SQL 中的表的列中检索单个值 i? 用户评论数 这是表中的列名 表是: zmar_hreviews_list_total 这是我与 e 一起使用的代码...

回答 1 投票 0

我可以使用joomla的onAfterRender作为模块而不是插件吗?

我想在加载任何页面时向 Joomla 插入一些代码。 为此,我创建了一个插入代码的模块。 我正在尝试使用 我想在加载任何页面时向 Joomla 插入一些代码。 为此,我创建了一个插入代码的模块。 我正在尝试使用 <?php // $Id: helper.php defined('_JEXEC') or die; jimport( 'joomla.plugin.plugin' ); jimport( 'joomla.environment.response' ); class modInsertCode { function onAfterRender($params) { $code = 'some code'; $documentbody = JResponse::getBody(); $documentbody = str_replace ("</body>", $code." </body>", $documentbody); JResponse::setBody($documentbody); return true; } } ?> 但是 JResponse::getBody();返回一个空字符串。修复此代码的任何想法、解决方案? 谢谢你, 您必须使用插件来完成此操作,您将无法使用模块来完成此操作,因为在执行模块代码时尚未生成 HTML 响应。 希望对你有帮助! 我知道这有点旧,但为了将来的参考,这可以使用 jQuery 来完成: $doc = JFactory::getDocument(); $js = 'jQuery(document).ready( function() { jQuery("#module'.$module->id.'").appendTo(document.body); })'; $doc->addScriptDeclaration($js); 这是假设您已将模块中的内容包装为如下所示,包括模块 ID 以支持模块的多个实例。 <div id="module<?php echo $module->id; ?>"> Your content </div>

回答 2 投票 0

使用.strip_tags($this->item->introtext)。用宏

我正在使用 RokCandy 宏扩展。此扩展可以从简单文本创建复杂的 HTML 代码,因此可以更轻松地为某些对象提供常规格式。 问题是在每个人的头脑中...

回答 1 投票 0

在 joomla 上用绝对图像替换相对图像 src

我需要邮寄一些存储在数据库中的html代码。 为了也显示图像,我需要将相对路径替换为绝对路径。 我有一个名为 $display 的变量,它保存 HT...

回答 1 投票 0

为 joomla php 中的 foreach() 提供的参数无效

我收到以下错误: PHP 警告:为 E:\home cesseecom1\Web\libraries\joomla ccess ccess.php 第 409 行中的 foreach() 提供的参数无效 代码是: 我收到以下错误: PHP 警告:在 E:\home cesseecom1\Web\libraries\joomla ccess ccess.php 第 409 行为 foreach() 提供的参数无效 代码是: <?php /** * @package Joomla.Platform * @subpackage Access * * @copyright Copyright (C) 2005 - 2013 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ defined('JPATH_PLATFORM') or die; jimport('joomla.utilities.arrayhelper'); /** * Class that handles all access authorisation routines. * * @package Joomla.Platform * @subpackage Access * @since 11.1 */ class JAccess { /** * Array of view levels * * @var array * @since 11.1 */ protected static $viewLevels = array(); /** * Array of rules for the asset * * @var array * @since 11.1 */ protected static $assetRules = array(); /** * Array of user groups. * * @var array * @since 11.1 */ protected static $userGroups = array(); /** * Array of user group paths. * * @var array * @since 11.1 */ protected static $userGroupPaths = array(); /** * Array of cached groups by user. * * @var array * @since 11.1 */ protected static $groupsByUser = array(); /** * Method for clearing static caches. * * @return void * * @since 11.3 */ public static function clearStatics() { self::$viewLevels = array(); self::$assetRules = array(); self::$userGroups = array(); self::$userGroupPaths = array(); self::$groupsByUser = array(); } /** * Method to check if a user is authorised to perform an action, optionally on an asset. * * @param integer $userId Id of the user for which to check authorisation. * @param string $action The name of the action to authorise. * @param mixed $asset Integer asset id or the name of the asset as a string. Defaults to the global asset node. * * @return boolean True if authorised. * * @since 11.1 */ public static function check($userId, $action, $asset = null) { // Sanitise inputs. $userId = (int) $userId; $action = strtolower(preg_replace('#[\s\-]+#', '.', trim($action))); $asset = strtolower(preg_replace('#[\s\-]+#', '.', trim($asset))); // Default to the root asset node. if (empty($asset)) { $db = JFactory::getDbo(); $assets = JTable::getInstance('Asset', 'JTable', array('dbo' => $db)); $rootId = $assets->getRootId(); $asset = $rootId; } // Get the rules for the asset recursively to root if not already retrieved. if (empty(self::$assetRules[$asset])) { self::$assetRules[$asset] = self::getAssetRules($asset, true); } // Get all groups against which the user is mapped. $identities = self::getGroupsByUser($userId); array_unshift($identities, $userId * -1); return self::$assetRules[$asset]->allow($action, $identities); } /** * Method to check if a group is authorised to perform an action, optionally on an asset. * * @param integer $groupId The path to the group for which to check authorisation. * @param string $action The name of the action to authorise. * @param mixed $asset Integer asset id or the name of the asset as a string. Defaults to the global asset node. * * @return boolean True if authorised. * * @since 11.1 */ public static function checkGroup($groupId, $action, $asset = null) { // Sanitize inputs. $groupId = (int) $groupId; $action = strtolower(preg_replace('#[\s\-]+#', '.', trim($action))); $asset = strtolower(preg_replace('#[\s\-]+#', '.', trim($asset))); // Get group path for group $groupPath = self::getGroupPath($groupId); // Default to the root asset node. if (empty($asset)) { $db = JFactory::getDbo(); $assets = JTable::getInstance('Asset', 'JTable', array('dbo' => $db)); $rootId = $assets->getRootId(); } // Get the rules for the asset recursively to root if not already retrieved. if (empty(self::$assetRules[$asset])) { self::$assetRules[$asset] = self::getAssetRules($asset, true); } return self::$assetRules[$asset]->allow($action, $groupPath); } /** * Gets the parent groups that a leaf group belongs to in its branch back to the root of the tree * (including the leaf group id). * * @param mixed $groupId An integer or array of integers representing the identities to check. * * @return mixed True if allowed, false for an explicit deny, null for an implicit deny. * * @since 11.1 */ protected static function getGroupPath($groupId) { // Preload all groups if (empty(self::$userGroups)) { $db = JFactory::getDbo(); $query = $db->getQuery(true) ->select('parent.id, parent.lft, parent.rgt') ->from('#__usergroups AS parent') ->order('parent.lft'); $db->setQuery($query); self::$userGroups = $db->loadObjectList('id'); } // Make sure groupId is valid if (!array_key_exists($groupId, self::$userGroups)) { return array(); } // Get parent groups and leaf group if (!isset(self::$userGroupPaths[$groupId])) { self::$userGroupPaths[$groupId] = array(); foreach (self::$userGroups as $group) { if ($group->lft <= self::$userGroups[$groupId]->lft && $group->rgt >= self::$userGroups[$groupId]->rgt) { self::$userGroupPaths[$groupId][] = $group->id; } } } return self::$userGroupPaths[$groupId]; } /** * Method to return the JAccessRules object for an asset. The returned object can optionally hold * only the rules explicitly set for the asset or the summation of all inherited rules from * parent assets and explicit rules. * * @param mixed $asset Integer asset id or the name of the asset as a string. * @param boolean $recursive True to return the rules object with inherited rules. * * @return JAccessRules JAccessRules object for the asset. * * @since 11.1 */ public static function getAssetRules($asset, $recursive = false) { // Get the database connection object. $db = JFactory::getDbo(); // Build the database query to get the rules for the asset. $query = $db->getQuery(true); $query->select($recursive ? 'b.rules' : 'a.rules'); $query->from('#__assets AS a'); //sqlsrv change $query->group($recursive ? 'b.id, b.rules, b.lft' : 'a.id, a.rules, a.lft'); // If the asset identifier is numeric assume it is a primary key, else lookup by name. if (is_numeric($asset)) { $query->where('(a.id = ' . (int) $asset . ')'); } else { $query->where('(a.name = ' . $db->quote($asset) . ')'); } // If we want the rules cascading up to the global asset node we need a self-join. if ($recursive) { $query->leftJoin('#__assets AS b ON b.lft <= a.lft AND b.rgt >= a.rgt'); $query->order('b.lft'); } // Execute the query and load the rules from the result. $db->setQuery($query); $result = $db->loadColumn(); // Get the root even if the asset is not found and in recursive mode if (empty($result)) { $db = JFactory::getDbo(); $assets = JTable::getInstance('Asset', 'JTable', array('dbo' => $db)); $rootId = $assets->getRootId(); $query = $db->getQuery(true); $query->select('rules'); $query->from('#__assets'); $query->where('id = ' . $db->quote($rootId)); $db->setQuery($query); $result = $db->loadResult(); $result = array($result); } // Instantiate and return the JAccessRules object for the asset rules. $rules = new JAccessRules; $rules->mergeCollection($result); return $rules; } /** * Method to return a list of user groups mapped to a user. The returned list can optionally hold * only the groups explicitly mapped to the user or all groups both explicitly mapped and inherited * by the user. * * @param integer $userId Id of the user for which to get the list of groups. * @param boolean $recursive True to include inherited user groups. * * @return array List of user group ids to which the user is mapped. * * @since 11.1 */ public static function getGroupsByUser($userId, $recursive = true) { // Creates a simple unique string for each parameter combination: $storeId = $userId . ':' . (int) $recursive; if (!isset(self::$groupsByUser[$storeId])) { // Guest user (if only the actually assigned group is requested) if (empty($userId) && !$recursive) { $result = array(JComponentHelper::getParams('com_users')->get('guest_usergroup', 1)); } // Registered user and guest if all groups are requested else { $db = JFactory::getDbo(); // Build the database query to get the rules for the asset. $query = $db->getQuery(true); $query->select($recursive ? 'b.id' : 'a.id'); if (empty($userId)) { $query->from('#__usergroups AS a'); $query->where('a.id = ' . (int) JComponentHelper::getParams('com_users')->get('guest_usergroup', 1)); } else { $query->from('#__user_usergroup_map AS map'); $query->where('map.user_id = ' . (int) $userId); $query->leftJoin('#__usergroups AS a ON a.id = map.group_id'); } // If we want the rules cascading up to the global asset node we need a self-join. if ($recursive) { $query->leftJoin('#__usergroups AS b ON b.lft <= a.lft AND b.rgt >= a.rgt'); } // Execute the query and load the rules from the result. $db->setQuery($query); $result = $db->loadColumn(); // Clean up any NULL or duplicate values, just in case JArrayHelper::toInteger($result); if (empty($result)) { $result = array('1'); } else { $result = array_unique($result); } } self::$groupsByUser[$storeId] = $result; } return self::$groupsByUser[$storeId]; } /** * Method to return a list of user Ids contained in a Group * * @param integer $groupId The group Id * @param boolean $recursive Recursively include all child groups (optional) * * @return array * * @since 11.1 * @todo This method should move somewhere else */ public static function getUsersByGroup($groupId, $recursive = false) { // Get a database object. $db = JFactory::getDbo(); $test = $recursive ? '>=' : '='; // First find the users contained in the group $query = $db->getQuery(true); $query->select('DISTINCT(user_id)'); $query->from('#__usergroups as ug1'); $query->join('INNER', '#__usergroups AS ug2 ON ug2.lft' . $test . 'ug1.lft AND ug1.rgt' . $test . 'ug2.rgt'); $query->join('INNER', '#__user_usergroup_map AS m ON ug2.id=m.group_id'); $query->where('ug1.id=' . $db->Quote($groupId)); $db->setQuery($query); $result = $db->loadColumn(); // Clean up any NULL values, just in case JArrayHelper::toInteger($result); return $result; } /** * Method to return a list of view levels for which the user is authorised. * * @param integer $userId Id of the user for which to get the list of authorised view levels. * * @return array List of view levels for which the user is authorised. * * @since 11.1 */ public static function getAuthorisedViewLevels($userId) { // Get all groups that the user is mapped to recursively. $groups = self::getGroupsByUser($userId); // Only load the view levels once. if (empty(self::$viewLevels)) { // Get a database object. $db = JFactory::getDBO(); // Build the base query. $query = $db->getQuery(true); $query->select('id, rules'); $query->from($query->qn('#__viewlevels')); // Set the query for execution. $db->setQuery((string) $query); // Build the view levels array. foreach ($db->loadAssocList() as $level) { self::$viewLevels[$level['id']] = (array) json_decode($level['rules']); } } // Initialise the authorised array. $authorised = array(1); // Find the authorised levels. foreach (self::$viewLevels as $level => $rule) { foreach ($rule as $id) { if (($id < 0) && (($id * -1) == $userId)) { $authorised[] = $level; break; } // Check to see if the group is mapped to the level. elseif (($id >= 0) && in_array($id, $groups)) { $authorised[] = $level; break; } } } return $authorised; } /** * Method to return a list of actions for which permissions can be set given a component and section. * * @param string $component The component from which to retrieve the actions. * @param string $section The name of the section within the component from which to retrieve the actions. * * @return array List of actions available for the given component and section. * * @since 11.1 * * @deprecated 12.3 Use JAccess::getActionsFromFile or JAccess::getActionsFromData instead. * * @codeCoverageIgnore * */ public static function getActions($component, $section = 'component') { JLog::add(__METHOD__ . ' is deprecated. Use JAccess::getActionsFromFile or JAcces::getActionsFromData instead.', JLog::WARNING, 'deprecated'); $actions = self::getActionsFromFile( JPATH_ADMINISTRATOR . '/components/' . $component . '/access.xml', "/access/section[@name='" . $section . "']/" ); if (empty($actions)) { return array(); } else { return $actions; } } /** * Method to return a list of actions from a file for which permissions can be set. * * @param string $file The path to the XML file. * @param string $xpath An optional xpath to search for the fields. * * @return boolean|array False if case of error or the list of actions available. * * @since 12.1 */ public static function getActionsFromFile($file, $xpath = "/access/section[@name='component']/") { if (!is_file($file)) { // If unable to find the file return false. return false; } else { // Else return the actions from the xml. return self::getActionsFromData(JFactory::getXML($file, true), $xpath); } } /** * Method to return a list of actions from a string or from an xml for which permissions can be set. * * @param string|SimpleXMLElement $data The XML string or an XML element. * @param string $xpath An optional xpath to search for the fields. * * @return boolean|array False if case of error or the list of actions available. * * @since 12.1 */ public static function getActionsFromData($data, $xpath = "/access/section[@name='component']/") { // If the data to load isn't already an XML element or string return false. if ((!($data instanceof SimpleXMLElement)) && (!is_string($data))) { return false; } // Attempt to load the XML if a string. if (is_string($data)) { $data = JFactory::getXML($data, false); // Make sure the XML loaded correctly. if (!$data) { return false; } } // Initialise the actions array $actions = array(); // Get the elements from the xpath $elements = $data->xpath($xpath . 'action[@name][@title][@description]'); // If there some elements, analyse them if (!empty($elements)) { foreach ($elements as $action) { // Add the action to the actions array $actions[] = (object) array( 'name' => (string) $action['name'], 'title' => (string) $action['title'], 'description' => (string) $action['description'] ); } } // Finally return the actions array return $actions; } } 如果工作正常,只需尝试隐藏警告: error_reporting(0); 在文件开始处。

回答 1 投票 0

在configuration.php中找不到mosConfig_absolute_path

我正在尝试将我的 Joomla1 网站从本地主机移动到我的 bluehost.com 域。为了进行测试,我在我的域上创建了一个子目录以进行测试,并移动了我所有的 Joomla!文件到此。我有cr...

回答 1 投票 0

PHP file_get_contents 刚刚删除了我的数据库吗?

昨天,我正在寻找将信息推送和拉入我正在使用的应用程序中的技术。在我的研究中,我碰巧遇到了以下 PHP 脚本: 昨天,我正在寻找将信息推送和拉入我正在使用的应用程序中的技术。在我的研究中,我碰巧遇到了以下 PHP 脚本: <?php $url = 'http://www.example.com'; $output = file_get_contents($url); echo $output; ?> 我在不久前搭建的 Joomla 网站上进行了尝试。非常酷。它提取所有信息并将其显示在新网址上。好极了。我关闭了 url 并从网站中删除了这个 php 文件。 现在...戏剧!!今天,我访问了 Joomla 页面的 url,编辑了我注意到的一些次要内容项,并且... 数据库错误:无法连接到数据库:无法连接到数据库 我已经登录到控制面板并尝试通过控制面板通过 phpMyAdmin 查看数据库...但它显示为空白!我的意思是,没什么。数据库显示 0Mb。 我检查了 FTP 登录,所有文件和文件夹似乎都像往常一样就位。 有谁知道发生了什么事吗? file_get_contents 对数据库的影响应该与使用浏览器访问页面的效果相同。都不是。

回答 1 投票 0

Joomla JForm 带外键、Ajax 和 jQuery 的链式选择

我想知道如何将链式选择列表集成到组件的管理员编辑视图中。 我有 2 个表:制造商和型号 两个表都使用列 id 和

回答 2 投票 0

如何正确编码 Joomla MVC 组件来执行 jQuery AJAX GETS/POSTS?

所以,我有了这个令人惊叹的 Joomla 组件,完成后,它将带来世界和平,解决世界饥饿问题。 我所要做的就是合并通过 jquery .ajax ca 调用的代码...

回答 0 投票 0

joomla 标签表单从数据库加载整个列表

我注意到 joomla 标签输入字段非常愚蠢。它从 db 加载所有内容,在本例中为 9K 标签。显然 ui 变得如此缓慢。 有什么想法如何修复它吗?好像已经有ajax了

回答 1 投票 0

如何将从iPhone应用程序获取的用户信息发送到网站(Joomla)?

在我的 iPhone 应用程序中,我希望用户输入他的电子邮件地址。 我需要将此电子邮件地址发送到我使用 Joomla 的网站。 iPhone端和网站(Joomla)端应该做什么...

回答 2 投票 0

我已删除服务器中的所有文件;网站还在运行吗?

我在 joomla 网站上遇到了奇怪的问题。 我已使用 Cpanel 从服务器删除了所有文件。 我已经检查过 FileZilla:所有文件都被删除。 但网站仍然运行良好。 什么可...

回答 7 投票 0

在 Joomla 3 中向组件添加类别

我使用 Joomla Component Builder 来快速创建一些小组件。现在我创建简单的目录组件,是时候添加类别了,因为所有其他想法似乎都很好,但是哈...

回答 2 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.