Quote:
Originally posted by TECK
Make a file with the content:
Code:
<?php
error_reporting( E_ALL & ~E_NOTICE );
include_once( './global.php' );
cpheader( '<title>Run Query</title>' );
$runquery = "ALTER TABLE thread ADD FULLTEXT( title )";
$DB_site->reporterror = 1;
$DB_site->query( $runquery );
print_r( 'Query successful:<br>' );
print_r( '<font face="Courier New"> ' . $runquery . '</font><br><br>' );
print_r( 'Do not forget to delete this file.' );
cpfooter();
?>
Save it as [high]doquery.php[/high] and upload it onto your /admin folder.
Once uploaded, load it through your browser and let me know if you get any errors. If you do, post them here...
|
The used table type doesn't support FULLTEXT indexes
Same error...
Maybe I must check my thread table.