
aws 3.6.1
-----------------------
To upgrade from a precvious release (3.6.0) to 3.6.1) reimport product-aws.xml and set allow overwrite to yes

all done

possible problems can be reported here http://www.delphiprogramming.be/forums/bugtracker.php?do=listbugs&bugtracker_projectid=2

aws 3.6.4
------------------------
For the new spamtrap to work a little (manual) edit to a vBulletin file needed
1)file to be edited: /includes/functions.php

in  /includes/functions.php find the fetch_censored_text() function right after this

function fetch_trapped_text($text)
{
	global $vbulletin;
	static $trappedwords;
	global $trappedcounter;
	if ($vbulletin->options['warn_enablespamtrap'] AND !empty($vbulletin->options['warn_trappedwords']))
	{
		if(empty($trappedwords))
		{
			$vbulletin->options['warn_trappedwords'] = preg_quote($vbulletin->options['warn_trappedwords'], '#');
			$trappedwords = preg_split('#\s+#', $vbulletin->options['warn_trappedwords'], -1, PREG_SPLIT_NO_EMPTY);
		}
		foreach ($trappedwords AS $trappedword)
		{
			$trappedword = str_replace('\+', ' ', $trappedword);
			$trappedword = str_replace('\\\{','',$trappedword);
			$trappedword = str_replace('\\\}','',$trappedword);
			$trappedword = str_replace('\\','',$trappedword);
			$i=substr($trappedword, 1, vbstrlen($trappedword)-2);
			$trappedcounter = $trappedcounter + substr_count(strtolower($text), strtolower($i));
		}
	}
	return $trappedcounter;
}

save file upload

To have the warning information displayed in the usercp open template USERCP  and find

<!-- ############## END NEW REPUTATION ##############  -->

below that

<if condition="$show[warn_page]">
$warn_page>
</if>

Now as usual goto your admincp => products & plugins => add a product

import product-aws.xml (SET ALLOW OVERWRITE TO YES DO NOT FORGET )

all done



aws 3.6.7
-------------------------------------
upload all files (most files changed) and reimport product-aws.xml (set allow overwrite to yes)
that should do it

aws 3.6.9
--------------------------------------
1)create a SQL dump of your "warning_types" tables and import this dump into "warningtype" table after that it is safe to delete
the warning_types table.This can be done throug phpMyAdmin

2) If you do not have or are unwilling to install tms (template modification system) then open product-aws.xml and remove

<dependency dependencytype="product" parentproductid="tms" minversion="1.0.0" maxversion="" />

this will stop vBulletin from throwing that associated errormessage

that's all folks