joomla2.5

Mysql data query and the sharp-pound underbar thing [closed]

Deadly 提交于 2019-12-25 05:30:45
问题 This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center. Closed 7 years ago . I have a mysql query that looks like this $query="SELECT * FROM #__content" . I have no idea what the #__ before content is supposed to mean ? If I have

Automatic Extension Update: Unknown Archive type

∥☆過路亽.° 提交于 2019-12-25 05:00:33
问题 I have created a new version of my Joomla extension. Manual upgrade via zip file or the directory works fine. But the automatic upgrade (which used to work fine before), now gives an error 500 and the following error messages: "Unknown Archive type", "*Update path does not exist" and "Installation unexpectedly terminated: Update path does not exist". I have no idea why those messages appear. The update.xml references the correct zip files. Downloading it manually works just fine. Joomla(/php

Joomla 2.5: how do i show a component in modal window without menu?

旧街凉风 提交于 2019-12-25 03:49:52
问题 I'm using JHTML::_('behavior.modal'); to launch a component from a link doing <a href="/index.php?option=com_contact&view=contact&id=1&tmpl=component" class="modal" title="contact us" rel="{handler: 'iframe', size: {x: 680, y: 370}}"> Contact example</a> It shows the contact page but also other items like menu and other modules. Is there a way to avoid it and showing only com_contact page? I read that it was possible using &tmpl=component but it does not work. I'm using J2.5 EDIT: if i look

Does joomla store article/ modules text and image path in database?

元气小坏坏 提交于 2019-12-25 03:49:49
问题 I wanted to create an iPhone app for a website which is created using Joomla 2.5. What I was thinking is to create RSS and pass that link in the iPhone app. However, for creating RSS, I was worried about from where should I get the articles text and images that are there? Hence, I wanted to know: does Joomla store the article/ modules text and images path in a database? If yes, which table does it use to store all info? 回答1: Of course it's stored in the database ;-) You should find all the

how to Preview /add thumbnail image to AllVideos plugin in joomla

▼魔方 西西 提交于 2019-12-25 02:53:10
问题 So, I've browsed the forum trying to find an answer to how to add a preview image to videos (so the video player doesn't just display a black screen before you press "play") and I came across this: "This example of embedding a local FLV video with a preview image uses the following tag: {flv img="segeln-preview.jpg" showstop="true"}Segeln-20070428-Start{/flv}The video file can be downloaded here. The preview image is located in images/stories and can be downloaded here." I tried this and it

Component View displaying with 500 Internal Server Error

天涯浪子 提交于 2019-12-24 22:25:15
问题 I have having issues following the tutorial of component development of Joomla. The tutorials I followed related to the issue are this and this. I can view the default view properly, but when I click the new or edit and delete button, or when I browse too ../administrator/index.php?option=com_testimonials&view=testimonial&layout=edit I get that error. I have rechecked the code so many times but I just can't find where I went wrong. File: controllers\testimonial.php class

jUpgrade Extension stuck during the update to Joomla 2.5.8

跟風遠走 提交于 2019-12-24 12:44:18
问题 I have problem with jUpgrade extension of Joomla.I have a website which is built in Joomla 1.5.26 and I want it to be upgrade it to Joomla 2.5.8.I am using jUpgrade .When i click on start upgrade it start and download and decompress the content but it stuck in the migration process.This snap show it better what i want to say, see below: I have Enable the curl in xampp. And also clear my cache and restarting the server.All thing i have tried wait for it at least 30 minute but nothing happen

Load language file during joomla (2.5) system plugin installation

荒凉一梦 提交于 2019-12-24 02:34:09
问题 I'm having a real hard time showing a localized string during the installation of a system plugin (in Joomla 2.5). The "normal" way with localized strings in the xml file doesn't seem to work, (see this other question: Language based installation description). I now tried the way proposed there, to show the description via the install scripts. This kind of works (I can echo text successfully), however, I also can't localize there - when debugging the language it shows that the plugin.sys.ini

How to properly use the language files in joomla

十年热恋 提交于 2019-12-24 01:25:59
问题 As far as i could dig in thought google, i found something like: <languages> <language tag="en-GB">en-GB.whatever.ini</language> <language tag="en-GB">en-GB.whatever.sys.ini</language> </languages> From here some question: Can i use it without tag and somehow specify to use with the default system language What is the difference between whatever.ini and whatever.sys.ini Do I have something else to write to xml or those 4 lines uploads and runs languages 回答1: The tag="en-GB" is required. .ini

How do I include a file of PHP functions in a Joomla template

大憨熊 提交于 2019-12-24 00:51:17
问题 I have been trying to include a file in my template which includes some functions I was intending to use for validation of the access level a member has in order to tailor content for different types of users in Joomla 2.5. The trouble is even though I have used the standard PHP include statement, none of the functions appear to be usable in the template. Instead calling the functions causes any pages using the template to crash. I could hard code the functions at the top of the template