igavb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: 404 error for all new pagesChecked the logs, the latest inserts are below – any idea?:
[Tue Feb 23 09:09:05.706320 2016] [:error] [pid 2126] [client 82.24.215.87:49168] PHP Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘gp_setup’ not found or invalid function name in /var/www/html/wp-includes/plugin.php on line 525, referer: http://188.166.147.159/wp-admin/them$
[Tue Feb 23 09:15:06.092792 2016] [:error] [pid 2126] [client 82.24.215.87:49258] PHP Warning: mkdir(): File exists in /var/www/html/wp-content/themes/oblivion/demo/import.php on line 9, referer: http://188.166.147.159/wp-admin/admin.php?page=options-framework
[Tue Feb 23 09:15:37.961056 2016] [:error] [pid 2251] [client 82.24.215.87:49261] WordPress database error Duplicate key name ‘slug’ for query ALTER TABLE wp_terms ADD KEY slug (slug(191)) made by wp_upgrade, make_db_current_silent, dbDelta, referer: http://188.166.147.159/wp-admin/upgrade.php?_wp_http_referer=%2Fw$
[Tue Feb 23 09:15:37.961266 2016] [:error] [pid 2251] [client 82.24.215.87:49261] WordPress database error Duplicate key name ‘name’ for query ALTER TABLE wp_terms ADD KEY name (name(191)) made by wp_upgrade, make_db_current_silent, dbDelta, referer: http://188.166.147.159/wp-admin/upgrade.php?_wp_http_referer=%2Fw$
[Tue Feb 23 09:15:37.961432 2016] [:error] [pid 2251] [client 82.24.215.87:49261] WordPress database error Duplicate key name ‘meta_key’ for query ALTER TABLE wp_commentmeta ADD KEY meta_key (meta_key(191)) made by wp_upgrade, make_db_current_silent, dbDelta, referer: http://188.166.147.159/wp-admin/upgrade.php?_wp$
[Tue Feb 23 09:15:37.991098 2016] [:error] [pid 2251] [client 82.24.215.87:49261] WordPress database error Duplicate key name ‘meta_key’ for query ALTER TABLE wp_postmeta ADD KEY meta_key (meta_key(191)) made by wp_upgrade, make_db_current_silent, dbDelta, referer: http://188.166.147.159/wp-admin/upgrade.php?_wp_ht$
[Tue Feb 23 09:15:37.991317 2016] [:error] [pid 2251] [client 82.24.215.87:49261] WordPress database error Duplicate key name ‘post_name’ for query ALTER TABLE wp_posts ADD KEY post_name (post_name(191)) made by wp_upgrade, make_db_current_silent, dbDelta, referer: http://188.166.147.159/wp-admin/upgrade.php?_wp_ht$
[Tue Feb 23 09:16:41.264397 2016] [:error] [pid 1937] [client 188.166.147.159:38766] WordPress database error Duplicate entry ‘adventure’ for key ‘slug’ for query INSERT INTOwp_terms(name,slug,term_group) VALUES (‘Adventure’, ‘adventure’, 0) made by do_action_ref_array, call_user_func_array, _wp_batch_s$Forum: Fixing WordPress
In reply to: 404 error for all new pagesHi,
Just changed the permalink setting as per your suggestion and attempted to make /forums – still page cannot be displayed 🙁
Forum: Fixing WordPress
In reply to: 404 error for all new pagesHi iframe
thanks for the response under /var/www/html (the same folder as my WP install) I have a .htaccess file which has the below in it (is this wrong?):
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress