Could create a sql error:
Add a file to includes/functions/extra_functions
Call it something like error_cause.php
Inside paste the following with no spaces or other characters before the first <?php
Code:
<?php
if (isset($_GET['etest']) && zen_not_null($_GET['etest']) && $_GET['etest'] == 'me') {
$sql = "select * from produc where products_id < 100;";
$sql_result = $db->Execute($sql);
}
That should generate an error on page load.when you have in your uri something like:
http: // your site .com/index.php?etest=me
It will otherwise leave your site intact (not bother other browsing customers) but you also want to eventually delete that file so nothing odd happens in the future.