http://digg.com/software/Joomla_1_5_Goes_Gold!!!
Congrats to all that were involved!!!
Search found 48 matches
- Tue Jan 22, 2008 7:17 am
- Forum: Announcements Discussions
- Topic: Discuss: Ladies and Gentlemen... here
- Replies: 126
- Views: 23975
- Tue Jan 08, 2008 3:19 am
- Forum: Schools and Universities
- Topic: What actually is open source & making money from it
- Replies: 6
- Views: 2765
Re: What actually is open source & making money from it
and 1 question, like for MySQL its Dual License right? it has a free open source version and an enterprise one. and the enterprise one is Open Source? or proprietary? and if like one gets it, can he/she install it on ALL servers? or is it like Windows? u pay for EACH server? and i think for the mon...
- Tue Jan 08, 2008 3:04 am
- Forum: Joomla!days and Community Meetings
- Topic: What's the best use of peoples' time in User Group meetings?
- Replies: 7
- Views: 1820
Re: What's the best use of peoples' time in User Group meetings?
We've been meeting (here in New York) for about 5 months now, and so far, we have felt the following system seems to work best (for a 2.5 hour meeting). Alternating months Even month: start: 30 minutes of general "introduction" and q&a body: 2 one hour presentations (on relatively major topics rangi...
- Tue Jan 08, 2008 2:09 am
- Forum: Joomla!days and Community Meetings
- Topic: Vancouver Joomla! Day - June 14, 2008
- Replies: 31
- Views: 8687
Re: Vancouver Joomla! Day - June 14, 2008
(Going on Vacation to Vancouver and Seatle with a few friends) It will be a great trip! Both are beautiful cities and similar in many respects. Hoping to see you in our area in June. I just talked to my friend, and we are in. Going to fly into Seattle on Tues (6-10), go up t...
- Sun Jan 06, 2008 4:43 am
- Forum: Schools and Universities
- Topic: What actually is open source & making money from it
- Replies: 6
- Views: 2765
Re: What actually is open source & making money from it
Well, if you buy RedHat, you get their support. If you get a "non official" copy (while perfectly legal, see CentOS), you don't get any support. That's why people buy RedHat... The support. And because they are arguably the best, they can charge a LOT for the code, and people pay i...
- Sun Jan 06, 2008 3:53 am
- Forum: Joomla!days and Community Meetings
- Topic: Vancouver Joomla! Day - June 14, 2008
- Replies: 31
- Views: 8687
Re: Vancouver Joomla! Day - June 14, 2008
I'm going to be in Vancouver, but not until August or September (Going on Vacation to Vancouver and Seatle with a few friends). I may see if we can change this date to coinceed with J!Day...
- Fri Jan 04, 2008 1:53 pm
- Forum: Joombie Coding Q/A
- Topic: [SOLVED] Problems with MySQL INSERT, UPDATE, and DELETE
- Replies: 9
- Views: 1323
Re: Problems with MySQL INSERT, UPDATE, and DELETE
Actually, the way it works is that when you exectue a Select statement, one of the methods to load the data (like $database->loadObjectList()) actually executes $database->query()... So if you're not loading the results, you need to exectue it manually...
- Thu Jan 03, 2008 2:15 pm
- Forum: Joombie Coding Q/A
- Topic: [SOLVED] Problems with MySQL INSERT, UPDATE, and DELETE
- Replies: 9
- Views: 1323
Re: Problems with MySQL INSERT, UPDATE, and DELETE
How are you executing the query?
Code: Select all
$sql = "DELETE blah FROM blah";
$database->setQuery($sql);
if(!$database->query()) echo $database->getErrorMsg();
- Wed Dec 05, 2007 7:03 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
For those of you who are not on the email list, the December meeting for the New York JUG (Joomla User Group) has been moved to tomorrow night, December 6th. This is because of the OrgCom holidfay party http://www.orgcom.info/holiday...
http://www.joomlanyc.org
http://www.joomlanyc.org
- Wed Nov 21, 2007 6:10 pm
- Forum: Joombie Think Tank
- Topic: Class problem
- Replies: 7
- Views: 2623
Re: Class problem
Glad to hear it!
- Wed Nov 21, 2007 6:02 pm
- Forum: Joombie Think Tank
- Topic: Class problem
- Replies: 7
- Views: 2623
Re: Class problem
Now, the question is, do you see why that works?
Take a look at /libraries/joomla/html/html/select.php...
Take a look at /libraries/joomla/html/html/select.php...
- Wed Nov 21, 2007 4:44 pm
- Forum: Joombie Think Tank
- Topic: Class problem
- Replies: 7
- Views: 2623
Re: Class problem
What you do, is something like this
where name_to_use is the name of the select tag...
Code: Select all
foreach ($weblinks as $link) {
$options[] = JHTMLselect::option($link->url, $link->url);
}
$html = JHTMLselect::genericlist($options, "name_to_use");
echo $html;
where name_to_use is the name of the select tag...
- Wed Nov 21, 2007 3:55 pm
- Forum: Joombie Think Tank
- Topic: Class problem
- Replies: 7
- Views: 2623
Re: Class problem
Well, you need to load it. Before the foreach loop, try adding this:
Code: Select all
jimport("joomla.html.html.select");
- Tue Nov 06, 2007 6:46 pm
- Forum: Joomla! Extensions Directory Forum
- Topic: two bad votes in 2 hour ....
- Replies: 12
- Views: 1994
Re: two bad votes in 2 hour ....
The other option, would be to wieght the votes (ok, it's getting complicated, but)... A vote by itself counts as 1 vote, but a vote tied to a review counts as 2... That way you can get a feel for how many people don't like an extension, but are willing to say something about it...
- Fri Oct 26, 2007 8:38 pm
- Forum: Joomla! Extensions Directory Forum
- Topic: [FIXED] Why no entry with more than 50 votes has more than 4 stars
- Replies: 21
- Views: 3412
Re: Why no extension with more than 50 votes has more than 4 stars
Well, apart from the fact that rounding errors should not exist at all since they always accumulate to a larger problem... What you describe is just what I wrote about before. The problem is not the part you write about though, but the fact that this new rating is truncated by the database table, w...
- Fri Oct 26, 2007 8:23 pm
- Forum: Joomla! Extensions Directory Forum
- Topic: [FIXED] Why no entry with more than 50 votes has more than 4 stars
- Replies: 21
- Views: 3412
Re: Why no extension with more than 50 votes has more than 4 stars
I think they are doing it backwards... The way they are doing it, rounding errors will be exasorbated... Try something like this. you have 2 fields in DB , rating and count. when you get a new vote (call it vote) new_rating = (rating + (vote - rating)/count) Rounding errors will be reduc...
- Fri Oct 19, 2007 11:14 am
- Forum: Joomla! Extensions Directory Forum
- Topic: When are Editor's Picks updated?
- Replies: 2
- Views: 657
Re: When are Editor's Picks updated?
Well, thanks! I was just curious, because it seems like a few of them fell by the wayside (havn't been updated in a while) (not saying this is reason to pull them at all). Glad to see it wasn't a forgotten feature...
What about doing a "Extension of the week/month/year"?
What about doing a "Extension of the week/month/year"?
- Thu Oct 18, 2007 8:13 pm
- Forum: Joomla! Extensions Directory Forum
- Topic: When are Editor's Picks updated?
- Replies: 2
- Views: 657
When are Editor's Picks updated?
I noticed that the "Editor's Picks" really havn't changed at all in the past year or so. Just curious if this is a dead issue, or if the editors are still actively maintaining the list (but there just havn't been new "pick worthy" extensions)?
- Thu Oct 18, 2007 7:36 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
With all the demand for the event, I definitely see us putting on a Joomla Day USA Mid-Atlantic (think Washington DC) soon! Of course, I'll go through the proper channels first to get this moving forward. You're not kidding on that one! At are JUG meeting 2 nights earlier, there were pe...
- Mon Oct 15, 2007 12:49 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
Well, let me be the first to say, I think the first JoomlaDay East was a great Success! I think I speak for most that attended, it was a great time! I want to thank all the organizers, speakers, and Google for making the day possible. I just wish there were more of these...
- Tue Oct 09, 2007 2:41 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
Is there going to be official Joomla rep. there?
- Mon Oct 08, 2007 4:20 pm
- Forum: Joombie Coding Q/A
- Topic: change the permission of all users
- Replies: 13
- Views: 2310
Re: change the permission of all users
This will sync your jos_core_acl_groups_aro_map with jos_users
Code: Select all
UPDATE jos_core_acl_groups_aro_map AS a
JOIN jos_core_acl_aro AS b ON a.aro_id = b.aro_id
JOIN jos_users AS c ON b.value = c.id
SET a.group_id = c.gid
- Fri Sep 28, 2007 3:55 pm
- Forum: Announcements Discussions
- Topic: Discuss: Joomla! in The Big Apple (New York Joomla!Day)
- Replies: 10
- Views: 5051
Re: Discuss: Joomla! in The Big Apple (New York Joomla!Day)
Well, I've got my spot (and will be there)!
just as an FYI to everyone, the next NYC JUG (Joomla User Group) is meeting on October 11th (the Thursday before hand). Check out the thread for it at http://forum.joomla.org/index.php/topic,149660.90.html.
just as an FYI to everyone, the next NYC JUG (Joomla User Group) is meeting on October 11th (the Thursday before hand). Check out the thread for it at http://forum.joomla.org/index.php/topic,149660.90.html.
- Thu Sep 20, 2007 5:42 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
Reminder: The next Joomla meeting will be Thursday, Sepember 20th at the NYPHP offices located in Manhattan at 55 Broad Street. We will start at 6:00PM and run until 9PM. Presentation: Mitch Pertle will be running a presentation on Joomla 1.5 and development, I beleive. Plus we get a chance t...
- Wed Sep 19, 2007 1:01 pm
- Forum: Joomla! Extensions Directory Forum
- Topic: Submission Times
- Replies: 4
- Views: 946
Re: Submission Times
Right now, I think it's around 2 or 3 days...
- Tue Sep 18, 2007 7:00 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
That will actually fit in nicely with JoomlaDay (seeing how that is in like 3 weeks)...
- Tue Sep 18, 2007 3:41 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
I'm sure we're going to have one in December... Just watch this thread for more info...
Alright, I just registered www.joomlanyc.org... It'll be a little while (or if anyone wants to help) before I can get it up, but it's comming...
Alright, I just registered www.joomlanyc.org... It'll be a little while (or if anyone wants to help) before I can get it up, but it's comming...
- Mon Sep 17, 2007 2:15 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
I'm registerd... I'll also be there this Thursday...
- Mon Aug 27, 2007 1:49 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
Well, I could do one of two things. Either making a quick and simple mambot/module/component/plugin... Or a talk on Performance issues with Joomla (since that is kinda my specialty)
- Fri Aug 24, 2007 9:01 pm
- Forum: Joomla!days and Community Meetings
- Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
- Replies: 135
- Views: 39608
Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
If no one else wants to do the presentation, I could always whip together a little demo on building a component (or a module, or a mambot, depending on the "comfort" level of the croud)...