Advanced Search

Here are a few examples of how you can use the search feature:

Entering this and that into the search form will return results containing both "this" and "that".

Entering this not that into the search form will return results containing "this" and not "that".

Entering this or that into the search form will return results containing either "this" or "that".

Search results can also be filtered using a variety of criteria. Select one or more filters below to get started.

Assuming alias is required, the following 15 results were found.

  1. List of Font Awesomehttps://joellipman.com/articles/web-development/list-of-font-awesome.html

     fa-arrows-h []  fa-arrows-v []  fa-asterisk [] 4.2  fa-at [] 4.1  fa-automobile (alias) []  fa-backward [] 4.4  fa-balance-scale []  fa-ban [] 4.1  fa-bank (alias) [] ...

    • Type: Article
    • Author: Joel Lipman
    • Category: Web-Development
    • Language: *
  2. Migrate Joomla! 1.5.x to 2.5.x+https://joellipman.com/articles/cms/joomla/migrating-from-joomla-15-to-16.html

    banner categories: -- - Import banner categories from J15 and insert as categories in J30 SET @new_jos_categories_extension_alias=( SELECT `alias` FROM `my_new_database`.my_prefix_categories WHERE `extension`='com_content' ORDER BY `id` ASC LIMIT 0,1);...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: *
  3. Migrating from Joomla 2.5.x to 3.4.xhttps://joellipman.com/articles/cms/joomla/migrating-from-joomla-2-5-x-to-3-4-x.html

    Preparation: Backup your Joomla v2.5.x database and website files Note the CURRENT super user identification number "ID" and alias (name) Ensure all items are "checked-in" (Do a "Global Check In") Install new Joomla: Install Joomla! CMS v3.4.x with Demo...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: en-GB
  4. Warning: Save failed. Another menu item has the same aliashttps://joellipman.com/articles/cms/joomla/warning-save-failed-another-menu-item-has-the-same-alias.html

    A quick article for Joomla CMS version 3.x on resolving a menu item alias conflict: Warning Save failed with the following error. Another menu item has the same alias in Root. Root is the top level parent You will need: Access to the Joomla...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: *
  5. URL Alias uniqueness with PHP & MySQLhttps://joellipman.com/articles/web-development/php/url-alias-uniqueness-with-php-mysql.html

    for me on how to copy Joomla's and Wordpress' feature where a Title/Name value is converted to a search-engine friendly URL alias and is unique in the database. Ok that's a long sentence; let me try this: When I save a record in JoomlaCMS or...

    • Type: Article
    • Author: Joel Lipman
    • Category: Personal Home Page
    • Language: en-GB
  6. Change default order of weblinkshttps://joellipman.com/articles/cms/joomla/change-default-order-of-weblinks.html

    code to one of the following values: id => sort by ID catid => sort by Category ID sid => ? dunno title => by web link title alias => sort by alias title url => sort by url description => sort by description date => sort by date added (most recent or...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: *
  7. Include a carriage return in a column headinghttps://joellipman.com/articles/microsoft/sql-server/include-a-carriage-return-in-a-column-heading.html

    (Client) MS Excel 2010 What? A really quick note on how to insert a carriage return or new line into the column name/alias (the header). It might seem trivial but these little aesthetic changes done at the database level can save some time. Why? I have...

    • Type: Article
    • Author: Joel Lipman
    • Category: SQL Server
    • Language: *
  8. SELECT COUNT(DISTINCT name) FROM tablehttps://joellipman.com/articles/cms/joomla/select-count-distinct-name-from-table.html

    is valid but I get what you mean and it's sometimes difficult to explain why you want to use it. How? Method #1: Add an alias to the field: -- Note the alias for the field SELECT COUNT( DISTINCT `my_field`) AS myCount FROM my_table; Method #2: Count...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: *
  9. Merge the content of two similar tables in MySQLhttps://joellipman.com/articles/database/mysql/merge-the-content-of-two-similar-tables-in-mysql.html

    columns of the tables as I'm quite content with just the two columns I requested. And for those of you that don't know, the alias "AS" is optional in MySQL (think it's optional for most SQL forms). I found that to add further tables, simply start with...

    • Type: Article
    • Author: Joel Lipman
    • Category: MySQL
    • Language: en-GB
  10. Importing Joomla articles to WordPress postshttps://joellipman.com/articles/cms/wordpress/importing-joomla-articles-to-wordpress-posts.html

    state WHEN '1' THEN 'publish' ELSE 'draft' END 'post_status', 'open' comment_status, 'open' ping_status, '' post_password, alias 'post_name', '' to_ping, '' pinged, modified 'post_modified', modified 'post_modified_gmt', '' post_content_filtered, '0'...

    • Type: Article
    • Author: Joel Lipman
    • Category: Wordpress
    • Language: en-GB
  11. Migrate JComments from Joomla 1.5.x to Joomla 2.5.xhttps://joellipman.com/articles/cms/joomla/migrate-jcomments-from-joomla-15x-to-joomla-25x.html

    Content my_joomla_2_5_db.my_2_5_db_prefix_jcomments j2b -- Joomla 2.5.x JComments SET j2b.`object_id`=j2a.`id` WHERE j1a.`alias`=j2a.`alias` AND j1a.`id`=j1b.`object_id` AND j2b.`comment`=j1b.`comment`

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: *
  12. Preg_Replace all strings between two tagshttps://joellipman.com/articles/web-development/php/preg-replace-all-strings-between-two-tags.html

    '$0', $string_formatted ); Surround string (backticks) with darkred styling Convert: `mysql_reserved_word`=my_alias » `mysql_reserved_word`=my_alias $string_formatted = preg_replace ( '/`([^`]+)`/', '$0', $string_original ); Replace contents between two...

    • Type: Article
    • Author: Joel Lipman
    • Category: Personal Home Page
    • Language: *
  13. Android: Keytool and Google Maps displaying greyhttps://joellipman.com/articles/google/androidos/android-keytool-and-google-maps-displaying-grey.html

    to the JDK folder cd jdk Change to bin folder cd bin Type keytool -list -v -keystore c:/Users//.android/debug.keystore -alias androiddebugkey - storepass android -keypass android (replace with your windows login) Should be something like: To get the App...

    • Type: Article
    • Author: Joel Lipman
    • Category: AndroidOS
    • Language: *
  14. Joes Search Module (JSM)https://joellipman.com/component/content/article/joes-search-module-jsm.html?catid=40

    but you can include multiple components by separating these with a comma. This parameter is a text field which uses the alias of the component (eg. "doc_indexer"), you would need to modify this to the component you want it to search. More than one area...

    • Type: Article
    • Author: Joel Lipman
    • Category: Product Documentation
    • Language: *
  15. Joes Quicklist Weblinks (JQW) Downloadshttps://joellipman.com/component/content/article/joes-quicklist-weblinks-jqw-downloads.html?catid=92

    2.1.2- Moved "More Links" text to Joomla language file (translatable) - Date Uploaded: Sun, 10th Mar 2013 2.1.1- Corrected alias reference to all columns irrespective of order settings. - Link for text only links title and not description. - Restored...

    • Type: Article
    • Author: Joel Lipman
    • Category: Downloads
    • Language: *
Results 1 - 15 of 15

Please publish modules in offcanvas position.