Search found 72 matches

by erdsiger
Sun Mar 23, 2008 8:22 pm
Forum: Joomla! Coding 101
Topic: Trying To Build A Module - XML Setup File Not Found
Replies: 5
Views: 821

Re: Trying To Build A Module - XML Setup File Not Found

Good to hear that. :) Good luck on developing! ;)
by erdsiger
Sun Mar 23, 2008 7:04 pm
Forum: Joomla! Coding 101
Topic: Trying To Build A Module - XML Setup File Not Found
Replies: 5
Views: 821

Re: Trying To Build A Module - XML Setup File Not Found

drmmr763 wrote:I'm checking the book again-and the closing php tag isn't even there.
I'm sorry, it's my mistake, there shouldn't be and end tag.
drmmr763 wrote:I think that the problem must be my archiving utility.
Try to compress it with an other tool. Could attach the compressed file? Maybe I will find something useful.
by erdsiger
Sun Mar 23, 2008 6:34 pm
Forum: Joomla! Coding 101
Topic: Trying To Build A Module - XML Setup File Not Found
Replies: 5
Views: 821

Re: Trying To Build A Module - XML Setup File Not Found

I don't if it's really not there or you just accidentally forgot to insert, but there is no ?> end tag for php in mod_helloworld.php. If not this is the problem, I don't know what, anyway I attached the working mod_helloworld.zip file based on your code, hope it helps.
by erdsiger
Sat Mar 22, 2008 6:51 pm
Forum: Joomla! Coding 101
Topic: How do I access the Global configuration parameters?
Replies: 1
Views: 746

Re: How do I access the Global configuration parameters?

Welcome to the forum! 1. How do I access global configuration parameters? Use this code to get the global configuration parameters: global $mainframe; $sitename = $mainframe->getCfg( 'sitename' ); 2. How do I compare the global parameters with the parameters of the article itself. You didn't mention...
by erdsiger
Thu Mar 20, 2008 7:32 pm
Forum: Joombie Coding Q/A
Topic: Error in my component for Hello World
Replies: 3
Views: 714

Re: Error in my component for Hello World

Do I have to import any functions that I need or is this an environment setting that I might have missed? It depends on what you want to do. In your code JApplicationHelper was required for the getPath method. You can see here the methods of JApplicationHelper: http://dev.joomla.org/component/optio...
by erdsiger
Wed Mar 19, 2008 7:49 pm
Forum: Joombie Coding Q/A
Topic: Error in my component for Hello World
Replies: 3
Views: 714

Re: Error in my component for Hello World

Welcome to the forum! Try this code: <?php defined('_JEXEC') or die('Restricted access'); // require the html view class jimport( 'joomla.application.helper' ); require_once (JApplicationHelper :: getPath('front_html', 'com_hello')); $task = JRequest::getVar('task'); $name = JRequest::getVar('name',...
by erdsiger
Wed Mar 19, 2008 7:40 pm
Forum: Joombie Coding Q/A
Topic: Need to change what the registration e-mail contains
Replies: 1
Views: 740

Re: Need to change what the registration e-mail contains

You can find the _sendMail function at the end of the /components/com_user/controller.php file.
by erdsiger
Wed Mar 19, 2008 7:34 pm
Forum: Joombie Coding Q/A
Topic: Changing the Read More text.
Replies: 1
Views: 505

Re: Changing the Read More text.

Instead of

Code: Select all

<?php echo JText::_('Read more...'); ?>
write

Code: Select all

<?php echo ( 'Read more about ' . $this->item->title ); ?>
I tested on the /components/com_content/views/frontpage/tmpl/default.php file.
by erdsiger
Mon Feb 18, 2008 7:13 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: DEMO QUERY
Replies: 5
Views: 522

Re: DEMO QUERY

It's very interesting, it worked for me not a long time ago...
by erdsiger
Sun Feb 17, 2008 8:04 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: DEMO QUERY
Replies: 5
Views: 522

Re: DEMO QUERY

Welcome to the forum!

You can find here a Joomla! 1.5 demo:
http://joomlaplace.org/
by erdsiger
Fri Feb 15, 2008 3:30 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: what Joomla version is here and phpbb3...
Replies: 5
Views: 687

Re: what Joomla version is here and phpbb3...

Moderator note: Topic moved from 1.5 General Questions to Sites & Infrastructure - Feedback/Information.

I don't know the exact version, but the site uses Joomla 1.0.x. And as far as I know there no connection between Joomla and phpBB on this site.
by erdsiger
Fri Feb 15, 2008 3:07 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: What happened around here, things look different?
Replies: 3
Views: 447

Re: What happened around here, things look different?

Moderator note: Topic moved from 1.5 General Questions to Sites & Infrastructure - Feedback/Information.

You can read the Announcement here:
viewtopic.php?f=7&t=264477
by erdsiger
Mon Jan 21, 2008 11:08 am
Forum: Joomla! Extensions Directory Forum
Topic: Tagging the extensions as 1.0, 1.5 Legacy, Native or Full
Replies: 66
Views: 11064

Re: option 2 show only 1.5 extentions ?

Moderator note: Topic moved from 1.5 General Questions to Joomla! Extensions Directory Forum.

That will be easier to find the 1.5 compatible extensions later. Read more here:
http://forum.joomla.org/index.php/topic,195246.0.html
by erdsiger
Sun Jan 20, 2008 8:12 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: Online demo
Replies: 5
Views: 1322

Re: Online demo

You can try out Joomla here:
http://joomlaplace.org/
by erdsiger
Thu Jan 17, 2008 7:19 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: Development Wiki
Replies: 5
Views: 1360

Re: Development Wiki

It's working for me now.
by erdsiger
Sun Jan 13, 2008 12:48 am
Forum: Sites & Infrastructure - Feedback/Information
Topic: Can't send personal messages
Replies: 4
Views: 1022

Re: Can't send personal messages

Moderator note: Topic moved from 1.5 General Question to Sites & Infrastructure - Feedback/Information.

You can find the answer in the forum rules:

You cannot send PM's until you reach five forum posts
by erdsiger
Fri Jan 11, 2008 11:37 pm
Forum: Joomla! Extensions Directory Forum
Topic: Tagging the extensions as 1.0, 1.5 Legacy, Native or Full
Replies: 66
Views: 11064

Re: extensions directory

Moderator note: Topic moved from 1.5 General Questions to Joomla! Extensions Directory Forum.

Look at this topic:
http://forum.joomla.org/index.php/topic,195246.0.html
by erdsiger
Thu Jan 10, 2008 4:02 pm
Forum: JoomlaCode - Feedback/Information
Topic: joomlacode.org problems?
Replies: 5
Views: 764

Re: joomlacode.org problems?

Moderator note: Topic moved from 1.5 General Questions to JoomlaCode - Feedback/Information.
by erdsiger
Thu Jan 03, 2008 5:57 pm
Forum: Joomla! Extensions Directory Forum
Topic: Add comments
Replies: 2
Views: 990

Re: Add comments

Welcome to the forum!

I recommend mXcomment:
http://extensions.joomla.org/component/ ... Itemid,35/
by erdsiger
Sat Dec 29, 2007 7:55 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: VBS/Psyme When Entering Joomla Forum
Replies: 33
Views: 4962

Re: Trojan loaded with Joomla forum!!!

Moderator note: Topic moved from 1.5 General Question to Sites & Infrastructure.
by erdsiger
Fri Dec 21, 2007 6:58 pm
Forum: JoomlaCode - Feedback/Information
Topic: JoomlaCode registration not working
Replies: 7
Views: 1536

Re: JoomlaCode registration not working

Moderator note: Topic moved from 1.5 General Questions to JoomlaCode.
by erdsiger
Tue Dec 18, 2007 3:40 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: pagination problem on a help page
Replies: 1
Views: 788

Re: pagination problem on a help page

I also noticed this issue more than a month ago, but nothing changed...
by erdsiger
Thu Dec 06, 2007 12:30 pm
Forum: JoomlaCode - Feedback/Information
Topic: joomlacode temporary offline
Replies: 18
Views: 2053

Re: Where can I download 1.5 ? -Download link does not work

Moderator note: Topic moved from 1.5 General Questions to JoomlaCode - Feedback/Information.
by erdsiger
Thu Dec 06, 2007 12:12 pm
Forum: JoomlaCode - Feedback/Information
Topic: joomlacode temporary offline
Replies: 18
Views: 2053

Re: joomla1.5RC3 offline

Moderator note: Topic moved from 1.5 General Questions to JoomlaCode - Feedback/Information.
by erdsiger
Fri Nov 23, 2007 11:08 am
Forum: JoomlaCode - Feedback/Information
Topic: Joomla15 error?
Replies: 4
Views: 1227

Re: Joomla15 error?

Then simple open the configuration.php file and modify this line

Code: Select all

var $ftp_enable = '1';


to

Code: Select all

var $ftp_enable = '0';
by erdsiger
Thu Nov 22, 2007 4:26 pm
Forum: JoomlaCode - Feedback/Information
Topic: Joomla15 error?
Replies: 4
Views: 1227

Re: Joomla15 error?

Try to disable the FTP in the Global Configuration.
by erdsiger
Sun Nov 11, 2007 8:20 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: Wiki component for Joomla! -> Joomla! documentation
Replies: 18
Views: 3085

Re: Wiki component for Joomla! -> Joomla! documentation

Much though I would like to help, I am not familiar with the code and I simply don't have the time to look into it at present. Understand. I thought that NuWiki is just based on OpenWiki and you modified the code, but didn't know that it's the same. If you, or anyone else tuned to this frequency, w...