ellp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Password always has to be resetedHello Again,
I remove all plugins and test login using another browser, without LastPass installed.
The error stay there…
Any other idea?
Forum: Fixing WordPress
In reply to: Password always has to be resetedHello Justin!
Hm… I’m using:
LastPass (I deactivated it now.) – I’ve changed the password on LastPass aways soon as create a new one, so expirated passwords here is not the issue. But, to be 100% sure, I deactivate the LastPass.And BPS Security.
I’ve move this site from anoter domain: its possible that it cause some problem? I’ve use blogvault to move the site…
Any idea? Thanks for the tip Justin!
Forum: Plugins
In reply to: [Plugin: Meteor Slides] Hover issue with custom slideshowUp
Forum: Plugins
In reply to: [meteor slides] Issue using slideshow on sidebar other imagesOk, I figure this out ??
Just place this code on css file:
.meteor-slides-widget{ display: block; width: 180px; height: 180px; overflow: hidden; }
Replace the sizes with the required image size relative to your sidebar.
??
Forum: Plugins
In reply to: Displaying Multiple Custom Post Types Based Off Custom TaxonomyForum: Plugins
In reply to: Amazon S3 WarningsI have the same problem.
Forum: Networking WordPress
In reply to: robots.txt set to disallow, can't changeQuestion: you’ve added your blog’s sitemap in Google Webmaster Tools? The error I had was related to that: the robots.txt prevented the reading of the sitemap file.
Forum: Networking WordPress
In reply to: robots.txt set to disallow, can't changeIf not public, then Disallow: / (disallow everything, allow nothing)
If public, then Disallow: (disallow nothing, allow everything)Is syntactically correct, but for some reason Google does not find the file sitemap.xml for example. Changing the parameter to “Allow” google was able to find the file sitemap.xml consequently the entire contents of the blog.
Forum: Networking WordPress
In reply to: robots.txt set to disallow, can't changeI found the problem: The function that creates the virtual robots.txt file is wrong.
In wp-includes/funcions.php file from the 1779 line starts do_robots function:
do_robots function () { header ('Content-Type: text / plain; charset = utf-8'); do_action ('do_robotstxt'); $ output =''; $ public = get_option ('blog_public'); if ('0 '== $ public) { $ output .= "User-agent: * \ n "; $ output .= "Disallow: / \ n "; Else {} $ output .= "User-agent: * \ n "; $ output .= "Disallow: \ n "; } apply_filters echo ('robots_txt', $ output, $ public); }
Change the line 1788 to:
$ output .= "Allow: / \ n ";
Now the virtual robots.txt file will work correctly.
I’m trying to figure out how to send this bug report to the folks at www.ads-software.com, but am having no success: /
SeeJayEmm, take a look on this post. https://digwp.com/2010/02/custom-css-per-post/
Forum: Fixing WordPress
In reply to: How to convert Categories to Tags using SQL?This documentation is old! The problem is I have over 300 categories to convert to tags. If I do this manually’ll finish it just for Easter! ??
Forum: Fixing WordPress
In reply to: How to convert Categories to Tags using SQL?I have also done this too does not work … : /
Forum: Fixing WordPress
In reply to: Categories to tags tools goes to import.phpI’m having the same problem… I’m using 3.0.1 version.
Forum: Alpha/Beta/RC
In reply to: Importing WordPress XML fails with a 500 errorI have the same problem :/ Any one has some idea to solve this issue?
Forum: Fixing WordPress
In reply to: Ajax features does not work in WP 2.8.6I found the problem: it was the functions.php file of the theme that was developing.
There were 2 blocks of php code. To solve the problem, the blocks were joined into one. Then all returned to work normally.Thanks!