Preserve Domain Alias

You need to set the canonical hostname (ie. with www) in the WordPress dashboard… Under Settings > General and set the appropriate “WordPress Address (URL)” and “Site Address (URL)” properties. Alternatively, these values can be hardcoded in wp_config.php by defining the WP_HOME and WP_SITEURL constants respectively. Reference: https://codex.wordpress.org/Changing_The_Site_URL SSLOptions +StrictRequire SSLRequireSSL SSLRequire %{HTTP_HOST} eq “example.com” … Read more

External cron job firing too many times

You might be calling wp-cron.php every 15 minutes, but your cron task is set to happen every 5 minutes! $schedules[“5min”] = array( ‘interval’ => 5*60, ‘display’ => __(‘Once every 5 minutes’)); … wp_schedule_event( time(), ‘5min’, ‘isa_add_every_five_minutes’ ); Change it instead to every 15 minutes

Case insensitive header params for API request

This would seem to be a “fault” of the way WordPress (the “server”) is reading the HTTP request headers. (If they are being read into an associative array without any normalisation then the comparison will naturally be case-sensitive.) This should arguably be “fixed” in WP. However, it’s possible to create a “workaround” in .htaccess and … Read more

Out of memory errors – anon-rss or file-rss?

“RSS” stands for “resident set size,” one way to measure the amount of memory used by a process in Linux. It does not refer to RSS feeds. This probably has very little to do with WordPress, and everything to do with the amount of RAM in your box and how much memory Apache is using. … Read more

problems with wordpress and php version 5.3.3-1

The latest and greatest php version is always the recommended version. Seriously. All core devs use it when developing trunk. Only a few bother to test older php versions, as can be seen by the occasional ticket opened related to php4 or php5.x incompatibility. The same cannot be said by plugin authors, however… As you … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)