General how to secure joomla websites Joomla joomla hijacking joomla sql injection Secure joomla sites

14 Ways to Secure Joomla and prevent from Hijacking

Change the default database prefix (jos_) Use a SEF component Use the correct CHMOD for each folder and file. Password protect your administrative area. Use a .htaccess file to secure your Joomla. Passwords – Use a unique strong password. Install the jSecure Authentication plugin. Always Update all third party extensions to the latest versions. Remove […]

tips tricks on web
Ical ical recur example

RRULE EXDATE Ical Recurring Event Appointment Example

If you are looking for a RRULE EXDATE Ical example file for a Recurring Event then check below. Ical Recurring Event Example BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook 9.0 MIMEDIR//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:PUBLISH BEGIN:VEVENT DTSTART:20190922T023000Z DTSTAMP:20190922T023611Z RRULE:FREQ=WEEKLY;INTERVAL=1;UNTIL=20151122T033000Z UID:1780 Location:AP Test DESCRIPTION:test LAST-MODIFIED:20190922T023611Z SEQUENCE:0 STATUS:CONFIRMED SUMMARY: service TRANSP:OPAQUE END:VEVENT END:VCALENDAR

BYDAY=TU;BYSETPOS=4;WKST=SU; exdate rrule example. Ical ical recur example ical recurring recur ical example recurring ical example rrule ical

Ical Recurring Appointment with RRULE EXDATE Examples

To create a recur ical in outlook just use RRULE and EXDATE for exclude date.With Recur RRULE you need to use below values few are optional ://recur = “FREQ”=freq *( freq = “SECONDLY” / “MINUTELY” / “HOURLY” / “DAILY”/ “WEEKLY” / “MONTHLY” / “YEARLY”enddate = dateenddate =/ date-time ;An UTC valuebyseclist = seconds / ( […]

PHP Sample Programs

How to Check the Last Day in Month

Check the Last Day in Month $startDate = “20150624”;$endDate = “20150722”;$startDate = strtotime($startDate);$endDate = strtotime($endDate);$dayLength = 60 * 60 * 24;$checkDateRange = ($endDate – $startDate) / $dayLength;$datesStartMonth = date(‘t’, $startDate);if ($checkDateRange > $datesStartMonth) {echo $error = “Date range should be with in one month”;}

techfolks mysql tutorials
delete duplicate rows duplicate rows duplicate rows in mysql duplicate rows in oracle sql mysql db2 find duplicate rows in sql get duplicate rows in sql how to get duplicate rows Mysql

How to find duplicate rows in Sql or Mysql

You can find duplicate rows in the mysql table, just use below select query, to find duplicate rows in Oracle, Sql, Mysql, DB2. SELECT columnName, COUNT(*) as countFROM selectedTableGROUP BY columnNameHAVING COUNT(*) > 1; You came from below query:how to find duplicate rows in sql server 2008how to find duplicate rows in sql and deletehow […]