From davidalanroth at gmail.com Wed Aug 1 10:40:33 2012 From: davidalanroth at gmail.com (David Roth) Date: Wed, 1 Aug 2012 10:40:33 -0400 Subject: [joomla] Converting a HTML/JavaScript page to be a module in Joomla In-Reply-To: References: <1343738579.87599.YahooMailNeo@web125501.mail.ne1.yahoo.com> Message-ID: Thanks, Chris & Donna for your postings. Very helpful! I got it working as a module. Now that this is a big requirement for this module, but I was wondering how do I take the JavaScript and put it in it's own file so that the module can find it? Thanks! David Roth On Tue, Jul 31, 2012 at 4:19 PM, Christopher French wrote: > Your probably best to just make your own module. > > Make a module in joomla is very easy it is the easiest thing to make. > > You could just copy a module xml from another folder or download a hello > world module. > > At the most basic level you could just copy an xml file from any module > than, > > Put in a folder name it mod_david_table.xml open it up and change the info > to yours > > Create an empty file called mod_david_table.php in the same folder and > just copy all you html and javascript right into that file and just have no > php. As you learn you can update your module to use templates helpers and > caching if you want. > > That is better than disabling js in your wysiwg editor. > > Last sstep is you zip of your two files and install them > > On Tue, Jul 31, 2012 at 5:42 AM, Donna Marie Vincent < > donnamarievincent at yahoo.com> wrote: > >> 1. You can set your editor to *not* filter out the javascript. >> >> 2. It is very easy to create a simple module and put your code in it. >> (I have a tutorial for it but it's not updated for 2.5. The main >> difference is that you now need to register modules in the database in the >> #__extensions table.) There are probably up-to-date tutorials on YouTube >> for doing this. Once you see how easy it is, you won't both spending time >> looking for extensions that fit, you'll just make your own! >> >> >> >> ------------------------------ >> *From:* David Roth >> *To:* NYPHP SIG: Joomla >> *Sent:* Tuesday, July 31, 2012 6:54 AM >> *Subject:* [joomla] Converting a HTML/JavaScript page to be a module in >> Joomla >> >> I have a JavaScript program which does some simple calculations. It >> emulates what you would do in a spreadsheet. It isn't fancy, but it is >> functional and I want to make a Joomla module out of it. I didn't write a >> CSS for this because it was intended to be used in Joomla from the start >> and I want it to inherit the Joomla CSS that's resident. >> >> My first thought was, create a custom HTML module, go into HTML editing >> mode and paste the HTML page with it's JavaScript in there. >> >> The result is, it didn't work. It kept the HTML formatting of the page, >> but it filtered out all the JavaScript. There are no external files >> referencing the JavaScript and jQuery is not being used. Maybe it needs to >> be an actual mod_david_calc and that will do it? But I must be missing >> something else in order to do that. Can't imagine getting away from free in >> Joomla without having to call some Joomla function to make it work. :-) >> >> So then I spent time searching and it appears some sort of special >> treatment is needed for your own JavaScript to be available in Joomla. >> >> Why I'm posting about this, is that I would like to get some direction as >> to what is the best way to do this. Is there a favorite Joomla extension >> people use to help make all this happen? Also, should it be a module or >> can/should it be a Joomla Article for this JavaScript calc program? It only >> needs to appear on one page. Thanks! >> >> David Roth >> >> _______________________________________________ >> New York PHP SIG: Joomla! Mailing List >> http://lists.nyphp.org/mailman/listinfo/joomla >> >> NYPHPCon 2006 Presentations Online >> http://www.nyphpcon.com >> >> Show Your Participation in New York PHP >> http://www.nyphp.org/show_participation.php >> >> >> _______________________________________________ >> New York PHP SIG: Joomla! Mailing List >> http://lists.nyphp.org/mailman/listinfo/joomla >> >> NYPHPCon 2006 Presentations Online >> http://www.nyphpcon.com >> >> Show Your Participation in New York PHP >> http://www.nyphp.org/show_participation.php >> > > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidalanroth at gmail.com Wed Aug 1 10:43:53 2012 From: davidalanroth at gmail.com (David Roth) Date: Wed, 1 Aug 2012 10:43:53 -0400 Subject: [joomla] Can't hide print and mail icons in Article from options on Article Message-ID: If I go to the Article Manager and change it to hide the print and mail icons, it is not displayed on the Article. But if I do a hide just on the Article options of the print and mail icon they are still displayed. I thought hide in the Article does an override of the Global from the Article Manager. Anyone else have this problem or am I missing something? Thanks! David Roth -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact at chrisfrench.me Wed Aug 1 11:11:59 2012 From: contact at chrisfrench.me (Christopher French) Date: Wed, 1 Aug 2012 08:11:59 -0700 Subject: [joomla] Converting a HTML/JavaScript page to be a module in Joomla In-Reply-To: References: <1343738579.87599.YahooMailNeo@web125501.mail.ne1.yahoo.com> Message-ID: Create a folder called js in your module folder (this is to make it easier in your xml file, and to keep things nice.) Than you create a js file in that folder name it whatever makes sense, and in your module file mod_david_table.php Add JHTML::_('script', 'nameoffile.js' 'modules/mod_david_table/js/'); Please check that for typos I typed it on my phone. On Aug 1, 2012 7:40 AM, "David Roth" wrote: > Thanks, Chris & Donna for your postings. Very helpful! > > I got it working as a module. > > Now that this is a big requirement for this module, but I was wondering > how do I take the JavaScript and put it in it's own file so that the module > can find it? Thanks! > > David Roth > > > On Tue, Jul 31, 2012 at 4:19 PM, Christopher French < > contact at chrisfrench.me> wrote: > >> Your probably best to just make your own module. >> >> Make a module in joomla is very easy it is the easiest thing to make. >> >> You could just copy a module xml from another folder or download a hello >> world module. >> >> At the most basic level you could just copy an xml file from any module >> than, >> >> Put in a folder name it mod_david_table.xml open it up and change the >> info to yours >> >> Create an empty file called mod_david_table.php in the same folder and >> just copy all you html and javascript right into that file and just have no >> php. As you learn you can update your module to use templates helpers and >> caching if you want. >> >> That is better than disabling js in your wysiwg editor. >> >> Last sstep is you zip of your two files and install them >> >> On Tue, Jul 31, 2012 at 5:42 AM, Donna Marie Vincent < >> donnamarievincent at yahoo.com> wrote: >> >>> 1. You can set your editor to *not* filter out the javascript. >>> >>> 2. It is very easy to create a simple module and put your code in it. >>> (I have a tutorial for it but it's not updated for 2.5. The main >>> difference is that you now need to register modules in the database in the >>> #__extensions table.) There are probably up-to-date tutorials on YouTube >>> for doing this. Once you see how easy it is, you won't both spending time >>> looking for extensions that fit, you'll just make your own! >>> >>> >>> >>> ------------------------------ >>> *From:* David Roth >>> *To:* NYPHP SIG: Joomla >>> *Sent:* Tuesday, July 31, 2012 6:54 AM >>> *Subject:* [joomla] Converting a HTML/JavaScript page to be a module in >>> Joomla >>> >>> I have a JavaScript program which does some simple calculations. It >>> emulates what you would do in a spreadsheet. It isn't fancy, but it is >>> functional and I want to make a Joomla module out of it. I didn't write a >>> CSS for this because it was intended to be used in Joomla from the start >>> and I want it to inherit the Joomla CSS that's resident. >>> >>> My first thought was, create a custom HTML module, go into HTML editing >>> mode and paste the HTML page with it's JavaScript in there. >>> >>> The result is, it didn't work. It kept the HTML formatting of the page, >>> but it filtered out all the JavaScript. There are no external files >>> referencing the JavaScript and jQuery is not being used. Maybe it needs to >>> be an actual mod_david_calc and that will do it? But I must be missing >>> something else in order to do that. Can't imagine getting away from free in >>> Joomla without having to call some Joomla function to make it work. :-) >>> >>> So then I spent time searching and it appears some sort of special >>> treatment is needed for your own JavaScript to be available in Joomla. >>> >>> Why I'm posting about this, is that I would like to get some direction >>> as to what is the best way to do this. Is there a favorite Joomla extension >>> people use to help make all this happen? Also, should it be a module or >>> can/should it be a Joomla Article for this JavaScript calc program? It only >>> needs to appear on one page. Thanks! >>> >>> David Roth >>> >>> _______________________________________________ >>> New York PHP SIG: Joomla! Mailing List >>> http://lists.nyphp.org/mailman/listinfo/joomla >>> >>> NYPHPCon 2006 Presentations Online >>> http://www.nyphpcon.com >>> >>> Show Your Participation in New York PHP >>> http://www.nyphp.org/show_participation.php >>> >>> >>> _______________________________________________ >>> New York PHP SIG: Joomla! Mailing List >>> http://lists.nyphp.org/mailman/listinfo/joomla >>> >>> NYPHPCon 2006 Presentations Online >>> http://www.nyphpcon.com >>> >>> Show Your Participation in New York PHP >>> http://www.nyphp.org/show_participation.php >>> >> >> >> _______________________________________________ >> New York PHP SIG: Joomla! Mailing List >> http://lists.nyphp.org/mailman/listinfo/joomla >> >> NYPHPCon 2006 Presentations Online >> http://www.nyphpcon.com >> >> Show Your Participation in New York PHP >> http://www.nyphp.org/show_participation.php >> > > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidalanroth at gmail.com Thu Aug 2 20:16:55 2012 From: davidalanroth at gmail.com (David Roth) Date: Thu, 2 Aug 2012 20:16:55 -0400 Subject: [joomla] Converting a HTML/JavaScript page to be a module in Joomla In-Reply-To: References: <1343738579.87599.YahooMailNeo@web125501.mail.ne1.yahoo.com> Message-ID: Hi Chris. Thanks for the info! Speaking of JavaScript, anyone have experience about what to do with Table PC users to make JavaScript work for them? Something special to do in the JavaScript? Thanks! David Roth On Wed, Aug 1, 2012 at 11:11 AM, Christopher French wrote: > Create a folder called js in your module folder (this is to make it easier > in your xml file, and to keep things nice.) > > Than you create a js file in that folder name it whatever makes sense, and > in your module file mod_david_table.php > > Add JHTML::_('script', 'nameoffile.js' 'modules/mod_david_table/js/'); > > Please check that for typos I typed it on my phone. > On Aug 1, 2012 7:40 AM, "David Roth" wrote: > >> Thanks, Chris & Donna for your postings. Very helpful! >> >> I got it working as a module. >> >> Now that this is a big requirement for this module, but I was wondering >> how do I take the JavaScript and put it in it's own file so that the module >> can find it? Thanks! >> >> David Roth >> >> >> On Tue, Jul 31, 2012 at 4:19 PM, Christopher French < >> contact at chrisfrench.me> wrote: >> >>> Your probably best to just make your own module. >>> >>> Make a module in joomla is very easy it is the easiest thing to make. >>> >>> You could just copy a module xml from another folder or download a hello >>> world module. >>> >>> At the most basic level you could just copy an xml file from any module >>> than, >>> >>> Put in a folder name it mod_david_table.xml open it up and change the >>> info to yours >>> >>> Create an empty file called mod_david_table.php in the same folder and >>> just copy all you html and javascript right into that file and just have no >>> php. As you learn you can update your module to use templates helpers and >>> caching if you want. >>> >>> That is better than disabling js in your wysiwg editor. >>> >>> Last sstep is you zip of your two files and install them >>> >>> On Tue, Jul 31, 2012 at 5:42 AM, Donna Marie Vincent < >>> donnamarievincent at yahoo.com> wrote: >>> >>>> 1. You can set your editor to *not* filter out the javascript. >>>> >>>> 2. It is very easy to create a simple module and put your code in it. >>>> (I have a tutorial for it but it's not updated for 2.5. The main >>>> difference is that you now need to register modules in the database in the >>>> #__extensions table.) There are probably up-to-date tutorials on YouTube >>>> for doing this. Once you see how easy it is, you won't both spending time >>>> looking for extensions that fit, you'll just make your own! >>>> >>>> >>>> >>>> ------------------------------ >>>> *From:* David Roth >>>> *To:* NYPHP SIG: Joomla >>>> *Sent:* Tuesday, July 31, 2012 6:54 AM >>>> *Subject:* [joomla] Converting a HTML/JavaScript page to be a module >>>> in Joomla >>>> >>>> I have a JavaScript program which does some simple calculations. It >>>> emulates what you would do in a spreadsheet. It isn't fancy, but it is >>>> functional and I want to make a Joomla module out of it. I didn't write a >>>> CSS for this because it was intended to be used in Joomla from the start >>>> and I want it to inherit the Joomla CSS that's resident. >>>> >>>> My first thought was, create a custom HTML module, go into HTML editing >>>> mode and paste the HTML page with it's JavaScript in there. >>>> >>>> The result is, it didn't work. It kept the HTML formatting of the page, >>>> but it filtered out all the JavaScript. There are no external files >>>> referencing the JavaScript and jQuery is not being used. Maybe it needs to >>>> be an actual mod_david_calc and that will do it? But I must be missing >>>> something else in order to do that. Can't imagine getting away from free in >>>> Joomla without having to call some Joomla function to make it work. :-) >>>> >>>> So then I spent time searching and it appears some sort of special >>>> treatment is needed for your own JavaScript to be available in Joomla. >>>> >>>> Why I'm posting about this, is that I would like to get some direction >>>> as to what is the best way to do this. Is there a favorite Joomla extension >>>> people use to help make all this happen? Also, should it be a module or >>>> can/should it be a Joomla Article for this JavaScript calc program? It only >>>> needs to appear on one page. Thanks! >>>> >>>> David Roth >>>> >>>> _______________________________________________ >>>> New York PHP SIG: Joomla! Mailing List >>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>> >>>> NYPHPCon 2006 Presentations Online >>>> http://www.nyphpcon.com >>>> >>>> Show Your Participation in New York PHP >>>> http://www.nyphp.org/show_participation.php >>>> >>>> >>>> _______________________________________________ >>>> New York PHP SIG: Joomla! Mailing List >>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>> >>>> NYPHPCon 2006 Presentations Online >>>> http://www.nyphpcon.com >>>> >>>> Show Your Participation in New York PHP >>>> http://www.nyphp.org/show_participation.php >>>> >>> >>> >>> _______________________________________________ >>> New York PHP SIG: Joomla! Mailing List >>> http://lists.nyphp.org/mailman/listinfo/joomla >>> >>> NYPHPCon 2006 Presentations Online >>> http://www.nyphpcon.com >>> >>> Show Your Participation in New York PHP >>> http://www.nyphp.org/show_participation.php >>> >> >> >> _______________________________________________ >> New York PHP SIG: Joomla! Mailing List >> http://lists.nyphp.org/mailman/listinfo/joomla >> >> NYPHPCon 2006 Presentations Online >> http://www.nyphpcon.com >> >> Show Your Participation in New York PHP >> http://www.nyphp.org/show_participation.php >> > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact at chrisfrench.me Thu Aug 2 22:52:17 2012 From: contact at chrisfrench.me (Christopher French) Date: Thu, 2 Aug 2012 19:52:17 -0700 Subject: [joomla] Converting a HTML/JavaScript page to be a module in Joomla In-Reply-To: References: <1343738579.87599.YahooMailNeo@web125501.mail.ne1.yahoo.com> Message-ID: what is a table PC?? On Thu, Aug 2, 2012 at 5:16 PM, David Roth wrote: > Hi Chris. > > Thanks for the info! > > Speaking of JavaScript, anyone have experience about what to do with Table > PC users to make JavaScript work for them? Something special to do in the > JavaScript? Thanks! > > David Roth > > > On Wed, Aug 1, 2012 at 11:11 AM, Christopher French < > contact at chrisfrench.me> wrote: > >> Create a folder called js in your module folder (this is to make it >> easier in your xml file, and to keep things nice.) >> >> Than you create a js file in that folder name it whatever makes sense, >> and in your module file mod_david_table.php >> >> Add JHTML::_('script', 'nameoffile.js' 'modules/mod_david_table/js/'); >> >> Please check that for typos I typed it on my phone. >> On Aug 1, 2012 7:40 AM, "David Roth" wrote: >> >>> Thanks, Chris & Donna for your postings. Very helpful! >>> >>> I got it working as a module. >>> >>> Now that this is a big requirement for this module, but I was wondering >>> how do I take the JavaScript and put it in it's own file so that the module >>> can find it? Thanks! >>> >>> David Roth >>> >>> >>> On Tue, Jul 31, 2012 at 4:19 PM, Christopher French < >>> contact at chrisfrench.me> wrote: >>> >>>> Your probably best to just make your own module. >>>> >>>> Make a module in joomla is very easy it is the easiest thing to make. >>>> >>>> You could just copy a module xml from another folder or download a >>>> hello world module. >>>> >>>> At the most basic level you could just copy an xml file from any module >>>> than, >>>> >>>> Put in a folder name it mod_david_table.xml open it up and change the >>>> info to yours >>>> >>>> Create an empty file called mod_david_table.php in the same folder and >>>> just copy all you html and javascript right into that file and just have no >>>> php. As you learn you can update your module to use templates helpers and >>>> caching if you want. >>>> >>>> That is better than disabling js in your wysiwg editor. >>>> >>>> Last sstep is you zip of your two files and install them >>>> >>>> On Tue, Jul 31, 2012 at 5:42 AM, Donna Marie Vincent < >>>> donnamarievincent at yahoo.com> wrote: >>>> >>>>> 1. You can set your editor to *not* filter out the javascript. >>>>> >>>>> 2. It is very easy to create a simple module and put your code in >>>>> it. (I have a tutorial for it but it's not updated for 2.5. The main >>>>> difference is that you now need to register modules in the database in the >>>>> #__extensions table.) There are probably up-to-date tutorials on YouTube >>>>> for doing this. Once you see how easy it is, you won't both spending time >>>>> looking for extensions that fit, you'll just make your own! >>>>> >>>>> >>>>> >>>>> ------------------------------ >>>>> *From:* David Roth >>>>> *To:* NYPHP SIG: Joomla >>>>> *Sent:* Tuesday, July 31, 2012 6:54 AM >>>>> *Subject:* [joomla] Converting a HTML/JavaScript page to be a module >>>>> in Joomla >>>>> >>>>> I have a JavaScript program which does some simple calculations. It >>>>> emulates what you would do in a spreadsheet. It isn't fancy, but it is >>>>> functional and I want to make a Joomla module out of it. I didn't write a >>>>> CSS for this because it was intended to be used in Joomla from the start >>>>> and I want it to inherit the Joomla CSS that's resident. >>>>> >>>>> My first thought was, create a custom HTML module, go into HTML >>>>> editing mode and paste the HTML page with it's JavaScript in there. >>>>> >>>>> The result is, it didn't work. It kept the HTML formatting of the >>>>> page, but it filtered out all the JavaScript. There are no external files >>>>> referencing the JavaScript and jQuery is not being used. Maybe it needs to >>>>> be an actual mod_david_calc and that will do it? But I must be missing >>>>> something else in order to do that. Can't imagine getting away from free in >>>>> Joomla without having to call some Joomla function to make it work. :-) >>>>> >>>>> So then I spent time searching and it appears some sort of special >>>>> treatment is needed for your own JavaScript to be available in Joomla. >>>>> >>>>> Why I'm posting about this, is that I would like to get some direction >>>>> as to what is the best way to do this. Is there a favorite Joomla extension >>>>> people use to help make all this happen? Also, should it be a module or >>>>> can/should it be a Joomla Article for this JavaScript calc program? It only >>>>> needs to appear on one page. Thanks! >>>>> >>>>> David Roth >>>>> >>>>> _______________________________________________ >>>>> New York PHP SIG: Joomla! Mailing List >>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>> >>>>> NYPHPCon 2006 Presentations Online >>>>> http://www.nyphpcon.com >>>>> >>>>> Show Your Participation in New York PHP >>>>> http://www.nyphp.org/show_participation.php >>>>> >>>>> >>>>> _______________________________________________ >>>>> New York PHP SIG: Joomla! Mailing List >>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>> >>>>> NYPHPCon 2006 Presentations Online >>>>> http://www.nyphpcon.com >>>>> >>>>> Show Your Participation in New York PHP >>>>> http://www.nyphp.org/show_participation.php >>>>> >>>> >>>> >>>> _______________________________________________ >>>> New York PHP SIG: Joomla! Mailing List >>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>> >>>> NYPHPCon 2006 Presentations Online >>>> http://www.nyphpcon.com >>>> >>>> Show Your Participation in New York PHP >>>> http://www.nyphp.org/show_participation.php >>>> >>> >>> >>> _______________________________________________ >>> New York PHP SIG: Joomla! Mailing List >>> http://lists.nyphp.org/mailman/listinfo/joomla >>> >>> NYPHPCon 2006 Presentations Online >>> http://www.nyphpcon.com >>> >>> Show Your Participation in New York PHP >>> http://www.nyphp.org/show_participation.php >>> >> >> _______________________________________________ >> New York PHP SIG: Joomla! Mailing List >> http://lists.nyphp.org/mailman/listinfo/joomla >> >> NYPHPCon 2006 Presentations Online >> http://www.nyphpcon.com >> >> Show Your Participation in New York PHP >> http://www.nyphp.org/show_participation.php >> > > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidalanroth at gmail.com Thu Aug 2 22:53:43 2012 From: davidalanroth at gmail.com (David Roth) Date: Thu, 2 Aug 2012 22:53:43 -0400 Subject: [joomla] Converting a HTML/JavaScript page to be a module in Joomla In-Reply-To: References: <1343738579.87599.YahooMailNeo@web125501.mail.ne1.yahoo.com> Message-ID: Sorry, typo. :-) *Tablet PC* * * David Roth On Thu, Aug 2, 2012 at 10:52 PM, Christopher French wrote: > what is a table PC?? > > On Thu, Aug 2, 2012 at 5:16 PM, David Roth wrote: > >> Hi Chris. >> >> Thanks for the info! >> >> Speaking of JavaScript, anyone have experience about what to do with >> Table PC users to make JavaScript work for them? Something special to do in >> the JavaScript? Thanks! >> >> David Roth >> >> >> On Wed, Aug 1, 2012 at 11:11 AM, Christopher French < >> contact at chrisfrench.me> wrote: >> >>> Create a folder called js in your module folder (this is to make it >>> easier in your xml file, and to keep things nice.) >>> >>> Than you create a js file in that folder name it whatever makes sense, >>> and in your module file mod_david_table.php >>> >>> Add JHTML::_('script', 'nameoffile.js' 'modules/mod_david_table/js/'); >>> >>> Please check that for typos I typed it on my phone. >>> On Aug 1, 2012 7:40 AM, "David Roth" wrote: >>> >>>> Thanks, Chris & Donna for your postings. Very helpful! >>>> >>>> I got it working as a module. >>>> >>>> Now that this is a big requirement for this module, but I was wondering >>>> how do I take the JavaScript and put it in it's own file so that the module >>>> can find it? Thanks! >>>> >>>> David Roth >>>> >>>> >>>> On Tue, Jul 31, 2012 at 4:19 PM, Christopher French < >>>> contact at chrisfrench.me> wrote: >>>> >>>>> Your probably best to just make your own module. >>>>> >>>>> Make a module in joomla is very easy it is the easiest thing to make. >>>>> >>>>> You could just copy a module xml from another folder or download a >>>>> hello world module. >>>>> >>>>> At the most basic level you could just copy an xml file from any >>>>> module than, >>>>> >>>>> Put in a folder name it mod_david_table.xml open it up and change the >>>>> info to yours >>>>> >>>>> Create an empty file called mod_david_table.php in the same folder and >>>>> just copy all you html and javascript right into that file and just have no >>>>> php. As you learn you can update your module to use templates helpers and >>>>> caching if you want. >>>>> >>>>> That is better than disabling js in your wysiwg editor. >>>>> >>>>> Last sstep is you zip of your two files and install them >>>>> >>>>> On Tue, Jul 31, 2012 at 5:42 AM, Donna Marie Vincent < >>>>> donnamarievincent at yahoo.com> wrote: >>>>> >>>>>> 1. You can set your editor to *not* filter out the javascript. >>>>>> >>>>>> 2. It is very easy to create a simple module and put your code in >>>>>> it. (I have a tutorial for it but it's not updated for 2.5. The main >>>>>> difference is that you now need to register modules in the database in the >>>>>> #__extensions table.) There are probably up-to-date tutorials on YouTube >>>>>> for doing this. Once you see how easy it is, you won't both spending time >>>>>> looking for extensions that fit, you'll just make your own! >>>>>> >>>>>> >>>>>> >>>>>> ------------------------------ >>>>>> *From:* David Roth >>>>>> *To:* NYPHP SIG: Joomla >>>>>> *Sent:* Tuesday, July 31, 2012 6:54 AM >>>>>> *Subject:* [joomla] Converting a HTML/JavaScript page to be a module >>>>>> in Joomla >>>>>> >>>>>> I have a JavaScript program which does some simple calculations. It >>>>>> emulates what you would do in a spreadsheet. It isn't fancy, but it is >>>>>> functional and I want to make a Joomla module out of it. I didn't write a >>>>>> CSS for this because it was intended to be used in Joomla from the start >>>>>> and I want it to inherit the Joomla CSS that's resident. >>>>>> >>>>>> My first thought was, create a custom HTML module, go into HTML >>>>>> editing mode and paste the HTML page with it's JavaScript in there. >>>>>> >>>>>> The result is, it didn't work. It kept the HTML formatting of the >>>>>> page, but it filtered out all the JavaScript. There are no external files >>>>>> referencing the JavaScript and jQuery is not being used. Maybe it needs to >>>>>> be an actual mod_david_calc and that will do it? But I must be missing >>>>>> something else in order to do that. Can't imagine getting away from free in >>>>>> Joomla without having to call some Joomla function to make it work. :-) >>>>>> >>>>>> So then I spent time searching and it appears some sort of special >>>>>> treatment is needed for your own JavaScript to be available in Joomla. >>>>>> >>>>>> Why I'm posting about this, is that I would like to get some >>>>>> direction as to what is the best way to do this. Is there a favorite Joomla >>>>>> extension people use to help make all this happen? Also, should it be a >>>>>> module or can/should it be a Joomla Article for this JavaScript calc >>>>>> program? It only needs to appear on one page. Thanks! >>>>>> >>>>>> David Roth >>>>>> >>>>>> _______________________________________________ >>>>>> New York PHP SIG: Joomla! Mailing List >>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>> >>>>>> NYPHPCon 2006 Presentations Online >>>>>> http://www.nyphpcon.com >>>>>> >>>>>> Show Your Participation in New York PHP >>>>>> http://www.nyphp.org/show_participation.php >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> New York PHP SIG: Joomla! Mailing List >>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>> >>>>>> NYPHPCon 2006 Presentations Online >>>>>> http://www.nyphpcon.com >>>>>> >>>>>> Show Your Participation in New York PHP >>>>>> http://www.nyphp.org/show_participation.php >>>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> New York PHP SIG: Joomla! Mailing List >>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>> >>>>> NYPHPCon 2006 Presentations Online >>>>> http://www.nyphpcon.com >>>>> >>>>> Show Your Participation in New York PHP >>>>> http://www.nyphp.org/show_participation.php >>>>> >>>> >>>> >>>> _______________________________________________ >>>> New York PHP SIG: Joomla! Mailing List >>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>> >>>> NYPHPCon 2006 Presentations Online >>>> http://www.nyphpcon.com >>>> >>>> Show Your Participation in New York PHP >>>> http://www.nyphp.org/show_participation.php >>>> >>> >>> _______________________________________________ >>> New York PHP SIG: Joomla! Mailing List >>> http://lists.nyphp.org/mailman/listinfo/joomla >>> >>> NYPHPCon 2006 Presentations Online >>> http://www.nyphpcon.com >>> >>> Show Your Participation in New York PHP >>> http://www.nyphp.org/show_participation.php >>> >> >> >> _______________________________________________ >> New York PHP SIG: Joomla! Mailing List >> http://lists.nyphp.org/mailman/listinfo/joomla >> >> NYPHPCon 2006 Presentations Online >> http://www.nyphpcon.com >> >> Show Your Participation in New York PHP >> http://www.nyphp.org/show_participation.php >> > > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact at chrisfrench.me Thu Aug 2 22:55:08 2012 From: contact at chrisfrench.me (Christopher French) Date: Thu, 2 Aug 2012 19:55:08 -0700 Subject: [joomla] Converting a HTML/JavaScript page to be a module in Joomla In-Reply-To: References: <1343738579.87599.YahooMailNeo@web125501.mail.ne1.yahoo.com> Message-ID: I am confused I think tablets all support javascript. On Thu, Aug 2, 2012 at 7:53 PM, David Roth wrote: > Sorry, typo. :-) > > *Tablet PC* > * > * > David Roth > > > On Thu, Aug 2, 2012 at 10:52 PM, Christopher French < > contact at chrisfrench.me> wrote: > >> what is a table PC?? >> >> On Thu, Aug 2, 2012 at 5:16 PM, David Roth wrote: >> >>> Hi Chris. >>> >>> Thanks for the info! >>> >>> Speaking of JavaScript, anyone have experience about what to do with >>> Table PC users to make JavaScript work for them? Something special to do in >>> the JavaScript? Thanks! >>> >>> David Roth >>> >>> >>> On Wed, Aug 1, 2012 at 11:11 AM, Christopher French < >>> contact at chrisfrench.me> wrote: >>> >>>> Create a folder called js in your module folder (this is to make it >>>> easier in your xml file, and to keep things nice.) >>>> >>>> Than you create a js file in that folder name it whatever makes sense, >>>> and in your module file mod_david_table.php >>>> >>>> Add JHTML::_('script', 'nameoffile.js' 'modules/mod_david_table/js/'); >>>> >>>> Please check that for typos I typed it on my phone. >>>> On Aug 1, 2012 7:40 AM, "David Roth" wrote: >>>> >>>>> Thanks, Chris & Donna for your postings. Very helpful! >>>>> >>>>> I got it working as a module. >>>>> >>>>> Now that this is a big requirement for this module, but I was >>>>> wondering how do I take the JavaScript and put it in it's own file so that >>>>> the module can find it? Thanks! >>>>> >>>>> David Roth >>>>> >>>>> >>>>> On Tue, Jul 31, 2012 at 4:19 PM, Christopher French < >>>>> contact at chrisfrench.me> wrote: >>>>> >>>>>> Your probably best to just make your own module. >>>>>> >>>>>> Make a module in joomla is very easy it is the easiest thing to make. >>>>>> >>>>>> You could just copy a module xml from another folder or download a >>>>>> hello world module. >>>>>> >>>>>> At the most basic level you could just copy an xml file from any >>>>>> module than, >>>>>> >>>>>> Put in a folder name it mod_david_table.xml open it up and change the >>>>>> info to yours >>>>>> >>>>>> Create an empty file called mod_david_table.php in the same folder >>>>>> and just copy all you html and javascript right into that file and just >>>>>> have no php. As you learn you can update your module to use templates >>>>>> helpers and caching if you want. >>>>>> >>>>>> That is better than disabling js in your wysiwg editor. >>>>>> >>>>>> Last sstep is you zip of your two files and install them >>>>>> >>>>>> On Tue, Jul 31, 2012 at 5:42 AM, Donna Marie Vincent < >>>>>> donnamarievincent at yahoo.com> wrote: >>>>>> >>>>>>> 1. You can set your editor to *not* filter out the javascript. >>>>>>> >>>>>>> 2. It is very easy to create a simple module and put your code in >>>>>>> it. (I have a tutorial for it but it's not updated for 2.5. The main >>>>>>> difference is that you now need to register modules in the database in the >>>>>>> #__extensions table.) There are probably up-to-date tutorials on YouTube >>>>>>> for doing this. Once you see how easy it is, you won't both spending time >>>>>>> looking for extensions that fit, you'll just make your own! >>>>>>> >>>>>>> >>>>>>> >>>>>>> ------------------------------ >>>>>>> *From:* David Roth >>>>>>> *To:* NYPHP SIG: Joomla >>>>>>> *Sent:* Tuesday, July 31, 2012 6:54 AM >>>>>>> *Subject:* [joomla] Converting a HTML/JavaScript page to be a >>>>>>> module in Joomla >>>>>>> >>>>>>> I have a JavaScript program which does some simple calculations. It >>>>>>> emulates what you would do in a spreadsheet. It isn't fancy, but it is >>>>>>> functional and I want to make a Joomla module out of it. I didn't write a >>>>>>> CSS for this because it was intended to be used in Joomla from the start >>>>>>> and I want it to inherit the Joomla CSS that's resident. >>>>>>> >>>>>>> My first thought was, create a custom HTML module, go into HTML >>>>>>> editing mode and paste the HTML page with it's JavaScript in there. >>>>>>> >>>>>>> The result is, it didn't work. It kept the HTML formatting of the >>>>>>> page, but it filtered out all the JavaScript. There are no external files >>>>>>> referencing the JavaScript and jQuery is not being used. Maybe it needs to >>>>>>> be an actual mod_david_calc and that will do it? But I must be missing >>>>>>> something else in order to do that. Can't imagine getting away from free in >>>>>>> Joomla without having to call some Joomla function to make it work. :-) >>>>>>> >>>>>>> So then I spent time searching and it appears some sort of special >>>>>>> treatment is needed for your own JavaScript to be available in Joomla. >>>>>>> >>>>>>> Why I'm posting about this, is that I would like to get some >>>>>>> direction as to what is the best way to do this. Is there a favorite Joomla >>>>>>> extension people use to help make all this happen? Also, should it be a >>>>>>> module or can/should it be a Joomla Article for this JavaScript calc >>>>>>> program? It only needs to appear on one page. Thanks! >>>>>>> >>>>>>> David Roth >>>>>>> >>>>>>> _______________________________________________ >>>>>>> New York PHP SIG: Joomla! Mailing List >>>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>>> >>>>>>> NYPHPCon 2006 Presentations Online >>>>>>> http://www.nyphpcon.com >>>>>>> >>>>>>> Show Your Participation in New York PHP >>>>>>> http://www.nyphp.org/show_participation.php >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> New York PHP SIG: Joomla! Mailing List >>>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>>> >>>>>>> NYPHPCon 2006 Presentations Online >>>>>>> http://www.nyphpcon.com >>>>>>> >>>>>>> Show Your Participation in New York PHP >>>>>>> http://www.nyphp.org/show_participation.php >>>>>>> >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> New York PHP SIG: Joomla! Mailing List >>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>> >>>>>> NYPHPCon 2006 Presentations Online >>>>>> http://www.nyphpcon.com >>>>>> >>>>>> Show Your Participation in New York PHP >>>>>> http://www.nyphp.org/show_participation.php >>>>>> >>>>> >>>>> >>>>> _______________________________________________ >>>>> New York PHP SIG: Joomla! Mailing List >>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>> >>>>> NYPHPCon 2006 Presentations Online >>>>> http://www.nyphpcon.com >>>>> >>>>> Show Your Participation in New York PHP >>>>> http://www.nyphp.org/show_participation.php >>>>> >>>> >>>> _______________________________________________ >>>> New York PHP SIG: Joomla! Mailing List >>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>> >>>> NYPHPCon 2006 Presentations Online >>>> http://www.nyphpcon.com >>>> >>>> Show Your Participation in New York PHP >>>> http://www.nyphp.org/show_participation.php >>>> >>> >>> >>> _______________________________________________ >>> New York PHP SIG: Joomla! Mailing List >>> http://lists.nyphp.org/mailman/listinfo/joomla >>> >>> NYPHPCon 2006 Presentations Online >>> http://www.nyphpcon.com >>> >>> Show Your Participation in New York PHP >>> http://www.nyphp.org/show_participation.php >>> >> >> >> _______________________________________________ >> New York PHP SIG: Joomla! Mailing List >> http://lists.nyphp.org/mailman/listinfo/joomla >> >> NYPHPCon 2006 Presentations Online >> http://www.nyphpcon.com >> >> Show Your Participation in New York PHP >> http://www.nyphp.org/show_participation.php >> > > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidalanroth at gmail.com Fri Aug 3 00:05:31 2012 From: davidalanroth at gmail.com (David Roth) Date: Fri, 3 Aug 2012 00:05:31 -0400 Subject: [joomla] Converting a HTML/JavaScript page to be a module in Joomla In-Reply-To: References: <1343738579.87599.YahooMailNeo@web125501.mail.ne1.yahoo.com> Message-ID: (Not as confused as I am :-) ) I got a little more detail. It turns out, this user is using a IE 7. I tested it on an old Windows XP and I had the same problem. The symptom is when the user clicks on Submit it doesn't do anything. It might have something to do with using this onclick in JavaScript code: Since this turned out not to be Joomla template related, I won't follow this up here. Thanks! David Roth On Thu, Aug 2, 2012 at 10:55 PM, Christopher French wrote: > I am confused I think tablets all support javascript. > > On Thu, Aug 2, 2012 at 7:53 PM, David Roth wrote: > >> Sorry, typo. :-) >> >> *Tablet PC* >> * >> * >> David Roth >> >> >> On Thu, Aug 2, 2012 at 10:52 PM, Christopher French < >> contact at chrisfrench.me> wrote: >> >>> what is a table PC?? >>> >>> On Thu, Aug 2, 2012 at 5:16 PM, David Roth wrote: >>> >>>> Hi Chris. >>>> >>>> Thanks for the info! >>>> >>>> Speaking of JavaScript, anyone have experience about what to do with >>>> Table PC users to make JavaScript work for them? Something special to do in >>>> the JavaScript? Thanks! >>>> >>>> David Roth >>>> >>>> >>>> On Wed, Aug 1, 2012 at 11:11 AM, Christopher French < >>>> contact at chrisfrench.me> wrote: >>>> >>>>> Create a folder called js in your module folder (this is to make it >>>>> easier in your xml file, and to keep things nice.) >>>>> >>>>> Than you create a js file in that folder name it whatever makes sense, >>>>> and in your module file mod_david_table.php >>>>> >>>>> Add JHTML::_('script', 'nameoffile.js' 'modules/mod_david_table/js/'); >>>>> >>>>> Please check that for typos I typed it on my phone. >>>>> On Aug 1, 2012 7:40 AM, "David Roth" wrote: >>>>> >>>>>> Thanks, Chris & Donna for your postings. Very helpful! >>>>>> >>>>>> I got it working as a module. >>>>>> >>>>>> Now that this is a big requirement for this module, but I was >>>>>> wondering how do I take the JavaScript and put it in it's own file so that >>>>>> the module can find it? Thanks! >>>>>> >>>>>> David Roth >>>>>> >>>>>> >>>>>> On Tue, Jul 31, 2012 at 4:19 PM, Christopher French < >>>>>> contact at chrisfrench.me> wrote: >>>>>> >>>>>>> Your probably best to just make your own module. >>>>>>> >>>>>>> Make a module in joomla is very easy it is the easiest thing to make. >>>>>>> >>>>>>> You could just copy a module xml from another folder or download a >>>>>>> hello world module. >>>>>>> >>>>>>> At the most basic level you could just copy an xml file from any >>>>>>> module than, >>>>>>> >>>>>>> Put in a folder name it mod_david_table.xml open it up and change >>>>>>> the info to yours >>>>>>> >>>>>>> Create an empty file called mod_david_table.php in the same folder >>>>>>> and just copy all you html and javascript right into that file and just >>>>>>> have no php. As you learn you can update your module to use templates >>>>>>> helpers and caching if you want. >>>>>>> >>>>>>> That is better than disabling js in your wysiwg editor. >>>>>>> >>>>>>> Last sstep is you zip of your two files and install them >>>>>>> >>>>>>> On Tue, Jul 31, 2012 at 5:42 AM, Donna Marie Vincent < >>>>>>> donnamarievincent at yahoo.com> wrote: >>>>>>> >>>>>>>> 1. You can set your editor to *not* filter out the javascript. >>>>>>>> >>>>>>>> 2. It is very easy to create a simple module and put your code in >>>>>>>> it. (I have a tutorial for it but it's not updated for 2.5. The main >>>>>>>> difference is that you now need to register modules in the database in the >>>>>>>> #__extensions table.) There are probably up-to-date tutorials on YouTube >>>>>>>> for doing this. Once you see how easy it is, you won't both spending time >>>>>>>> looking for extensions that fit, you'll just make your own! >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> ------------------------------ >>>>>>>> *From:* David Roth >>>>>>>> *To:* NYPHP SIG: Joomla >>>>>>>> *Sent:* Tuesday, July 31, 2012 6:54 AM >>>>>>>> *Subject:* [joomla] Converting a HTML/JavaScript page to be a >>>>>>>> module in Joomla >>>>>>>> >>>>>>>> I have a JavaScript program which does some simple calculations. It >>>>>>>> emulates what you would do in a spreadsheet. It isn't fancy, but it is >>>>>>>> functional and I want to make a Joomla module out of it. I didn't write a >>>>>>>> CSS for this because it was intended to be used in Joomla from the start >>>>>>>> and I want it to inherit the Joomla CSS that's resident. >>>>>>>> >>>>>>>> My first thought was, create a custom HTML module, go into HTML >>>>>>>> editing mode and paste the HTML page with it's JavaScript in there. >>>>>>>> >>>>>>>> The result is, it didn't work. It kept the HTML formatting of the >>>>>>>> page, but it filtered out all the JavaScript. There are no external files >>>>>>>> referencing the JavaScript and jQuery is not being used. Maybe it needs to >>>>>>>> be an actual mod_david_calc and that will do it? But I must be missing >>>>>>>> something else in order to do that. Can't imagine getting away from free in >>>>>>>> Joomla without having to call some Joomla function to make it work. :-) >>>>>>>> >>>>>>>> So then I spent time searching and it appears some sort of special >>>>>>>> treatment is needed for your own JavaScript to be available in Joomla. >>>>>>>> >>>>>>>> Why I'm posting about this, is that I would like to get some >>>>>>>> direction as to what is the best way to do this. Is there a favorite Joomla >>>>>>>> extension people use to help make all this happen? Also, should it be a >>>>>>>> module or can/should it be a Joomla Article for this JavaScript calc >>>>>>>> program? It only needs to appear on one page. Thanks! >>>>>>>> >>>>>>>> David Roth >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> New York PHP SIG: Joomla! Mailing List >>>>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>>>> >>>>>>>> NYPHPCon 2006 Presentations Online >>>>>>>> http://www.nyphpcon.com >>>>>>>> >>>>>>>> Show Your Participation in New York PHP >>>>>>>> http://www.nyphp.org/show_participation.php >>>>>>>> >>>>>>>> >>>>>>>> _______________________________________________ >>>>>>>> New York PHP SIG: Joomla! Mailing List >>>>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>>>> >>>>>>>> NYPHPCon 2006 Presentations Online >>>>>>>> http://www.nyphpcon.com >>>>>>>> >>>>>>>> Show Your Participation in New York PHP >>>>>>>> http://www.nyphp.org/show_participation.php >>>>>>>> >>>>>>> >>>>>>> >>>>>>> _______________________________________________ >>>>>>> New York PHP SIG: Joomla! Mailing List >>>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>>> >>>>>>> NYPHPCon 2006 Presentations Online >>>>>>> http://www.nyphpcon.com >>>>>>> >>>>>>> Show Your Participation in New York PHP >>>>>>> http://www.nyphp.org/show_participation.php >>>>>>> >>>>>> >>>>>> >>>>>> _______________________________________________ >>>>>> New York PHP SIG: Joomla! Mailing List >>>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>>> >>>>>> NYPHPCon 2006 Presentations Online >>>>>> http://www.nyphpcon.com >>>>>> >>>>>> Show Your Participation in New York PHP >>>>>> http://www.nyphp.org/show_participation.php >>>>>> >>>>> >>>>> _______________________________________________ >>>>> New York PHP SIG: Joomla! Mailing List >>>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>>> >>>>> NYPHPCon 2006 Presentations Online >>>>> http://www.nyphpcon.com >>>>> >>>>> Show Your Participation in New York PHP >>>>> http://www.nyphp.org/show_participation.php >>>>> >>>> >>>> >>>> _______________________________________________ >>>> New York PHP SIG: Joomla! Mailing List >>>> http://lists.nyphp.org/mailman/listinfo/joomla >>>> >>>> NYPHPCon 2006 Presentations Online >>>> http://www.nyphpcon.com >>>> >>>> Show Your Participation in New York PHP >>>> http://www.nyphp.org/show_participation.php >>>> >>> >>> >>> _______________________________________________ >>> New York PHP SIG: Joomla! Mailing List >>> http://lists.nyphp.org/mailman/listinfo/joomla >>> >>> NYPHPCon 2006 Presentations Online >>> http://www.nyphpcon.com >>> >>> Show Your Participation in New York PHP >>> http://www.nyphp.org/show_participation.php >>> >> >> >> _______________________________________________ >> New York PHP SIG: Joomla! Mailing List >> http://lists.nyphp.org/mailman/listinfo/joomla >> >> NYPHPCon 2006 Presentations Online >> http://www.nyphpcon.com >> >> Show Your Participation in New York PHP >> http://www.nyphp.org/show_participation.php >> > > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: From mkonop at gmail.com Sun Aug 5 21:15:17 2012 From: mkonop at gmail.com (Marian Konop) Date: Sun, 5 Aug 2012 21:15:17 -0400 Subject: [joomla] No August meeting Message-ID: Just a reminder we will not be holding our regular meeting this August. Enjoy the summer. See you in September. -- *Marian Konop* Gotham Websites We think SMALL . . . Business *www.gothamwebsites.com* President JoomlaNYC Users Group *www.joomlanyc.org* Team Leader *www.JoomlaDayNYC.com* -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidalanroth at gmail.com Wed Aug 8 07:00:10 2012 From: davidalanroth at gmail.com (David Roth) Date: Wed, 8 Aug 2012 07:00:10 -0400 Subject: [joomla] Adding fonts for use with Joomla 2.5.6 and Shape5 template Message-ID: I'm using a shape5 template and want to use fonts that are not included from a third-party. How is this done in Joomla? Is it a function of the template being used, Shape5 in this case, or does Joomla have a method for installing your own fonts? Thanks! David Roth -------------- next part -------------- An HTML attachment was scrubbed... URL: From helvecio.rj at gmail.com Fri Aug 10 12:53:48 2012 From: helvecio.rj at gmail.com (=?UTF-8?Q?Helv=C3=A9cio_da_Silva?=) Date: Fri, 10 Aug 2012 13:53:48 -0300 Subject: [joomla] Mini Joomla sites on the fly Message-ID: I've a client who wants the possibility of creating mini sites on the fly from within her Joomla installation. This procedure should be as easy as possible, like creating a blog in blogspot of or the like. I've tried having a couple of templates and a set of pages, category and menu itens which she would copy from, but she finds it too confusing to do what she wants. How can I accomplish that in Joomla? Any ideas? Thanks! -- Helvecio "Elvis" da Silva Rio de Janeiro - Brasil - helvecio.rj at gmail.com http://www.helvecio.com - http://blog.helvecio.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From marian at gothamwebsites.com Tue Aug 14 23:12:02 2012 From: marian at gothamwebsites.com (Gotham Websites) Date: Tue, 14 Aug 2012 23:12:02 -0400 Subject: [joomla] September meeting Message-ID: Please note the change of venue and the need for advanced registration. Register here: http://joomlanyc.org/index.php/register Next Meeting -2nd Thursday of each month September 2012 *2nd THURSDAY OF EACH MONTH Thursday September 13, 2012* Chairperson: Toni Taylor *Meeting*: 6:30-8:30, Location: *Robert Half Staffing* *245 Park Ave, 25th Floor. REGISTRATION IS REQUIRED. **Networking: *8:30-9:30 *Presentations*: Marian Konop: Joomlashine's admin template Show and Tell Lightning Round- Ask any question and our group will provide the answers. -- *Marian Konop* Gotham Websites We think SMALL . . . Business *www.gothamwebsites.com* President JoomlaNYC Users Group *www.joomlanyc.org *Team Leader *www.JoomlaDayNYC.com* -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmsullivan50 at yahoo.com Sun Aug 19 06:42:14 2012 From: jmsullivan50 at yahoo.com (Janet Sullivan) Date: Sun, 19 Aug 2012 03:42:14 -0700 (PDT) Subject: [joomla] Problems with installation manager? Message-ID: <1345372934.70386.YahooMailNeo@web122306.mail.ne1.yahoo.com> I am getting this error when trying to install akeeba 3.6.1 core using the extension manager - install * JFolder::create: Could not create directory * Warning: Failed to move file! * I would have thought that I would find the answer in the akeeba docs, but according to the akeeba website,? https://www.akeebabackup.com/documentation/troubleshooter/abinstallation.html "If you still can't install Akeeba Backup and you are receiving messages regarding unwritable directories, inability to move files or other similar file system related error messages, please do not ask us for support. These errors stem from your site set up and can best be resolved by asking for help in the official Joomla!? forums. We can only support software we develop ourselves. Joomla!'s extension installer is certainly not developed by us, therefore we can't help you." ?I am running joomla 2.5.4 and I had originally set the site up on a web host using a temporary url. Akeeba? 3.5.1 was installed, and running fine.?? Then it was time to move the site into production, so using cpanel database and root backups, I moved the site,? set up a new database user, connected it to the new database and changed the url to the production name. Site works perfectly, but akeeba would not run.? tried re-installing, no good. so I uninstalled akeeba, making sure that all the references in the data base to com-akeeba were removed as well, as stated on the akeeba trouble-shooting page.?? After the un-install, I tried a fresh install and got the above error messages.....any ideas on how to fix?? The site in in production, without any automated backup .....not good.?? Akeeba trouble shooting suggests the problem is in my site set-up...as a joomla novice, I pretty much use the defaults, except for things like seo URLs... ?Help greatly appreciated. Thanks! Janet -------------- next part -------------- An HTML attachment was scrubbed... URL: From scott at wolpow.com Sun Aug 19 08:57:24 2012 From: scott at wolpow.com (Scott Wolpow) Date: Sun, 19 Aug 2012 08:57:24 -0400 Subject: [joomla] Problems with installation manager? In-Reply-To: <1345372934.70386.YahooMailNeo@web122306.mail.ne1.yahoo.com> References: <1345372934.70386.YahooMailNeo@web122306.mail.ne1.yahoo.com> Message-ID: <5030E2B4.4030608@wolpow.com> This a a issue with your host company, call them for guidance. SW On 8/19/2012 6:42 AM, Janet Sullivan wrote: > I am getting this error when trying to install akeeba 3.6.1 core using > the extension manager - install > > * JFolder::create: Could not create directory > * Warning: Failed to move file! > * > > I would have thought that I would find the answer in the akeeba > docs, but according to the akeeba > website, > https://www.akeebabackup.com/documentation/troubleshooter/abinstallation.html > > "If you still can't install Akeeba Backup and you are receiving > messages regarding unwritable directories, inability to move files > or other similar file system related error messages, please do not > ask us for support. These errors stem from your site set up and > can best be resolved by asking for help in the official > Joomla!^(TM) forums . We can only > support software we develop ourselves. Joomla!'s extension > installer is certainly not developed by us, therefore we can't > help you." > > I am running joomla 2.5.4 and I had originally set the site up on a > web host using a temporary url. > Akeeba 3.5.1 was installed, and running fine. Then it was time to > move the site into production, so using cpanel > database and root backups, I moved the site, set up a new database > user, connected it to the new database > and changed the url to the production name. > > Site works perfectly, but akeeba would not run. tried re-installing, > no good. > so I uninstalled akeeba, making sure that all the references in the > data base to com-akeeba were removed > as well, as stated on the akeeba trouble-shooting page. > > After the un-install, I tried a fresh install and got the above error > messages.....any ideas on how to fix? The site in in production, > without any automated backup .....not good. > > Akeeba trouble shooting suggests the problem is in my site set-up...as > a joomla novice, I pretty much use the defaults, except for things > like seo URLs... > > Help greatly appreciated. > Thanks! > > Janet > > > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php -- Please help me raise money for MS -------------- next part -------------- An HTML attachment was scrubbed... URL: From jmsullivan50 at yahoo.com Sun Aug 19 10:32:53 2012 From: jmsullivan50 at yahoo.com (Janet Sullivan) Date: Sun, 19 Aug 2012 07:32:53 -0700 (PDT) Subject: [joomla] Problems with installation manager? In-Reply-To: <5030E2B4.4030608@wolpow.com> References: <1345372934.70386.YahooMailNeo@web122306.mail.ne1.yahoo.com> <5030E2B4.4030608@wolpow.com> Message-ID: <1345386773.53300.YahooMailNeo@web122302.mail.ne1.yahoo.com> As in file permissions?? I can change those..... ? Janet Sullivan Tech Tips for Busy Executives: http://JKSWebDesign.com/blog ________________________________ From: Scott Wolpow To: joomla at lists.nyphp.org Sent: Sunday, August 19, 2012 8:57 AM Subject: Re: [joomla] Problems with installation manager? This a a issue with your host company, call them for guidance. SW On 8/19/2012 6:42 AM, Janet Sullivan wrote: I am getting this error when trying to install akeeba 3.6.1 core using the extension manager - install > > * JFolder::create: Could not create directory > * Warning: Failed to move file! > * > >I would have thought that I would find the answer in the akeeba docs, but according to the akeeba >website,? https://www.akeebabackup.com/documentation/troubleshooter/abinstallation.html > > >"If you still can't install Akeeba Backup and you are receiving messages regarding unwritable directories, inability to move files or other similar file system related error messages, please do not ask us for support. These errors stem from your site set up and can best be resolved by asking for help in the official Joomla!? forums. We can only support software we develop ourselves. Joomla!'s extension installer is certainly not developed by us, therefore we can't help you." >?I am running joomla 2.5.4 and I had originally set the site up on a web host using a temporary url. >Akeeba? 3.5.1 was installed, and running fine.?? Then it was time to move the site into production, so using cpanel >database and root backups, I moved the site,? set up a new database user, connected it to the new database >and changed the url to the production name. > >Site works perfectly, but akeeba would not run.? tried re-installing, no good. >so I uninstalled akeeba, making sure that all the references in the data base to com-akeeba were removed >as well, as stated on the akeeba trouble-shooting page.?? > >After the un-install, I tried a fresh install and got the above error messages.....any ideas on how to fix?? The site in in production, >without any automated backup .....not good.?? > >Akeeba trouble shooting suggests the problem is in my site set-up...as a joomla novice, I pretty much use the defaults, except for things like seo URLs... > >?Help greatly appreciated. >Thanks! > > >Janet > > > > >_______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -- Please help me raise money for MS _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -------------- next part -------------- An HTML attachment was scrubbed... URL: From rakics at gmail.com Sun Aug 19 11:10:31 2012 From: rakics at gmail.com (Sasa Rakic - Gmail) Date: Sun, 19 Aug 2012 17:10:31 +0200 Subject: [joomla] Problems with installation manager? In-Reply-To: <1345386773.53300.YahooMailNeo@web122302.mail.ne1.yahoo.com> References: <1345372934.70386.YahooMailNeo@web122306.mail.ne1.yahoo.com> <5030E2B4.4030608@wolpow.com> <1345386773.53300.YahooMailNeo@web122302.mail.ne1.yahoo.com> Message-ID: <00d001cd7e1c$c6e394c0$54aabe40$@gmail.com> >As in file permissions? I can change those..... May the force be with you, republicans will lose. Janet Sullivan Tech Tips for Busy Executives: http://JKSWebDesign.com/blog _____ From: Scott Wolpow To: joomla at lists.nyphp.org Sent: Sunday, August 19, 2012 8:57 AM Subject: Re: [joomla] Problems with installation manager? This a a issue with your host company, call them for guidance. SW On 8/19/2012 6:42 AM, Janet Sullivan wrote: I am getting this error when trying to install akeeba 3.6.1 core using the extension manager - install ? JFolder::create: Could not create directory ? Warning: Failed to move file! ? I would have thought that I would find the answer in the akeeba docs, but according to the akeeba website, https://www.akeebabackup.com/documentation/troubleshooter/abinstallation.html "If you still can't install Akeeba Backup and you are receiving messages regarding unwritable directories, inability to move files or other similar file system related error messages, please do not ask us for support. These errors stem from your site set up and can best be resolved by asking for help in the official Joomla!? forums. We can only support software we develop ourselves. Joomla!'s extension installer is certainly not developed by us, therefore we can't help you." I am running joomla 2.5.4 and I had originally set the site up on a web host using a temporary url. Akeeba 3.5.1 was installed, and running fine. Then it was time to move the site into production, so using cpanel database and root backups, I moved the site, set up a new database user, connected it to the new database and changed the url to the production name. Site works perfectly, but akeeba would not run. tried re-installing, no good. so I uninstalled akeeba, making sure that all the references in the data base to com-akeeba were removed as well, as stated on the akeeba trouble-shooting page. After the un-install, I tried a fresh install and got the above error messages.....any ideas on how to fix? The site in in production, without any automated backup .....not good. Akeeba trouble shooting suggests the problem is in my site set-up...as a joomla novice, I pretty much use the defaults, except for things like seo URLs... Help greatly appreciated. Thanks! Janet _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -- Please help me raise money for MS _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -------------- next part -------------- An HTML attachment was scrubbed... URL: From Kirill at hostnetservices.com Sun Aug 19 11:17:21 2012 From: Kirill at hostnetservices.com (Kirill Poliakov) Date: Sun, 19 Aug 2012 11:17:21 -0400 Subject: [joomla] Problems with installation manager? In-Reply-To: <00d001cd7e1c$c6e394c0$54aabe40$@gmail.com> References: <1345372934.70386.YahooMailNeo@web122306.mail.ne1.yahoo.com> <5030E2B4.4030608@wolpow.com> <1345386773.53300.YahooMailNeo@web122302.mail.ne1.yahoo.com> <00d001cd7e1c$c6e394c0$54aabe40$@gmail.com> Message-ID: An HTML attachment was scrubbed... URL: From jmsullivan50 at yahoo.com Sun Aug 19 12:09:28 2012 From: jmsullivan50 at yahoo.com (Janet Sullivan) Date: Sun, 19 Aug 2012 09:09:28 -0700 (PDT) Subject: [joomla] Problems with installation manager? In-Reply-To: References: <1345372934.70386.YahooMailNeo@web122306.mail.ne1.yahoo.com> <5030E2B4.4030608@wolpow.com> <1345386773.53300.YahooMailNeo@web122302.mail.ne1.yahoo.com> <00d001cd7e1c$c6e394c0$54aabe40$@gmail.com> Message-ID: <1345392568.4308.YahooMailNeo@web122303.mail.ne1.yahoo.com> Kirill: Whoo-hoo!? That did the trick! The fresh install of akeeba threw a bunch of errors because it couldn't delete some files but the install was successful and the backup seems to have worked.....Now all I need to do is test the restore to make sure I really have a working backup... Thanks - I really appreciate the help J ________________________________ From: Kirill Poliakov To: NYPHP SIG: Joomla Sent: Sunday, August 19, 2012 11:17 AM Subject: Re: [joomla] Problems with installation manager? Janet, Take a look at this link http://www.dailyblogging.org/joomla-2/jfolder-create-error-in-joomla/ Kirill From: "Sasa Rakic - Gmail" To: "'NYPHP SIG: Joomla'" , Date: 08/19/2012 11:11 AM Subject: Re: [joomla] Problems with installation manager? Sent by: joomla-bounces at lists.nyphp.org ________________________________ ? >As in file permissions? ?I can change those..... ? May the force be with you, republicans will lose. ? ? Janet Sullivan Tech Tips for Busy Executives: http://JKSWebDesign.com/blog ________________________________ From:?Scott Wolpow To:?joomla at lists.nyphp.org Sent:?Sunday, August 19, 2012 8:57 AM Subject:?Re: [joomla] Problems with installation manager? ? This a a issue with your host company, call them for guidance. SW On 8/19/2012 6:42 AM, Janet Sullivan wrote: ? -- Please help me raise money for MS? _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php_______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -------------- next part -------------- An HTML attachment was scrubbed... URL: From brynk at joomlaconnections.com Wed Aug 29 10:33:56 2012 From: brynk at joomlaconnections.com (brynk) Date: Wed, 29 Aug 2012 10:33:56 -0400 Subject: [joomla] Specific function needed Message-ID: <503E2854.8060100@joomlaconnections.com> Joomla Users: I have a client that must upload "pdf" files to his Joomla CMS site (version 1.5.X), then create a user for specific clients, then have that client log into the frontend of the site and only be able to see their "pdf" files. They can not see other clients files only their own and they can obviously download and/or print. It is very important that each user can only access files belonging to them. Any ideas? Thank You Bob Rynkiewicz -- ***************************************************** Joomla Connections Robert P. Rynkiewicz 43 East Greenfield Ave. Pleasantville, NJ 08232 609.335.2938 **************************************************** From janice at onlinesuccessmap.com Wed Aug 29 10:51:26 2012 From: janice at onlinesuccessmap.com (Janice Gentles-Jones) Date: Wed, 29 Aug 2012 10:51:26 -0400 Subject: [joomla] Specific function needed In-Reply-To: <503E2854.8060100@joomlaconnections.com> References: <503E2854.8060100@joomlaconnections.com> Message-ID: <00ef01cd85f5$c4212280$4c636780$@onlinesuccessmap.com> Hi Bob, I believe the DocMan extension would meet your needs. You can find out more about it: http://extensions.joomla.org/extensions/directory-a-documentation/downloads/ 10958 Sincerely, Janice Gentles-Jones, Owner JGJ Consulting (P) 516.333.6578? (F) 516.333.0023 http://www.onlinesuccessmap.com http://www.facebook.com/onlinesuccessmap http://www.linkedin.com/ "If you think it's expensive to hire a professional to do the job, wait until you hire an amateur." - Red Adair -----Original Message----- From: joomla-bounces at lists.nyphp.org [mailto:joomla-bounces at lists.nyphp.org] On Behalf Of brynk Sent: Wednesday, August 29, 2012 10:34 AM To: joomla at lists.nyphp.org Subject: [joomla] Specific function needed Joomla Users: I have a client that must upload "pdf" files to his Joomla CMS site (version 1.5.X), then create a user for specific clients, then have that client log into the frontend of the site and only be able to see their "pdf" files. They can not see other clients files only their own and they can obviously download and/or print. It is very important that each user can only access files belonging to them. Any ideas? Thank You Bob Rynkiewicz -- ***************************************************** Joomla Connections Robert P. Rynkiewicz 43 East Greenfield Ave. Pleasantville, NJ 08232 609.335.2938 **************************************************** _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php From donnamarievincent at yahoo.com Wed Aug 29 10:53:06 2012 From: donnamarievincent at yahoo.com (Donna Marie Vincent) Date: Wed, 29 Aug 2012 07:53:06 -0700 (PDT) Subject: [joomla] Specific function needed In-Reply-To: <503E2854.8060100@joomlaconnections.com> References: <503E2854.8060100@joomlaconnections.com> Message-ID: <1346251986.61790.YahooMailNeo@web125501.mail.ne1.yahoo.com> Any of the document management components -- phocadownload, RSFiles, DocMan.? Phocadownload is non-commercial.? Docman requires a payment. ________________________________ From: brynk To: joomla at lists.nyphp.org Sent: Wednesday, August 29, 2012 10:33 AM Subject: [joomla] Specific function needed Joomla Users: I have a client that must upload "pdf" files to his Joomla CMS site (version 1.5.X), then create a user for specific clients, then have that client log into the frontend of the site and only be able to see their "pdf" files. They can not see other clients files? only their own and they can obviously download and/or print. It is very important that each user can only access files belonging to them. Any ideas? Thank You Bob Rynkiewicz -- ***************************************************** Joomla Connections Robert P. Rynkiewicz 43 East Greenfield Ave. Pleasantville, NJ 08232 609.335.2938 **************************************************** _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -------------- next part -------------- An HTML attachment was scrubbed... URL: From brynk at joomlaconnections.com Wed Aug 29 13:11:22 2012 From: brynk at joomlaconnections.com (brynk) Date: Wed, 29 Aug 2012 13:11:22 -0400 Subject: [joomla] Joomla 2.5 and recaptcha Message-ID: <503E4D3A.30209@joomlaconnections.com> Fellow Joomla CMS people: I have had a few clients complain about the recaptcha challenge. Specifically the two word challenge and how at least one word is always very difficult to figure out. It 's great that Joomla CMS 2.5 has the built in challenge but modifications to recaptcha are limited to only the theme. At least, that's how it appears to me. Can you get a one word easier challenge? Are you also getting the same complaints? Are there plans to have other types of challenges built into the the core of Joomla CMS? Has anyone found an alternative that works seamlessly in Joomla CMS 2.5? Why was recaptcha selected? Thank You Bob Rynkiewicz -- ***************************************************** Joomla Connections Robert P. Rynkiewicz 43 East Greenfield Ave. Pleasantville, NJ 08232 609.335.2938 **************************************************** From donnamarievincent at yahoo.com Wed Aug 29 13:18:07 2012 From: donnamarievincent at yahoo.com (Donna Marie Vincent) Date: Wed, 29 Aug 2012 10:18:07 -0700 (PDT) Subject: [joomla] Joomla 2.5 and recaptcha In-Reply-To: <503E4D3A.30209@joomlaconnections.com> References: <503E4D3A.30209@joomlaconnections.com> Message-ID: <1346260687.13130.YahooMailNeo@web125501.mail.ne1.yahoo.com> I use RSForms on every website instead of the Joomla form, because it gives you the option of using the Recaptcha, which is sometimes impossible to use, and the RSForms captcha which is very simple and very readable:? rsjoomla.com ________________________________ From: brynk To: joomla at lists.nyphp.org Sent: Wednesday, August 29, 2012 1:11 PM Subject: [joomla] Joomla 2.5 and recaptcha Fellow Joomla CMS people: I have had a few clients complain about the recaptcha challenge. Specifically the two word challenge and how at least one word is always very difficult to figure out. It 's great that Joomla CMS 2.5 has the built in challenge but modifications to recaptcha are limited to only the theme. At least, that's how it appears to me. Can you get a one word easier challenge? Are you also getting the same complaints? Are there plans to have other types of challenges built into the the core of Joomla CMS? Has anyone found an alternative that works seamlessly in Joomla CMS 2.5? Why was recaptcha selected? Thank You Bob Rynkiewicz -- ***************************************************** Joomla Connections Robert P. Rynkiewicz 43 East Greenfield Ave. Pleasantville, NJ 08232 609.335.2938 **************************************************** _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -------------- next part -------------- An HTML attachment was scrubbed... URL: From brynk at joomlaconnections.com Wed Aug 29 15:04:23 2012 From: brynk at joomlaconnections.com (brynk) Date: Wed, 29 Aug 2012 15:04:23 -0400 Subject: [joomla] Joomla 2.5 and recaptcha In-Reply-To: <1346260687.13130.YahooMailNeo@web125501.mail.ne1.yahoo.com> References: <503E4D3A.30209@joomlaconnections.com> <1346260687.13130.YahooMailNeo@web125501.mail.ne1.yahoo.com> Message-ID: <503E67B7.7080209@joomlaconnections.com> Donna, Thank You I will keep RSForms in mind for forms. What about integrate with say JomSocial and other extensions as well as just the Joomla CMS registration process? Would it not be better to engineer/develop Joomla CMS to have several options for challenges in registration forms, forms in general. Perhaps recaptcha is getting the same feedback about the difficulty factor and will provide options? In an ideal world -- LOL! Thanks Bob Rynkiewicz On 8/29/2012 1:18 PM, Donna Marie Vincent wrote: > I use RSForms on every website instead of the Joomla form, because it > gives you the option of using the Recaptcha, which is sometimes > impossible to use, and the RSForms captcha which is very simple and > very readable: rsjoomla.com > > > > ------------------------------------------------------------------------ > *From:* brynk > *To:* joomla at lists.nyphp.org > *Sent:* Wednesday, August 29, 2012 1:11 PM > *Subject:* [joomla] Joomla 2.5 and recaptcha > > Fellow Joomla CMS people: > > I have had a few clients complain about the recaptcha challenge. > Specifically the two word challenge and how at least one word is > always very difficult to figure out. It 's great that Joomla CMS 2.5 > has the built in challenge but modifications to recaptcha are limited > to only the theme. At least, that's how it appears to me. Can you get > a one word easier challenge? > > Are you also getting the same complaints? Are there plans to have > other types of challenges built into the the core of Joomla CMS? Has > anyone found an alternative that works seamlessly in Joomla CMS 2.5? > Why was recaptcha selected? > > Thank You > Bob Rynkiewicz > > -- ***************************************************** > Joomla Connections > Robert P. Rynkiewicz > 43 East Greenfield Ave. > Pleasantville, NJ 08232 > 609.335.2938 > **************************************************** > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > > > > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php -- ***************************************************** Joomla Connections Robert P. Rynkiewicz 43 East Greenfield Ave. Pleasantville, NJ 08232 609.335.2938 **************************************************** -------------- next part -------------- An HTML attachment was scrubbed... URL: From donnamarievincent at yahoo.com Wed Aug 29 15:25:32 2012 From: donnamarievincent at yahoo.com (Donna Marie Vincent) Date: Wed, 29 Aug 2012 12:25:32 -0700 (PDT) Subject: [joomla] Joomla 2.5 and recaptcha In-Reply-To: <503E67B7.7080209@joomlaconnections.com> References: <503E4D3A.30209@joomlaconnections.com> <1346260687.13130.YahooMailNeo@web125501.mail.ne1.yahoo.com> <503E67B7.7080209@joomlaconnections.com> Message-ID: <1346268332.38037.YahooMailNeo@web125505.mail.ne1.yahoo.com> RSForms submitted data can be mapped to any extension's database table. ________________________________ From: brynk To: NYPHP at lists.nyphp.org; SIG at lists.nyphp.org Sent: Wednesday, August 29, 2012 3:04 PM Subject: Re: [joomla] Joomla 2.5 and recaptcha Donna, Thank You I will keep RSForms in mind for forms. What about integrate with say JomSocial and other extensions as well as just the Joomla CMS registration process?? Would it not be better to engineer/develop Joomla CMS to have several options for challenges in registration forms, forms in general. Perhaps recaptcha is getting the same feedback about the difficulty factor and will provide options? In an ideal world -- LOL! Thanks Bob Rynkiewicz On 8/29/2012 1:18 PM, Donna Marie Vincent wrote: I use RSForms on every website instead of the Joomla form, because it gives you the option of using the Recaptcha, which is sometimes impossible to use, and the RSForms captcha which is very simple and very readable:? rsjoomla.com > > > > > > >________________________________ > From: brynk >To: joomla at lists.nyphp.org >Sent: Wednesday, August 29, 2012 1:11 PM >Subject: [joomla] Joomla 2.5 and recaptcha > >Fellow Joomla CMS people: > >I have had a few clients complain about the recaptcha challenge. Specifically the two word challenge and how at least one word is always very difficult to figure out. It 's great that Joomla CMS 2.5 has the built in challenge but modifications to recaptcha are limited to only the theme. At least, that's how it appears to me. Can you get a one word easier challenge? > >Are you also getting the same complaints? Are there plans to have other types of challenges built into the the core of Joomla CMS? Has anyone found an alternative that works seamlessly in Joomla CMS 2.5? Why was recaptcha selected? > >Thank You >Bob Rynkiewicz > >-- ***************************************************** >Joomla Connections >Robert P. Rynkiewicz >43 East Greenfield Ave. >Pleasantville, NJ 08232 >609.335.2938 >**************************************************** > >_______________________________________________ >New York PHP SIG: Joomla! Mailing List >http://lists.nyphp.org/mailman/listinfo/joomla > >NYPHPCon 2006 Presentations Online >http://www.nyphpcon.com > >Show Your Participation in New York PHP >http://www.nyphp.org/show_participation.php > > > > > >_______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -- ***************************************************** Joomla Connections Robert P. Rynkiewicz 43 East Greenfield Ave. Pleasantville, NJ 08232 609.335.2938 **************************************************** _______________________________________________ New York PHP SIG: Joomla! Mailing List http://lists.nyphp.org/mailman/listinfo/joomla NYPHPCon 2006 Presentations Online http://www.nyphpcon.com Show Your Participation in New York PHP http://www.nyphp.org/show_participation.php -------------- next part -------------- An HTML attachment was scrubbed... URL: From peforever at hotmail.com Thu Aug 30 20:04:44 2012 From: peforever at hotmail.com (Paul Elliott) Date: Thu, 30 Aug 2012 20:04:44 -0400 Subject: [joomla] system timezone issue Message-ID: I have a site where this code has suddenly shows up on the pages. Does anybody know what this means and how to fix it: Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Los_Angeles' for 'PDT/-7.0/DST' instead in Thanks, Paul Elliott -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidalanroth at gmail.com Thu Aug 30 21:09:03 2012 From: davidalanroth at gmail.com (David Roth) Date: Thu, 30 Aug 2012 21:09:03 -0400 Subject: [joomla] system timezone issue In-Reply-To: References: Message-ID: What verison of Joomla & PHP is running on the server? David Roth On Aug 30, 2012 8:04 PM, "Paul Elliott" wrote: > I have a site where this code has suddenly shows up on the pages. > Does anybody know what this means and how to fix it: > > * > Warning: strtotime() [function.strtotime]: > It is not safe to rely on the system's timezone settings. You are > *required* to use the date.timezone setting or the > date_default_timezone_set() function. In case you used any of those methods > and you are still getting this warning, you most likely misspelled the > timezone identifier. We selected 'America/Los_Angeles' for 'PDT/-7.0/DST' > instead in > > Thanks, > Paul Elliott > * > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: From peforever at hotmail.com Thu Aug 30 21:16:23 2012 From: peforever at hotmail.com (Paul Elliott) Date: Thu, 30 Aug 2012 21:16:23 -0400 Subject: [joomla] system timezone issue In-Reply-To: References: Message-ID: Joomla 1.5 (i can't login to see which release) PHP 5 On Aug 30, 2012, at 9:09 PM, David Roth wrote: > What verison of Joomla & PHP is running on the server? > > David Roth > > On Aug 30, 2012 8:04 PM, "Paul Elliott" wrote: > I have a site where this code has suddenly shows up on the pages. > Does anybody know what this means and how to fix it: > > Warning: strtotime() [function.strtotime]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/Los_Angeles' for 'PDT/-7.0/DST' instead in > > Thanks, > Paul Elliott > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php -------------- next part -------------- An HTML attachment was scrubbed... URL: From davidalanroth at gmail.com Fri Aug 31 00:32:32 2012 From: davidalanroth at gmail.com (David Roth) Date: Fri, 31 Aug 2012 00:32:32 -0400 Subject: [joomla] system timezone issue In-Reply-To: References: Message-ID: Hi Paul. Without more details, I'm going to hazard a guess to what's going on. That error message is appearing because PHP has been updated to a later version which expects the time zone functions to be done differently. The way to fix this would be to make changes to PHP code, which I don't think is a good solution because it's most likely in many places through Joomla 1.5 and perhaps extensions too. My best recommendation would be to upgrade from Joomla 1.5 to the latest release which is 2.5.6. Make sure you check the minimum PHP requirements for upgrading to Joomla 2.5.6. When you can get to the command level, type php -v and that will display the current version the system is running. If you don't have shell access to do that, try uploading a tiny PHP program like this and call it phpinfo.php: Then run it from the web browser for domain.com/phpinfo.php and that will display the version number of PHP, along with a bunch of other info too. I'm a little concerned why you are seeing these messages appear on the web page though. Perhaps one of the options to not display errors was enabled along the way. I don't recall where this was done exactly. In the long run, it's better to upgrade to the latest version of Joomla. I know it's easy for me to say this because I don't know the size of the web site and what extensions are being used which might be available for Joomla 2.5. Hope this helps! David Roth On Thu, Aug 30, 2012 at 9:16 PM, Paul Elliott wrote: > Joomla 1.5 (i can't login to see which release) > > PHP 5 > > > On Aug 30, 2012, at 9:09 PM, David Roth wrote: > > What verison of Joomla & PHP is running on the server? > > David Roth > On Aug 30, 2012 8:04 PM, "Paul Elliott" wrote: > >> I have a site where this code has suddenly shows up on the pages. >> Does anybody know what this means and how to fix it: >> >> * >> Warning: strtotime() [function.strtotime]: >> It is not safe to rely on the system's timezone settings. You are >> *required* to use the date.timezone setting or the >> date_default_timezone_set() function. In case you used any of those methods >> and you are still getting this warning, you most likely misspelled the >> timezone identifier. We selected 'America/Los_Angeles' for 'PDT/-7.0/DST' >> instead in >> >> Thanks, >> Paul Elliott >> * >> >> -------------- next part -------------- An HTML attachment was scrubbed... URL: From contact at chrisfrench.me Fri Aug 31 00:36:39 2012 From: contact at chrisfrench.me (Christopher French) Date: Thu, 30 Aug 2012 22:36:39 -0600 Subject: [joomla] system timezone issue In-Reply-To: References: Message-ID: Yea I would agree with this, OR it has just always been not set and you turned on error reporting in your config. what is more likely since you are running joomla 1.5 is that you were running on a host running PHP 5.2 and now you are running php 5.3 which requires the datetime settings. The date timezone error is also something I had when I upgraded to PHP 5.3, it seems the stock PHP 5.3 doesn't set a value for this - to correct the problem, edit your php.ini file and add in a recognized timezone value for the 'date.timezone' setting. There's a whole list of accepted timezones at: http://us.php.net/manual/en/timezones.php On Thu, Aug 30, 2012 at 10:32 PM, David Roth wrote: > Hi Paul. > > Without more details, I'm going to hazard a guess to what's going on. That > error message is appearing because PHP has been updated to a later version > which expects the time zone functions to be done differently. The way to > fix this would be to make changes to PHP code, which I don't think is a > good solution because it's most likely in many places through Joomla 1.5 > and perhaps extensions too. > > My best recommendation would be to upgrade from Joomla 1.5 to the latest > release which is 2.5.6. Make sure you check the minimum PHP requirements > for upgrading to Joomla 2.5.6. When you can get to the command level, type > php -v and that will display the current version the system is running. If > you don't have shell access to do that, try uploading a tiny PHP program > like this and call it phpinfo.php: > > > // Show all information, defaults to INFO_ALL > phpinfo(); > > ?> > > Then run it from the web browser for domain.com/phpinfo.php and that will > display the version number of PHP, along with a bunch of other info too. > > I'm a little concerned why you are seeing these messages appear on the web > page though. Perhaps one of the options to not display errors was enabled > along the way. I don't recall where this was done exactly. In the long run, > it's better to upgrade to the latest version of Joomla. I know it's easy > for me to say this because I don't know the size of the web site and what > extensions are being used which might be available for Joomla 2.5. Hope > this helps! > > David Roth > > > On Thu, Aug 30, 2012 at 9:16 PM, Paul Elliott wrote: > >> Joomla 1.5 (i can't login to see which release) >> >> PHP 5 >> >> >> On Aug 30, 2012, at 9:09 PM, David Roth wrote: >> >> What verison of Joomla & PHP is running on the server? >> >> David Roth >> On Aug 30, 2012 8:04 PM, "Paul Elliott" wrote: >> >>> I have a site where this code has suddenly shows up on the pages. >>> Does anybody know what this means and how to fix it: >>> >>> * >>> Warning: strtotime() [function.strtotime]: >>> It is not safe to rely on the system's timezone settings. You are >>> *required* to use the date.timezone setting or the >>> date_default_timezone_set() function. In case you used any of those methods >>> and you are still getting this warning, you most likely misspelled the >>> timezone identifier. We selected 'America/Los_Angeles' for 'PDT/-7.0/DST' >>> instead in >>> >>> Thanks, >>> Paul Elliott >>> * >>> >>> > > _______________________________________________ > New York PHP SIG: Joomla! Mailing List > http://lists.nyphp.org/mailman/listinfo/joomla > > NYPHPCon 2006 Presentations Online > http://www.nyphpcon.com > > Show Your Participation in New York PHP > http://www.nyphp.org/show_participation.php > -------------- next part -------------- An HTML attachment was scrubbed... URL: