juggledad
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Atahualpa] Horizontal Footer MenuEasy Menu plugin is untested with wordpress version 4.4.1.
did you try it?
What should be done about the original category? The count assigned to it no longer links to anything.
Is this a corruption of something in the DB?
What if you had posts assigned to that category too? How do you fix the count?
Forum: Fixing WordPress
In reply to: redirect loop after update WordPress 4.4.1I ran into this and contacted my host. The minute I said I was getting redirects, they knew what was going ont and said it is caused by something in WP 4.4.1 and a MODSEC rule. For my sites they changed the rule based on the domain name. My site is now working with no changes to the wordpress permalink.
Forum: Fixing WordPress
In reply to: How to gather data from WP sql DB to local PCI steadily think, that such common function is already programmed somewhere.
Well if you find it, be sure to post what it is so others can try it, but my guess is that it would take less time to code your own script as a page template than continue looking for something that may not exist or may exist but you might never come up with the search terms to find it.
Any way, good luck, I can’t do anything else for you.
Forum: Fixing WordPress
In reply to: How to gather data from WP sql DB to local PCYes there is something like that phpMyAdmin.
Thik of the security hole you would open to your site if you had a script that anyone could submit an sql query to? What if I submitted ‘delete from wp_posts;’ BOOM your database is empty, or how about ‘update wp_user set user_pass = ‘a hash I know’ where id = ‘1’;
Boom I now have admin access to your site.I doubt that you are going to find anything like you want and I hope you don’t.
Figure out what reports you need and code a page template to give you that information.
Forum: Fixing WordPress
In reply to: How to gather data from WP sql DB to local PCSo you are looking for something that will access one or more of the WordPress tables and produce a customized report for you…
Good luck in your searching.
I’d suggest you start writing a script. If you can’t then I’d hire someone to do it for you.
check out http://jobs.wordpress.netForum: Fixing WordPress
In reply to: How to gather data from WP sql DB to local PCtry ‘wordpress plugin user list’
Forum: Fixing WordPress
In reply to: How to gather data from WP sql DB to local PCdid you try a google search for a plugin? I found several my first try….
Forum: Fixing WordPress
In reply to: How to gather data from WP sql DB to local PCAhh, I read ‘periodically’ as once in a while, not several times a day.
Why not code a page template to grab the informaton? I just coded up one in about 15 minutes which will only display the information if ou are logged in. I would suggest limiting access to users with a specific role – like ‘editor’.If you code a page template you have to put it in your theme folder and you will have to call it ‘page-nnnn.php’ where nnnn=the page ID you are using.
Forum: Fixing WordPress
In reply to: How to gather data from WP sql DB to local PCWhy not use phpMyAdmin and export the wp-users table data?
Forum: Fixing WordPress
In reply to: Problems with HTML ?<ul style="text-align: justify;">
that builds an unordered list.If you want an orderedd list, you use <ol….>,,,
Forum: Fixing WordPress
In reply to: Problems with HTML ?Where exactly on the page is the list?
what html code is used to build the list?Forum: Fixing WordPress
In reply to: Setting up posts to go to specific pagesIf you need to hiresomeone you should go to http://jobs.wordpress.net
Forum: Fixing WordPress
In reply to: is htacces limit to ip enough for wordpress securityYou can condense that to
<Files ~ "(wp-login.php|wp-signup.php)"> Order Allow,Deny Deny from all Allow from <ur ip> </Files>Forum: Fixing WordPress
In reply to: is htacces limit to ip enough for wordpress securityWhat I’m trying is just putting my list of deny ip at the top of my hatches to see how that goes. Si I have
deny from 1.163.
deny from 1.169.
.
.
.
deny from 93.114.
etc at the very begining of my htaccess file and everything else after. I’ll just have to wait and see how it goes.