joomla1.5

Joomla intro image as read more link

廉价感情. 提交于 2020-01-02 03:46:14
问题 I want to make the joomla articles intro image to behave like the read more, and the title link. So the user clicks the image, and the article loads. I'm not an PHP expert but maybe this is the readmore links code: <a href="<?php echo $this->item->readmore_link; ?>" class="button<?php echo $this->item->params->get('pageclass_sfx'); ?>"> <?php if ($this->item->readmore_register) : echo JText::_('Register to read more...'); elseif ($readmore = $this->item->params->get('readmore')) : echo

jimport not working in Joomla 1.5

六月ゝ 毕业季﹏ 提交于 2019-12-25 01:45:55
问题 I have downloaded some sample code for openId in Joomla 1.5. I am learning as I go with this Joomla thing and re-learning some PHP things. So I'm basically terribly new to this entire Content Manager world. I am trying to make a little plug-in for authentication with openid but it seems to be just wrong. I have successfully debugged the project in eclipse and found that the error comes from my jimport. class plgAuthenticationOpenId extends JPlugin{ /** * OpenId Atributes. */ private static

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

Check Username Availability Issue

泪湿孤枕 提交于 2019-12-24 10:19:22
问题 I am just adding a new feature to my Joomla TPJOBS component although it's not a good/complete/active component but just I'm adding a user name Availability checker but its not working because it may be due to in this component. My Joomla Component Directory is : \public_html\components\com_tpjobs\ Editing tpjobs.html.php(exiting) and username_validate.php (created) My Javascript AJAX Code : which is under tpjobs.html.php // JavaScript <script type="text/javascript"> <!-- //function to create

How to Add RESTful Web Services to Joomla 1.5+ [closed]

别等时光非礼了梦想. 提交于 2019-12-23 08:29:07
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . pretty straightforward question: Is there a good web services solution for Joomla1.5+? I've been searching all over, and have only found references to a poorly-documented new xml-rpc server that's built into Joomla: http://forum.joomla.org/viewtopic.php?f=304&t=501897 Thanks a lot - I'm looking for a nice clean

How to Add RESTful Web Services to Joomla 1.5+ [closed]

半腔热情 提交于 2019-12-23 08:28:06
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed last year . pretty straightforward question: Is there a good web services solution for Joomla1.5+? I've been searching all over, and have only found references to a poorly-documented new xml-rpc server that's built into Joomla: http://forum.joomla.org/viewtopic.php?f=304&t=501897 Thanks a lot - I'm looking for a nice clean

Joomla UTF-8 encoding fails on opening the mail

拥有回忆 提交于 2019-12-23 07:43:03
问题 I have a strange issue with encoding, described as follows: the ù is now shown as ù in the email subject. The email is sent through php mail function. When viewing the e-mail in the mailbox, it is shown correctly. However, when anybody opens the e-mail, the ù is suddenly changed to ù. Uw contact met Meeùs should be Uw contact met Meeùs i have already used the encoding. $emailsubject contains the above mentioned email subject. $subject=$emailsubject; $subject=$emailsubject; $email_message

Joomla two module using same helper.php

核能气质少年 提交于 2019-12-23 01:41:49
问题 I've built two custom modules for Joomla ("reservation" and "contact") which are working just fine, however time to time I have to upgrade them. Is it possible to make them to share the same "helper.php" so I could keep code in one place? For example the post function is the same for these two modules. I want the "contact" module to use the "reservation" helper.php post function. Thanks 回答1: You can simply include the reservation module helper inside the contact module and use it. For example

article content not showing in joomla 2.5 after upgrading from 1.5 to 2.5

我的梦境 提交于 2019-12-23 00:43:29
问题 I have an issue with my joomla 2.5 site. I upgrade my site from joomla 1.5 to 2.5 version. After upgrading, articles not displaying. It shows the article heading but not showing the content. I give the permissions to the site but it doesn't works. 回答1: I got the real solution that is : go to the jupgrade/template/html folder and delete or rename the com_content folder Then it will work properly Thank you all 回答2: Your site has following url structure http://keralacarpentry.com/freedom2/index

How do I resolve a strpos() “empty delimiter” error?

岁酱吖の 提交于 2019-12-22 03:17:56
问题 Here's the error: For: PHP 5.2+ Warning: strpos() [function.strpos]: Empty delimiter in /helper.php on line 445 and here is the code on that line: if($src = $img->getAttribute('src') AND strpos($src,$fgParams->get('base')) === false) { // prevents repeat processing EgivaUtility::profiling('Processing Image SRC: '.$src); // fix rel paths $src = EgivaUtility::encode_url(EgivaUtility::makeAbsUrl($origLink,$src)); if($image_details = @getimagesize($src) AND !in_array($image_details[0],array(1,2))