neralex
Forum Replies Created
-
Forum: Plugins
In reply to: [XML Sitemap Generator for Google] Noindex tagOpen sitemap.xsl inside the plugin-folder and remove this line:
<meta name="robots" content="noindex,follow" />Now its running as it should. I guess there was an issue with local stored website files in firefox 58, which caused this issue. After clearing cache and deleting all cookies and temps I was able to reinstall it. But plugin-tables couldn’t created, I had to do it manually. I’m using CHARSET ‘utf8’, COLLATION ‘utf8_unicode_ci’ and ENGINE ‘MyISAM’ in my database for some reasons and this works fine. But only this plugin makes trouble. Not sure but it could caused by an CREATE TABLE query, which isn’t using the MySQL settings from the config.php.
Nope, not really. I tried to delete all plugin files and all database tables/entries of the plugin but after that I still got the wpsf-forcelogout=6 after clicking on the update-icon in the admin bar – with and without a relogin. I deleted all cookies in my browser – nothing. Now I hope I a backup of the files will help.
Ok I was on the same track, because I got errors like this: “WordPress database error Unknown character set: ‘utf8_unicode_ci’ for query CREATE TABLE wp_icwp_wpsf_audit_trail”. After checking the config-file I had the DB_CHARSET value on “utf8-unicode-ci”. I change it back to “utf8” and the tables are created. Your pointed table has noe exactly your posted columns in the right order. Sessions are already stored now.
But after re-activating the user-management features it fails again.
At first besides the issue: after clicking on the update-icon in the admin-bar, I will get an force-logout. That means each try to load this url: wp-admin/update-core.php returns: wpsf-forcelogout=6.
And if I activate the sessions option to change the “2” days to another value, then it retuns an forcelogout and it results in this posted error, without any chance to login anymore. I tried it now 2 times after deleting all database related options and tables and reinstalling.
No other plugins like this are in use, its caused by the plugin itself.
same, no login possible anymore. It seems this plugin is broken.
Forum: Plugins
In reply to: [Gallery by FooGallery] Displaying alt text on hoverI found a way to fix it.
open ‘includes/class-foogallery-attachment.php’ and find:if ( ! empty( $this->alt ) ) { $attr['alt'] = $this->alt; }replace it with:
# fixed: validation issue - missing alt-argument if ( ! empty( $this->alt ) ) { $attr['alt'] = $this->alt; } else { $attr['alt'] = ''; } # added: set title-argument if ( ! empty( $this->title ) ) { $attr['title'] = $this->title; }Forum: Plugins
In reply to: [Gallery by FooGallery] Displaying alt text on hoverThe reason is, there is simply no alt-attribute on each img-tag, an embarrassing error. This issue breaks also the W3C HTML validation rules. It would be cool, when it will be fixed with the next update. Thanks in advance.
- This reply was modified 9 years ago by neralex.
Forum: Plugins
In reply to: [jQuery Updater] After active work for photo gallery but slider stop functionIt works!
Forum: Plugins
In reply to: [jQuery Updater] After active work for photo gallery but slider stop functionIt seems the issue is based on the jquery-migrate-1.2.1.min.js because if you remove the line from the plugin then it works with jquery-2.2.0.min.js! So the plugin works but the migrate-file will not more work with the new jquery version.
Edit: I found the pre-version of jquery-migrate-1.2.2.min.js and this file will work with the latest jquery-2.2.0.min.js
https://github.com/jquery/jquery-migrate
Current work-in-progress build: Although this file represents the most recent updates to the plugin, it may not have been thoroughly tested. We do not recommend using this file on production sites since it may be unstable; use the released production version above.