Search found 47 matches
- Wed Jan 16, 2008 5:15 am
- Forum: Joomla! Extensions Directory Forum
- Topic: Tagging the extensions as 1.0, 1.5 Legacy, Native or Full
- Replies: 66
- Views: 35410
Re: small suggestion
Have you tried the Advanced Search page for the Extensions?
- Mon Dec 17, 2007 2:36 am
- Forum: Joomla! Coding 101
- Topic: What's the variable for a site's root URL?
- Replies: 2
- Views: 785
Re: What's the variable for a site's root URL?
If using 1.5, try JURI::base().
- Tue Dec 11, 2007 2:41 pm
- Forum: Joomla! Coding 101
- Topic: Prevent menu link for certain layouts
- Replies: 4
- Views: 1315
Re: Prevent menu link for certain layouts
Thanks for answering yourself. 
I was needing this the other day, but I was sidetracked and never finished looking into it.
Thanks again.

I was needing this the other day, but I was sidetracked and never finished looking into it.
Thanks again.
- Mon Dec 10, 2007 10:59 pm
- Forum: Joombie Coding Q/A
- Topic: editing com_search to find more from other components
- Replies: 16
- Views: 5512
Re: editing com_search to find more from other components
When you do a search, that link "stuff" is what will be shown on the search results page. It will need to go to a valid page or the users of the site won't find it very useful.
- Mon Dec 10, 2007 10:48 pm
- Forum: Joombie Coding Q/A
- Topic: editing com_search to find more from other components
- Replies: 16
- Views: 5512
Re: editing com_search to find more from other components
I'm not sure. I have not coded much (read any) for the 1.0.x series. I'm also just beginning to code php for the one component I'm working on. What I would do at the moment, and I'm sure there are other ways to do this, would be to view a few of the portfolios. Check the link provided to get to e...
- Mon Dec 10, 2007 10:41 pm
- Forum: Joombie Coding Q/A
- Topic: _variablename and variablename
- Replies: 2
- Views: 1407
Re: _variablename and variablename
Thanks for posting that. I'm sure it will help many others, including me. 

- Mon Dec 10, 2007 10:40 pm
- Forum: Joombie Coding Q/A
- Topic: editing com_search to find more from other components
- Replies: 16
- Views: 5512
Re: editing com_search to find more from other components
In the portfolio component, how does it display a portfolio? That is the type of link you would supply there.
The same concept would work for the seyret component.
The same concept would work for the seyret component.
- Mon Dec 10, 2007 10:31 pm
- Forum: Joombie Coding Q/A
- Topic: editing com_search to find more from other components
- Replies: 16
- Views: 5512
Re: editing com_search to find more from other components
Is there an eportfolio component? If so, does it have a task labeled view? Or include a feed id ?
- Mon Dec 10, 2007 10:01 pm
- Forum: Joombie Coding Q/A
- Topic: editing com_search to find more from other components
- Replies: 16
- Views: 5512
Re: editing com_search to find more from other components
The FROM statement is telling you which table in the database to get the results from. Joomla! will replace the #__ of the table names with the database prefix as defined in the configuration.php file. The _SEARCH_NEWSFEEDS inside the parenthesis is a variable. Previously in that file that variabl...
- Mon Dec 10, 2007 3:06 pm
- Forum: Joombie Coding Q/A
- Topic: editing com_search to find more from other components
- Replies: 16
- Views: 5512
Re: editing com_search to find more from other components
The query you listed was to extract the parameters for that mambot (plugin). To see the other queries, you will need to scroll further down.
- Sun Dec 09, 2007 6:29 am
- Forum: Joomla! Coding 101
- Topic: how to include a php and others file within joomla 1.5
- Replies: 2
- Views: 1769
Re: how to include a php and others file within joomla 1.5
To add a javascript file, use addScript from JDocument.
To add a style sheet (css) file, use addStyleSheet from JDocument as well.
To add a style sheet (css) file, use addStyleSheet from JDocument as well.
- Sun Dec 09, 2007 6:17 am
- Forum: Joombie Coding Q/A
- Topic: How to add users to a Joomla installation?
- Replies: 1
- Views: 882
Re: How to add users to a Joomla installation?
bascherz mentions a few more tables in regards to adding new users.
- Sun Dec 09, 2007 6:13 am
- Forum: Joombie Coding Q/A
- Topic: editing com_search to find more from other components
- Replies: 16
- Views: 5512
Re: editing com_search to find more from other components
I don't have my main dev machine here, but I just downloaded joomla to the pc I am to start poking around the files and it seems I don't have a plugin folder anywhere. I see a modules and components but no plugins folder. Thanks, Shane You did not specify which version of Joomla! you are referring...
- Mon Nov 26, 2007 6:11 am
- Forum: Joombie Coding Q/A
- Topic: Notice: Undefined index:
- Replies: 1
- Views: 1209
Re: Notice: Undefined index:
It looks like you need to extract the object from the items array. did you notice the second opening brace " { " in the array? array(1) { [0]=> object(stdClass)#117 (20) [color=#f00]{[/color] ["id"]=> string(1) "1" ["name"]=> string(4) "well" [&q...
- Mon Nov 19, 2007 5:11 pm
- Forum: Joombie Coding Q/A
- Topic: how do i get the $params->get to work from within a function ?
- Replies: 2
- Views: 1421
Re: how do i get the $params->get to work from within a function ?
Thanks for posting your solution.
- Mon Nov 19, 2007 5:09 pm
- Forum: Joombie Coding Q/A
- Topic: Technical Question: Front End Access to Components
- Replies: 2
- Views: 1267
Re: Technical Question: Front End Access to Components
I'm not in the veteran php or Joomla developr status, but what would be the purpose of this? The security for the backend components has already been put in place for the existing user types. If you are going to be modifying your web site, do you really want to do that from the front end? Just aski...
- Sat Nov 10, 2007 1:00 pm
- Forum: Joombie Coding Q/A
- Topic: Plugin - editing body and inserting scripts
- Replies: 4
- Views: 2101
Re: Plugin - editing body and inserting scripts
I'm not much of a php / joomla developer, yet.
Will these scripts be the same on all pages? If they will be the same, can you put this into the template?
Or are they database driven? I wouldn't know how to do this at the moment.
Will these scripts be the same on all pages? If they will be the same, can you put this into the template?
Or are they database driven? I wouldn't know how to do this at the moment.
- Fri Nov 09, 2007 8:12 pm
- Forum: Joomla! Coding 101
- Topic: How to make this mambot
- Replies: 4
- Views: 1983
Re: How to make this mambot
I'm sorry that you did not receive a quicker response to your request. However, please remember, the other members that post in this forum are volunteering their time and experience. The ones that could have answered your question may have been tied up at the moment and thus, where not able to see...
- Fri Nov 09, 2007 8:05 pm
- Forum: Joombie Coding Q/A
- Topic: Find the last list item dynamically
- Replies: 3
- Views: 1389
Re: Find the last list item dynamically
1.0.13 Thanks, Dan I'm assuming you are using the stock menu. You might check this file, /modules/mod_mainmenu.php, as a start. I'm not certain at this time which line to start looking. However, I would think if you searched that file for elements you see in your web page source code, you should...
- Thu Nov 08, 2007 8:08 pm
- Forum: Joombie Coding Q/A
- Topic: Find the last list item dynamically
- Replies: 3
- Views: 1389
Re: Find the last list item dynamically
Which version? 1.5 or 1.0.x?
- Sun Nov 04, 2007 6:19 pm
- Forum: Joomla! Coding 101
- Topic: How to get section and categorie id?
- Replies: 6
- Views: 4593
Re: How to get section and categorie id?
I only mentioned that as the OP requested for Joomla 1.5.
- Sun Nov 04, 2007 2:03 pm
- Forum: Joomla! Coding 101
- Topic: How to get section and categorie id?
- Replies: 6
- Views: 4593
Re: How to get section and categorie id?
Is this the correct way for 1.5? I thought the mos was no longer used in 1.5.lobos wrote: Do you see the id's come up in the URI / URL ? - if so you can get the id like this:
$id = mosGetParam( $_REQUEST, 'id', '' );
-Lobos
- Sat Nov 03, 2007 5:21 pm
- Forum: Joomla! Coding 101
- Topic: Add User into Joomla DB from 3rd Party Script
- Replies: 4
- Views: 1995
Re: Add User into Joomla DB from 3rd Party Script
Aren't there some other tables that are required to be updated?
- Thu Nov 01, 2007 6:06 pm
- Forum: Joomla! Coding 101
- Topic: how to solve if Value does not insert into database...
- Replies: 4
- Views: 1781
Re: how to solve if Value does not insert into database...
If the `id` is an auto_increment based field, you can omit it from the SQL statement. However, this requires you to specify all of the other fields you are trying to insert. Maybe something like this: $add_query="INSERT INTO sponsors (`sponsoring_id`, `sponsored_id`) VALUES ('$_REQ...
- Thu Nov 01, 2007 5:59 pm
- Forum: Joomla! Coding 101
- Topic: double controller?
- Replies: 2
- Views: 1060
Re: double controller?
Looking at the weblinks component, it has additional controllers for certain parts.
- Sat Oct 27, 2007 2:42 pm
- Forum: Joombie Coding Q/A
- Topic: Understanding how to better communicate with other files in a component
- Replies: 3
- Views: 1045
Re: Understanding how to better communicate with other files in a component

- Sat Oct 27, 2007 3:14 am
- Forum: Sites & Infrastructure - Feedback/Information
- Topic: Found a not very nice google ad when searching for Joomla
- Replies: 8
- Views: 2198
Re: Found a not very nice google ad when searching for Joomla
Okay, I moved this here because I couldn't figure out what forum it should go in and my fellow moderators said to put it here. It's sad that there are anti-Joomla! ads out there, but there is nothing we can really do about it, except maybe try to make sure they aren't served on the joomla.org sites...
- Sat Oct 27, 2007 2:53 am
- Forum: Joombie Coding Q/A
- Topic: Understanding how to better communicate with other files in a component
- Replies: 3
- Views: 1045
Re: Understanding how to better communicate with other files in a component
I can't help you with the coding for 1.0.x because I have not coded for that version. I don't see myself going that route at the moment either, since 1.5 component development seems to be pretty easy to pick up.
I am interested in your csv upload routine.
I am interested in your csv upload routine.
- Fri Oct 26, 2007 3:13 am
- Forum: Joombie Coding Q/A
- Topic: PHP conditional based on page/section other than 'frontpage'
- Replies: 5
- Views: 1283
Re: PHP conditional based on page/section other than 'frontpage'
You could use two separate templates.
Also, if you know if the visitor is on the front page, can you not reverse that check to determine when you are not on the front page?
Also, if you know if the visitor is on the front page, can you not reverse that check to determine when you are not on the front page?
- Thu Oct 25, 2007 9:03 pm
- Forum: Joombie Coding Q/A
- Topic: Invalid arguement supplied for a view?
- Replies: 9
- Views: 1264
Re: Invalid arguement supplied for a view?
It's been so long since I installed, I can't remember.
It appears to be Server version 4.0.18 and Client version of 5.0.0. Looks like I may need to update it.
It appears to be Server version 4.0.18 and Client version of 5.0.0. Looks like I may need to update it.