Search found 30 matches

by jlleblanc
Wed Feb 13, 2008 9:08 pm
Forum: Sites & Infrastructure - Feedback/Information
Topic: What happened to the forum today???
Replies: 221
Views: 137998

Re: What happened to the forum today???

One practical question if I can .... are any plans in place to manage the old forum URLs? They are referenced in 1000s of forum posts here and articles across the net (plus Google of course, which has 180,000 of them). Did a little testing with URLs posted on the forum on my site. URLs in the forma...
by jlleblanc
Tue Oct 16, 2007 7:10 pm
Forum: Joomla! Coding 101
Topic: Post a form and index.php
Replies: 4
Views: 1611

Re: Post a form and index.php

You need an echo before $mosConfig_live_site.
by jlleblanc
Tue Oct 16, 2007 1:34 am
Forum: Joomla! Coding 101
Topic: Post a form and index.php
Replies: 4
Views: 1611

Re: Post a form and index.php

Hello timgerr, Are you putting this form in a component and trying to get back to the component, or are you putting it into an article and trying to get back to the article? If it's the former, setting option=com_nameofyourcomponent should do the trick. Otherwise, you will need to redirect back to t...
by jlleblanc
Mon Oct 01, 2007 1:04 pm
Forum: Joomla! Coding 101
Topic: Questions from a future coder
Replies: 2
Views: 1480

Re: Questions from a future coder

I'm a computer science major and I'm looking into learning/programming/installing Joomla sites, templates, and extensions. I have a few questions for anyone who has experience with freelance programming for Joomla. How much demand is there for installing sites and designing custom templates and ext...
by jlleblanc
Thu Sep 13, 2007 5:01 pm
Forum: Joomla! Coding 101
Topic: web relevant path
Replies: 1
Views: 1334

Re: web relevant path

I believe JURI::base() is what you're looking for.
by jlleblanc
Wed Sep 12, 2007 12:58 pm
Forum: Joomla! Coding 101
Topic: developing
Replies: 3
Views: 1799

Re: developing

There isn't any 1.0.x component development book that I'm aware of. The changes are a little too numerous to list and it really depends on what your component does. Execution still starts at components/com_yourcom/yourcom.php and administrator/components/com_yourcom/admin.yourcom.php, but that's whe...
by jlleblanc
Tue Sep 11, 2007 1:03 pm
Forum: Joomla! Coding 101
Topic: developing
Replies: 3
Views: 1799

Re: developing

Yes, there are significant code changes between 1.0.x and 1.5.x; code written for 1.5 will not work in 1.0. The general concepts of components, modules, and plugins are still the same though.
by jlleblanc
Tue Sep 11, 2007 12:50 pm
Forum: Joombie Coding Q/A
Topic: Going Crazy!!!! :S
Replies: 4
Views: 1713

Re: Going Crazy!!!! :S

Most of the documentation effort is now going into 1.5. The 1.0.x documentation was never really complete.
by jlleblanc
Mon Sep 10, 2007 12:38 pm
Forum: Joombie Coding Q/A
Topic: Going Crazy!!!! :S
Replies: 4
Views: 1713

Re: Going Crazy!!!! :S

If you have 'option' has a hidden variable in your form and set it to 'com_redesocialcascais', it should work. Like this:

Code: Select all

<input type="hidden" name="option" value="com_redesocialcascais" />
by jlleblanc
Sat Sep 08, 2007 3:23 pm
Forum: Joomla! Coding 101
Topic: Daily Message, updated for Joomla! 1.5
Replies: 7
Views: 3699

Re: Daily Message, updated for Joomla! 1.5

I tried it again and it seems to work when I upload it without the FTP layer, but with writable components directories. The bizarre thing is that the FTP isn't doing it right even though I'm using username that owns all of the files in the directory. Could be an FTP configuration issue  :-\
by jlleblanc
Wed Sep 05, 2007 1:19 pm
Forum: Joomla! Coding 101
Topic: Daily Message, updated for Joomla! 1.5
Replies: 7
Views: 3699

Re: Daily Message, updated for Joomla! 1.5

Thanks for pointing this out. I had it working on RC1, but when I try to install it on RC2, it's giving me a file permission error as well; it can't read the XML file. It appears that regardless of the permissions of the tmp folder and the permissions of the files in the .zip, the XML file permissio...
by jlleblanc
Mon Sep 03, 2007 5:21 pm
Forum: Joombie Coding Q/A
Topic: Binary Upload
Replies: 19
Views: 8413

Re: Binary Upload

To handle file uploads, you want to use JFile after getting the variable through JRequest. Here's an example snippet from my iWebCal component: $file = JRequest::getVar( 'calendar', '', 'files', 'array' ); $filename = ''; if(isset($file) && is_array($file) && $file['name'] != '') { $fullfilename = J...
by jlleblanc
Wed Aug 22, 2007 6:27 pm
Forum: Joomla! Coding 101
Topic: Daily Message, updated for Joomla! 1.5
Replies: 7
Views: 3699

Daily Message, updated for Joomla! 1.5

A copy of the Daily Message component tutorial for Joomla! 1.5 is now available at m . An installable copy of the component is available for download so you can click through as you read along. Much like the original tutorial, it takes you through a complete create, read, update, delete component al...
by jlleblanc
Mon Aug 13, 2007 12:57 pm
Forum: Joombie Coding Q/A
Topic: How to clean array before writing in database?
Replies: 10
Views: 4987

Re: How to clean array before writing in database?

Yeah, you're using JTable, it's escaping them. When you save the escaped variables to the database, the extra slashes do not appear in them. The SQL string going to the database will contain them, but you won't see them in the final database listing. To get your HTML to come through, make sure that ...
by jlleblanc
Sun Aug 12, 2007 10:04 pm
Forum: Joombie Coding Q/A
Topic: How to clean array before writing in database?
Replies: 10
Views: 4987

Re: How to clean array before writing in database?

If your model is eventually using the store() function of JTable objects to add data to the database, it should automatically escape your variables with slashes.
by jlleblanc
Thu Aug 09, 2007 4:06 pm
Forum: Joombie Think Tank
Topic: Why Components AND Modules ? (Instead of just Modules.)
Replies: 22
Views: 11676

Re: Why Components AND Modules ? (Instead of just Modules.)

Wouldn't it be easier to just expand the XML schema for the installer so that you could have one XML file install more than one type of extension at a time? That is, why not have a package installer syntax that could install one or more components, modules, and plug-ins during a single admin-initia...
by jlleblanc
Thu Aug 09, 2007 2:05 pm
Forum: Joombie Think Tank
Topic: Why Components AND Modules ? (Instead of just Modules.)
Replies: 22
Views: 11676

Re: Why Components AND Modules ? (Instead of just Modules.)

Joomla! already has this through search plugins. You create a search plugin to go along with your component and you define what gets returned in the results when a search is performed. hi and thanks.. the reason i ask i that i don't want to have to create a search plug in to go with my component/mo...
by jlleblanc
Thu Aug 09, 2007 1:11 pm
Forum: Joombie Think Tank
Topic: Why Components AND Modules ? (Instead of just Modules.)
Replies: 22
Views: 11676

Re: Why Components AND Modules ? (Instead of just Modules.)

I think the built-in Joomla search function searches only the meta data entered for articles and perhaps the article text itself. After all, that's really the only content Joomla proper manages. Other content is managed by extensions. What would seem to make sense (and is probably what you are tryi...
by jlleblanc
Sun Jul 22, 2007 3:28 am
Forum: Announcements Discussions
Topic: Discuss: Austin ... the Joomla! has Landed
Replies: 28
Views: 27578

Re: Discuss: Austin ... the Joomla! has Landed

Excellent! I have a work in progress ready to be migrated over :)

(don't worry, it doesn't need to be live for a while yet)
by jlleblanc
Thu May 24, 2007 6:57 pm
Forum: Joomla!days and Community Meetings
Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
Replies: 135
Views: 85436

Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]

Sounds good to me... you can't count on the weather ;)
by jlleblanc
Tue May 22, 2007 12:46 pm
Forum: Joomla!days and Community Meetings
Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
Replies: 135
Views: 85436

Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]

Rogue4ngel wrote:Should we all get Joomla shirts?


You should get a Joomla! shirt anyway :P
by jlleblanc
Wed Apr 04, 2007 3:27 pm
Forum: Non-Profit Organizations and Joomla!
Topic: Joomla Bible Component
Replies: 6
Views: 3963

Re: Joomla Bible Component

I'd consider doing this if my todo list didn't already stretch from here to infinity  :( If someone wants to take it up and just needs some direction with developing components, contact me.
by jlleblanc
Sun Apr 01, 2007 6:20 pm
Forum: Joomla!days and Community Meetings
Topic: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]
Replies: 135
Views: 85436

Re: East Coast US Joomla Users [NYC/Manhattan Joomla!Day]

I'm definitely coming up from DC for Joomla! Day NYC. Would also be willing to help; let me know.
by jlleblanc
Fri Dec 01, 2006 11:03 pm
Forum: Non-Profit Site Showcase
Topic: I'll throw our church site into the mix
Replies: 13
Views: 11037

Re: I'll throw our church site into the mix

Using the podcasting suite, I see :) Let me know if you need any help with that.
by jlleblanc
Thu Oct 12, 2006 8:22 pm
Forum: Announcements Discussions
Topic: Discuss : Joomla! 1.5 Beta Release Date Announced
Replies: 203
Views: 162969

Re: Discuss : Joomla! 1.5 Beta Release Date Announced

Running smooth and clean here on the Mac Mini  ;D
by jlleblanc
Thu Oct 12, 2006 3:41 pm
Forum: Announcements Discussions
Topic: Discuss : Joomla! 1.5 Beta Release Date Announced
Replies: 203
Views: 162969

Re: Discuss : Joomla! 1.5 Beta Release Date Announced

The forge is craaaaaawwwwling right now... everyone quit hitting refresh!  :P :P :P

(*ducks out and checks the other tabs*)

Is anyone going to torrent this?
by jlleblanc
Thu Sep 28, 2006 1:50 pm
Forum: Joomla!days and Community Meetings
Topic: PHP Conference in DC
Replies: 1
Views: 3027

Re: PHP Conference in DC

The conference is only three weeks away! If anyone out there is planning on attending, email [email protected] so I can get a head count of Joomla people. If there are enough of us attending, I might be able to arrange a BOF session.
by jlleblanc
Fri Sep 08, 2006 2:05 pm
Forum: Joomla!days and Community Meetings
Topic: PHP Conference in DC
Replies: 1
Views: 3027

PHP Conference in DC

Hello everyone, We're holding an inaugural PHP conference ( m ) here in Washington, DC on October 19-20th. Our goal is to get more government agencies, non-profits, and NGOs to use PHP (on which Joomla is based) and other open source tools instead of things like ColdFusion (you'd be AMAZED at how mu...
by jlleblanc
Wed Sep 21, 2005 1:25 am
Forum: Non-Profit Site Showcase
Topic: Lifestyle4Peace.org, Loretto.at, Assign item to 2+ categories, Podcast needed
Replies: 2
Views: 2396

Re: Lifestyle4Peace.org, Loretto.at, Assign item to 2+ categories, Podcast need

miau wrote:In the near future i would like to publish podcasts but have no idea what is needed. Would be great if some expert would make a component for this.


You called? http://developer.joomla.org/sf/sfmain/d ... cast_suite

Take it for a spin and let me know how it works out for you.
by jlleblanc
Wed Aug 31, 2005 1:42 am
Forum: Announcements Discussions
Topic: Project Name Chosen- Discussion
Replies: 274
Views: 182154

Re: Project Name Chosen- Discussion

For those of you who say more time should be allotted, here's another thing to consider: how long do you think the name can honestly be kept secret once an announcement outside the core team has been made? We would hope that everyone would play nicely and keep it a secret until the official announce...