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 file is required, the following 196 results were found.

  1. Creating a custom form field type for Joomla XML fieldsethttp://www.joellipman.com/articles/cms/joomla/creating-a-custom-form-field-type-for-joomla-xml-fieldset.html

    and projects and need a dropdown to have selectable options restricted to the logged-in user. This is specified in the XML file of the custom Joomla component and needs some SQL dependent on some dynamic variables. Why? In Joomla, the XML type of "sql"...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: en-GB
  2. Call to a member function mark() on a non-object in Joomla CMShttp://www.joellipman.com/articles/cms/joomla/call-to-a-member-function-mark-on-a-non-object.html

    How? Not really a solution here because this is indicating that the system can't find the core framework files. Yes the bad news is you have lost your site. The good news is that it's only the core files and component files. Here are some tips when...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: en-GB
  3. ReCaptcha disappears from Joomla 2.5 Registrationhttp://www.joellipman.com/articles/cms/joomla/recaptcha-disappears-from-joomla-2-5-registration.html

    Method #1 I prefer this method as it changes less code and is more likely to be supported in a Joomla update. Open the file /plugins/captcha/recaptcha/recaptcha.php and find the following 3 lines of code : const RECAPTCHA_API_SERVER =...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: en-GB
  4. Android: Function to let user take photo or choose existinghttp://www.joellipman.com/articles/google/androidos/android-function-to-let-user-take-photo-or-choose-existing.html

    image in an ImageView. How? More as a reference for myself but this displays an AlertDialog designed by an XML layout file ("res/layout/dialog_edititem_photo"). The ImageView exists in another XML with an identifier called @+id/hangar_aircraft_photo....

    • Type: Article
    • Author: Joel Lipman
    • Category: AndroidOS
    • Language: *
  5. Accessing Apimo WebService APIhttp://www.joellipman.com/articles/automation/api-misc/accessing-apimo-webservice-api.html

    // specify your assigned key here $apimo_sha = sha1($apimo_key.$my_timestamp); // receive content $output = file_get_contents( $apimo_url. '?provider='.$my_provider_id. '×tamp='.$my_timestamp. '&sha1='.$apimo_sha. '&method='.$apimo_method....

    • Type: Article
    • Author: Joel Lipman
    • Category: API Miscellaneous
    • Language: *
  6. AutoHotkey: Check Windows Folder Sizeshttp://www.joellipman.com/articles/automation/autohotkey/autohotkey-check-windows-folder-sizes.html

    article on how to write an AutoHotkey program to simply return the folders in the drive and display the size of all the files/folders contained within. How? So I'll be putting this program for download from the download section of this website but I...

    • Type: Article
    • Author: Joel Lipman
    • Category: AutoHotkey
    • Language: en-GB
  7. Excel - Check a column for values found in another columnhttp://www.joellipman.com/articles/microsoft/excel/excel-check-a-column-for-values-found-in-another-column.html

    This is an article to remind me how to search a column in an Excel file for values found in another column (in this example, on another worksheet in the same workbook). How? So for demonstration purposes, I'm using a new Excel file with two worksheets...

    • Type: Article
    • Author: Joel Lipman
    • Category: Excel
    • Language: en-GB
  8. Zoho Deluge: Get Image Uploaded in Creator Formhttp://www.joellipman.com/articles/crm/zoho/zoho-deluge-get-image-uploaded-in-creator-form.html

    this to eu (Europe), com (US), com.cn (China),... v_TLD = "eu"; // my creator form f_MyImages = MyImages[Name == "Logo"]; v_Filename = f_MyImages.MyImage.getSuffix("/image/").getPrefix("\""); // specify publish key of published report (not the form)...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  9. Windows 10: Shortcut Apps to Settingshttp://www.joellipman.com/articles/microsoft/windows-os/windows-10-shortcut-apps-to-settings.html

    Advertising ID ms-settings:privacy-advertisingid (deprecated) App diagnostics ms-settings:privacy-appdiagnostics Automatic file downloads ms-settings:privacy-automaticfiledownloads Background Apps ms-settings:privacy-backgroundapps Calendar...

    • Type: Article
    • Author: Joel Lipman
    • Category: Windows OS
    • Language: *
  10. Zoho CRM / Deluge: Send an email with a CRM Quote using a given CRM templatehttp://www.joellipman.com/articles/crm/zoho/zoho-crm-send-an-email-with-a-crm-quote-using-a-given-crm-template.html

    + v_TemplateID + "/actions/print_preview?record_id=" + p_QuoteID + "&print_type=pdf"; f_FileRequest = invokeurl [ url :v_Url type :GET connection:"zcrm" ]; f_FileRequest.setParamName("file"); f_FileRequest.setFileName(r_QuoteDetails.get("Subject") +...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  11. Zoho Deluge: Shopify API: Get all active products with GraphQL and Paginationhttp://www.joellipman.com/articles/crm/zoho/zoho-deluge-shopify-api-get-all-active-products-with-graphql-and-pagination.html

    { // init v_CountTotal = 0; v_CountUpdated = 0; v_PerPage = 10; b_HasNextPage = true; v_Cursor = ""; l_CsvFileRows = List(); // // start preparing CSV file to email for debugging purposes v_ReportCSV = "Ref,Shopify SKU,Shopify Title,Shopify Product...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  12. ZohoCRM: Get All eBay Active Listingshttp://www.joellipman.com/articles/crm/zoho/zohocrm-get-all-ebay-active-listings.html

    use this data to synchronize with data held in Zoho Inventory... How? So we're going to use a ZohoCRM function to get this file which we can run on demand. Why not in Zoho Inventory or any other Zoho app? Because we like to challenge ourselves... Once...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  13. Zoho CRM & Zoho Sign: Send CRM Merged Template for Zoho Signhttp://www.joellipman.com/articles/crm/zoho/zoho-crm-zoho-sign-send-crm-merged-template-for-zoho-sign.html

    comes back to a section called "ZohoSign Documents", download the attachment Go back to the contact record, and upload the file to the attachment... Some customers say this is unworkable and takes far too long, especially the part of adding the various...

    • Type: Article
    • Author: Joel Lipman
    • Category: Zoho
    • Language: *
  14. Setting a rocket theme background to fixedhttp://www.joellipman.com/articles/cms/joomla/setting-a-rocket-theme-background-to-fixed.html

    scroll about. Go to Extensions -> Template Manager> Edit the CSS for the template You should be given an option of css files, select styles.css and click on the Edit button Look for these lines: body.bgstyle1 #main-background {background:...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: *
  15. How to use download managers with Google Chromehttp://www.joellipman.com/articles/google/how-to-use-download-managers-with-google-chrome.html

    to the YouTube website and to the page of the video. Click on your bookmark and Google should say it's downloading the FLV file Using the bookmark feature and convert to MP4: Right click on the bookmarks bar of Google Chrome. Type the name to what ever...

    • Type: Article
    • Author: Joel Lipman
    • Category: Google
    • Language: en-GB
  16. Add "Command prompt from here" to right-click context menuhttp://www.joellipman.com/articles/microsoft/windows-os/add-command-prompt-from-here-to-right-click-context-menu.html

    don't; I thought I might as well post the way I do it: Open up windows explorer Go to Tools -> Folder Options Click on the File Types tab Scroll down and select (NONE) Folder as file type Click on Advanced Click on New... For the Action type what ever...

    • Type: Article
    • Author: Joel Lipman
    • Category: Windows OS
    • Language: *
  17. How to make your Joomla site use SEO friendly urlshttp://www.joellipman.com/articles/cms/joomla/how-to-make-your-joomla-site-use-seo-friendly-urls.html

    that you can set all those SEO settings in the global configuration tab to YES. Note: you need the permissions to rename the file ("htaccess.txt" to ".htaccess" in your website root folder). You'll need ftp access or a file manager with all your website...

    • Type: Article
    • Author: Joel Lipman
    • Category: Joomla
    • Language: en-GB
  18. Added a Launcher and Unduplicaterhttp://www.joellipman.com/component/content/article/added-a-launcher-and-unduplicater.html?catid=87

    to download and include the source codes under the GNU/GPL License v3. If you have autohotkey installed, you can run the AHK files and modify these to suit your needs. The new programs also read off a configuration file which you can modify in any text...

    • Type: Article
    • Author: Joel Lipman
    • Category: Products
    • Language: *
  19. MediaWiki: MySQL to extract path to imageshttp://www.joellipman.com/articles/cms/mediawiki/mediawiki-mysql-to-extract-path-to-images.html

    name, size, user who uploaded, timestamp and the path. Remember that the paths are determined using the MD5 Hash of the filename: select img_name, img_size, img_user_text, img_timestamp, CONCAT(SUBSTR(MD5(img_name), 1, 1), '/', SUBSTR(MD5(img_name), 1,...

    • Type: Article
    • Author: Joel Lipman
    • Category: MediaWiki
    • Language: en-GB
  20. SSRS No Delay for First Report of the Dayhttp://www.joellipman.com/articles/microsoft/ssrs/ssrs-no-delay-for-first-report-of-the-day.html

    server. Apply to each server that requires it. Let your report server administrators do this: On the server, open the XML file: C:\Program Files\Microsoft SQL Server\MSRS10.MSSQLSERVER\Reporting Services\ReportServer\RsReportServer.config Set the...

    • Type: Article
    • Author: Joel Lipman
    • Category: SQL Server Reporting Services
    • Language: en-GB
Results 121 - 140 of 196

Donate & Support

If you like my content, and would like to support this sharing site, feel free to donate using a method below:

Paypal:
Donate to Joel Lipman via PayPal

Bitcoin:
Donate to Joel Lipman with Bitcoin bc1qf6elrdxc968h0k673l2djc9wrpazhqtxw8qqp4

Ethereum:
Donate to Joel Lipman with Ethereum 0xb038962F3809b425D661EF5D22294Cf45E02FebF

Please publish modules in offcanvas position.