
Support franais KUNENA - Pack prmod Kunna - Forum Bonjour je l'avais annoncé il y a un moment, je comptai réalisé un portail communautaire afin de rendre plus facile l'utilisation de joomla. Malheureusement beaucoup de volontaire se sont désisté ce qui retarde le projet, mais j'ai tout de même le plaisir de vous annoncer que nos premiers packs prémodés sont disponibles en téléchargements gratuits sur EasyJoomla. Dont le pack communautaire que beaucoup attendaient. Détail du pack: Joomla 1.5.11 entièrement traduit en Français. Nous améliorerons au fur et a mesure les packs qui seront le plus demandé, mais uniquement avec des composants et modules opensource bien entendue, afin que tout reste gratuit, le site n'est pas terminé mais devant l'attente de certain je prends la décision de l'ouvrir quand même donc soyez indulgeant. easyjoomla.fr
Template joomla gratuit , template joomla 1.5 , template joomla 1.6 View topic - How to add a Search to a Connectivity form! * please note any edits to this post here if you're a mod.Thanks to Max and Greyhead for all the help on the code. I'm just relaying their notes This is based on the example database set up from this How-To tutorial:Forms and Connectivity Example start to finish! In your Joomla backend, go to:Components -> Chrono Connectivity -> Connections Management Choose your form. Under the General tab put this code in these text boxes:Where SQL: Code: Select all The following Header code goes above what you already have there. <div style="float:right"> Search for a <b>last name</b>: <input type="text" name="lastname"> <b>first name</b>: <input type="text" name="firstname"> <b>number</b>: <input type="text" name="scrnum"> <input type="submit" value="Search" name="undefined" style='width:80px; color:#cccccc; background-color:#222222; cursor:pointer;' /></div> Some notes: * This code is VERY touchy to spaces, quotes, and set up.
code help Ok, previous analysis are quite complete. Here is more info, and an overview. This is shady ! It's about:- hiding from the average template user some links to get more google ranking. - use PHP base64_decode and rot13 to hide direct names - use joomla internal to make it render fake submenus - using a fake GIF image containing PHP code it has 4 parts: 4 lines in index.php: Code: defined( '_JEXEC'). This one fills silently an array named $JPan with one element beiing the string "zrah_pby" ! This one will silently include the 'templates/<your-template>/images/menu_img.gif'. <? These one uses "JText_" twice instead of "JText::_" ... which is quite different.look at this real sample that is explaining what should be done here: pagination.php the rogue function "JText_" is beiing defined: the content of this function is half useless. And you can see that mangling with $html is useless as this variable don't get used in the function at all. { $a=strlen(''); } Quote:
jVitals! Home of Agora Forum Projets > QuickFAQ QuickFAQ 1.0.2 is a maintenance release to fix some bugs discovered in the meantime. Be aware that some layout and css file changes were made. QuickFAQ 1.0.1 is mainly a maintenance release. When updating please don't forget to install the new languagepack if any. The first stable Release of the QuickFAQ component. Changes: - Bugfixes To upgrade: Just install the package via the Joomla installer and adjust your configuration afterwards. The default QuickFaq Module got some attention also. With this release we make a new Module available. The first Release Candidate of the QuickFAQ component. Changes: - Bugfixes - General cleanup Also the first Module goes public now. Have fun Maintenance release of the QuickFAQ component Changes: - Bugfixes - General cleanup - JomComment integration - Performance improvements
View topic - Create a link for "more details" Hi, at first thank you for this great component an this absolutely fantastic forum. I hope that somebody could help me to create a "more-result" link in a CC-view. I know there are a few topics around that and I tried the code in this topic but I couldn't get it work. I have the following codes in my CC "index.php? Where SQL: .... search function... Header Code: Select all <table style="text-align: left; width: 100%;" border="0" cellpadding="2" cellspacing="0"> <tbody> <tr> <td style="font-weight: bold; width: 40%;">label</td> <td style="font-weight: bold; width: 40%;">product</td> <td style="font-weight: bold; width: 20%;">edit</td> </tr> </tbody> </table> Body Everything works fine. Instead of the link "edit_record" I want to create a link that shows more details, like "no", "price" of the product from the second connection "index.php? Maybe someone could explain how do I have to change the following code. Tom
Patch FR pour MyBlog | Aide-Joomla.com Que sont les cookies? Un cookie est un petit fichier contenant du texte qu'un site web sauvegarde sur votre ordinateur ou votre appareil mobile lorsque vous visitez ce site. Les cookies sont largement utilisés pour faire fonctionner les sites web, ou pour les faire fonctionner plus efficacement, ainsi que pour fournir des informations aux propriétaires du site. Comment utilisons-nous les cookies? Ce site utilise Google Analytics, un service d'analyse du web fourni par Google, Inc. (ci-après "Google") qui m'aide à analyser l'usage qui est fait de ce site. Web-eau.net n'utilise pas ni n'autorise aucun tiers à utiliser l'outil d'analyse statistique pour repérer ou recueillir des informations personnelles de visiteurs de ces sites qui seraient identifiables. Les cookies sont également utilisés pour déterminer si vous avez accepté (ou non) que nous utilisions des cookies sur ce site, de façon à ce que la question ne vous soit pas posée à chaque fois que vous le consultez.
View topic - Pass a variable to another page Hi omissirev, in my own application I did something that might help you in solving your problem. In one CC table I show a list of record summaries. For each record I include a link that opens up another CC table that contains a full display of the record. Each row in the summaries list contains an element Code: Select all <td> <a href="index.php? Replace "cf_id" by the field that contains the auto-increment id of your actual record. In the new CC table for displaying a full record you should use as "WHERE SQL": WHERE cf_id="<? Again, you may need to change "cf_id". Good luck!