Submitted by melinda on Wed, 09/26/2018 - 20:26
This drove me crazy. Check the text in your body field, or whatever text field and see if you have the word "select" in your content text. Sometimes it identifies it as a SQL injection. Use a different word than "select" in your text.
Not sure if there's a work around but I use a synonym for it in my content.
Submitted by melinda on Wed, 04/04/2018 - 10:45
I have an inherited Joomla 2.5 site that the company if not ready to migrate to Joomla 3. As of March 31, 2018 Recaptcha v1 no longer works. The API has been retired.
Joomla 2.5 does not run recaptcha v2 without a work around. (Joomla 3 uses v2)
Here my work around if your Joomla 2.5 site is getting nailed with spam.
Captcha Q&A
https://extensions.joomla.org/extensions/extension/access-a-security/cap...
Submitted by melinda on Wed, 01/10/2018 - 14:30
I could really find any clear direction on how to do this anywhere so here you go:
I am assuming you know how to create a view.
Here's an overview of the view completed:
Submitted by melinda on Mon, 11/13/2017 - 15:29
Drupal will block a user's IP if too many attemps are made to access the Drupal 7 site within a set amount of time.
To change this default setting (5 times) add the following lines to your settings.php file.
$conf['user_failed_login_user_limit'] = PHP_INT_MAX;
$conf['user_failed_login_user_window'] = 5;
Submitted by melinda on Tue, 10/03/2017 - 15:07
First create the rss feed in Drupal. I used views to do it:
my path is: /news/rss.xml
Submitted by melinda on Wed, 09/13/2017 - 10:34
Anchor tags must look like the below for Chrome to reconginize them and scroll. (Need to have the <p> or <div> tag, the title should go between the <a> tags.)
Submitted by melinda on Tue, 09/12/2017 - 16:53
I need to allow users to add information during registration but not allow them to access those fields to edit after the new user account was saved. (Data collection project, if they went into their profiles and changed that data it would mess up our numbers.)
Here's the Hook alter code. :)
Submitted by melinda on Wed, 08/23/2017 - 23:04
What I needed:
I needed a rule that assigned a user role to a user after they completed a certain quiz developed in the quiz module. The reasoning behind adding this new role was we wanted users to complete one quiz before having access to the rest of the quizes on the site.
After researching like crazy here's what I came up with:
Event: Drupal is initialing
Condition: Check Path (In the Path section)
Submitted by melinda on Tue, 07/18/2017 - 18:56
I am sure a lot of people run into this issue. Allowing html tags on the "label" field in webform form components to change part of the text to bold or other font formats.
After hours of research on the web... here is the solution... and of course it is crazy easy!
Add
$conf['webform_allowed_tags'] = array('a', 'em', 'strong', 'code', 'img', 'ul', 'li', 'u');
to your setting.php located here > sites/default /
Submitted by melinda on Wed, 05/24/2017 - 11:20
So there 's a new Group function on SharePoint Online is built in with Team Sites and also has an overlap with exchange online.
Actually I don't know if it's new or not but it's new to me. Any ways... these sites are notoriously complicated to delete.
Here's an easy way!
Make sure you have SharePoint Online Powershell. You can download it here> https://go.microsoft.com/fwlink/p/?LinkId=255251
Pages