I just did a test install... had an error:
aeDating-v.4.0.0000.zip (date July 13)
Depending on your server error reporting configuration, you will either get a blank screen, or the following error message.
Parse error: parse error, unexpected T_CASE in /home/dev/v4test/public_html/v400/langs/lang-English.php on line 1306
Open /langs/lang-English.php
Check line 1305
Code:
case "_Add new category" : return "Add new category"
Add the ; at the end, like this
Code:
case "_Add new category" : return "Add new category";
Check line 1309
Code:
case "_Category deleted successfull" : return "Category was deleted successfully"
Add the ; at the end, like this
Code:
case "_Category deleted successfull" : return "Category was deleted successfully";
Smoge
Bookmarks