I had to do a force install after it gave me the following report
I cant create the mods folder in adm.New Files
Source Target Status
root/adm/*.* adm/*.* Error
root/includes/acp/*.* includes/acp/*.* Success
root/includes/stats/*.* includes/stats/*.* Success
root/install/*.* install/*.* Success
root/language/en/mods/*.* language/en/mods/*.* Success
root/statistics/*.* statistics/*.* Success
root/styles/prosilver/template/stats/*.* styles/prosilver/template/stats/*.* Success
root/styles/prosilver/theme/statistics.css styles/prosilver/theme/statistics.css Success
root/stats.php stats.php Success
root/styles/subsilver2/template/stats/*.* styles/subsilver2/template/stats/*.* Success
Then i scrolled down to see if everything is ok and i found this:
I opened up posting.php and i edited itposting.php
Find
// The last parameter tells submit_post if search indexer has to be run
$redirect_url = submit_post($mode, $post_data['post_subject'], $post_data['username'], $post_data['topic_type'], $poll, $data, $update_message, ($update_message || $update_subject) ? true : false);
Add Before
/** Start phpBB Statistics
* send BBCode and smiley count to the DB
*/
if(!function_exists('save_bbcode_smiley_count'))
{
include($phpbb_root_path . 'statistics/includes/functions.' . $phpEx);
}
save_bbcode_smiley_count($data, $mode);
// End phpBB Statistics
The Find specified by the MOD could not be found
While going to install.xml after i clicked Proceed to next step i got this:
What should i do to fix this problem ?General Error
SQL ERROR [ mysql4 ]
Duplicate column name 'field_stats_show' [1060]
SQL
ALTER TABLE phpbb_profile_fields ADD field_stats_show TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT 0
BACKTRACE
FILE: includes/db/mysql.php
LINE: 174
CALL: dbal->sql_error()
FILE: install/install_install.php
LINE: 170
CALL: dbal_mysql->sql_query()
FILE: install/install_install.php
LINE: 73
CALL: install_install->load_schema()
FILE: install/index.php
LINE: 255
CALL: install_install->main()
FILE: install/index.php
LINE: 56
CALL: module->load()