Home Blog CMS
Blog

CMS (27)

Article not compleated yet!

TinyMCE strips away the OBJECT, PARAM, and EMBED tags and all of their contents that you have embed into the article?

To fix it go to the tinyMCE.init call is supposed to be on the page where you want TinyMCE to be present.

Basic JavaScript and HTML skills are necessary for integration with existing systems.

 

To start go to file: ../plugins/editors/tinymce.php

Find line:

tinyMCE.init({
// General...

and find: extended_valid_elements :

You should be able to see the default TinyMCE valid elements which look like this:

 

Now before the default valid elements paste the following.

IMPORTANT!!! WITH NO SPACES AND ALL IN ONE LINE!!!

Now all Youtube, Vimeo... videos can be embedded into your articles.

Have fun!!!


Other useful posts:

http://learnwebdesignonline.com/allow-script-iframe-tinymce

http://www.tinymce.com/wiki.php/Configuration:valid_elements

Make sure that menu Parameters (Advanced) are set as:

Category Order: No Order by Primary Order Only
Primary Order: Most Recent First

 

Open file .../components/com_content/helpers/query.php.

Change the following, about line 50.

function orderbySecondary($orderby)
{
switch ($orderby)
{
case 'date' :
$orderby = 'a.created';
break;

case 'rdate' :
$orderby = 'a.created DESC';
break;

Change value underlined in:

function orderbySecondary($orderby)
{
switch ($orderby)
{
case 'date' :
$orderby = 'a.publish_up';
break;

case 'rdate' :
$orderby = 'a.publish_up DESC';
break;
Sunday, 19 February 2012 02:59

Joomla 1.5 change the date format

Written by Administrator

Joomla! 1.5 date is stored in the file "language".ini. For example, for English, it is <Joomla! home>/en-GB/en-GB.ini.

You can change the date format by edit the values "DATE_FORMAT_LCx". By default, the date is in international format (for example, Thursday, 31 January 2008 18:30).

To change to standard US format (for example, Thursday, January 31, 2008, 06:30 PM), make the following changes:

DATE_FORMAT_LC=%A, %B %d, %Y
DATE_FORMAT_LC1=%A, %B %d, %Y
DATE_FORMAT_LC2=%A, %B %d, %Y %I:%M %p
DATE_FORMAT_LC3=%B %d, %Y
DATE_FORMAT_LC4=%m.%d.%y
DATE_FORMAT_JS1=m-d-y
%Y-%M-%D=%Y-%M-%D
%A, %B %E=%A, %B %e

These are the formats for the time

%H:%M = 00:00 through 23:59
%k:%M = 0:00 through 23:59
%I:%M %P = 00:00 am through 23:59 pm (I = upercase i)
%l:%M %P= 0:00 am through 23:59 pm (l = lowercase L)

(Note that %P will print the lowercase am/pm indicator for your locale, which may be blank.)

%I:%M %p = 00:00 AM through 23:59 PM (I = upercase i)
%l:%M %p= 0:00 AM through 23:59 PM (l = lowercase L)

Joomla! uses standard Linux date format codes. These codes are listed at the following link: http://nl3.php.net/manual/en/function.date.php

By: http://docs.joomla.org/How_do_you_change_the_date_format%3F

Monday, 11 August 2008 05:22

Platforms and Open Standards

Written by Administrator

Joomla! runs on any platform including Windows, most flavours of Linux, several Unix versions, and the Apple OS/X platform. Joomla! depends on PHP and the MySQL database to deliver dynamic content.

The minimum requirements are:

  • Apache 1.x, 2.x and higher
  • PHP 4.3 and higher
  • MySQL 3.23 and higher
It will also run on alternative server platforms such as Windows IIS - provided they support PHP and MySQL - but these require additional configuration in order for the Joomla! core package to be successful installed and operated.
Saturday, 09 August 2008 09:33

Support and Documentation

Written by Administrator

Support

Support for the Joomla! CMS can be found on several places. The best place to start would be the Joomla! Official Documentation Wiki. Here you can help yourself to the information that is regularly published and updated as Joomla! develops. There is much more to come too!

Of course you should not forget the Help System of the CMS itself. On the topmenu in the Back-end Control panel you find the Help button which will provide you with lots of explanation on features.

Another great place would of course be the Forum . On the Joomla! Forum you can find help and support from Community members as well as from Joomla! Core members and Working Group members. The forum contains a lot of information, FAQ's, just about anything you are looking for in terms of support.

Two other resources for Support are the Joomla! Developer Site and the Joomla! Extensions Directory (JED). The Joomla! Developer Site provides lots of technical information for the experienced Developer as well as those new to Joomla! and development work in general. The JED whilst not a support site in the strictest sense has many of the Extensions that you will need as you develop your own Web site.

The Joomla! Developers and Bug Squad members are regularly posting their blog reports about several topics such as programming techniques and security issues.

Documentation

Joomla! Documentation can of course be found on the Joomla! Official Documentation Wiki. You can find information for beginners, installation, upgrade, Frequently Asked Questions, developer topics, and a lot more. The Documentation Team helps oversee the wiki but you are invited to contribute content, as well.

There are also books written about Joomla! You can find a listing of these books in the Joomla! Shop.

Wednesday, 20 August 2008 11:11

Joomla! License Guidelines

Written by Administrator

This Web site is powered by Joomla! The software and default templates on which it runs are Copyright 2005-2008 Open Source Matters. The sample content distributed with Joomla! is licensed under the Joomla! Electronic Documentation License. All data entered into this Web site and templates added after installation, are copyrighted by their respective copyright owners.

If you want to distribute, copy, or modify Joomla!, you are welcome to do so under the terms of the GNU General Public License. If you are unfamiliar with this license, you might want to read 'How To Apply These Terms To Your Program' and the 'GNU General Public License FAQ'.

The Joomla! licence has always been GPL.

Monday, 11 August 2008 07:00

Extensions

Written by Administrator

Out of the box, Joomla! does a great job of managing the content needed to make your Web site sing. But for many people, the true power of Joomla! lies in the application framework that makes it possible for developers all around the world to create powerful add-ons that are called Extensions. An Extension is used to add capabilities to Joomla! that do not exist in the base core code. Here are just some examples of the hundreds of available Extensions:

Tuesday, 12 August 2008 23:33

Content Layouts

Written by Administrator

Joomla! provides plenty of flexibility when displaying your Web content. Whether you are using Joomla! for a blog site, news or a Web site for a company, you'll find one or more content styles to showcase your information. You can also change the style of content dynamically depending on your preferences. Joomla! calls how a page is laid out a layout. Use the guide below to understand which layouts are available and how you might use them.

Monday, 11 August 2008 23:13

What's New in 1.5?

Written by Administrator

As with previous releases, Joomla! provides a unified and easy-to-use framework for delivering content for Web sites of all kinds. To support the changing nature of the Internet and emerging Web technologies, Joomla! required substantial restructuring of its core functionality and we also used this effort to simplify many challenges within the current user interface. Joomla! 1.5 has many new features.

Saturday, 09 August 2008 08:49

Joomla! Overview

Written by Administrator

If you're new to Web publishing systems, you'll find that Joomla! delivers sophisticated solutions to your online needs. It can deliver a robust enterprise-level Web site, empowered by endless extensibility for your bespoke publishing needs. Moreover, it is often the system of choice for small business or home users who want a professional looking site that's simple to deploy and use. We do content right.

<< Start < Prev 1 2 3 Next > End >>
Page 1 of 3

We strive to provide 5 stars services.

web services 5 stars customer rating

click here to read the reviews!

Some Web Site Design

  • Professional Design targeted to your specific industry

  • Included Content Management System (CMS) for you to easy edit your website

  • SEO Compliant Websites KeyWords Analysis and Strategy

  • Choose From Over 20000 Designs so you get the website of your choice

  • No Monthly Fees

  • Search Engine & Local Directory Submission

  • Google Analytics Tutorial to learn how to track your website's progress

  • 24/7 Email Support from experts who are always available to help you

  • On-Line Store to set up your Online business

  • Secure Payments. iDeal, Pay Pal, Bank Transfer, Credit Card.


Get your website done! Just contact us for a free quotation!

SitoMaestro works with ...
Services