mydiskdriveonline
Forum Replies Created
-
Forum: Plugins
In reply to: [Postie] Remove fetch info showing in php-errors.log ?Thank you very much.
Cheerz
Forum: Networking WordPress
In reply to: Database error after editing the .htaccess file for multisite.Greetings,
The default htaccess for NON multisite installs can be found at https://codex.www.ads-software.com/htaccess
See if replacing that brings your site back up and then follow https://codex.www.ads-software.com/Create_A_Network to convert it to multisite.
Cheerz
Forum: Networking WordPress
In reply to: how to disable email activation on multisiteForum: Networking WordPress
In reply to: wp-admin does not workGreetings,
This support forum is for self hosted WordPress multisite installs NOT WordPress.com
Please visit https://en.forums.wordpress.com/forum/support for help with your issue.
https://en.support.wordpress.com/map-existing-domain/ may also explain things for you.
Cheerz
Forum: Plugins
In reply to: [Geo Mashup] map marker sort orderThanks for the response.
I ended up making a page template with:
$custom_query = new WP_Query( array( 'post_type' => 'post', 'orderby' => 'geo_date', 'order' => 'ASC', 'map_content' => 'global', 'map_type' => 'G_NORMAL_MAP', 'posts_per_page' => -1 ) ); echo GeoMashup::map( array( 'map_content' => $custom_query, ) );
I played around with all of the variables and couldn’t get it to work.
So if I remove the visible posts tag in the page content will the map then order by geo_date?
Forum: Plugins
In reply to: [Admin Post Navigation] Add Support For Media As Well?I just realized that if you are in the new media “grid” view in the media manager and click on an image, a new edit screen pops up with navigation arrows.
perfect!
Forum: Plugins
In reply to: [Geo Mashup] Disable multi-colour marker for multi-category postsThis may help: https://sites.google.com/site/geomashupwiki/guides/disable-multiple-category-marker
I tried:
if (( object.categories.length > 0 ) && ( 6 == object.categories )) { object.icon.image = '/images/mm_20_silver.png'; object.icon.iconSize = [ 50, 50 ]; object.icon.iconAnchor = [ 8, 31 ]; object.icon.iconInfoWindowAnchor = [ 8, 1 ]; }
but it doesn’t work ??
Forum: Plugins
In reply to: [Geo Mashup] customize image – info windowGreetings,
have you tried:
.locationinfo img{width:69px !important; height:69px!important;}
Forum: Plugins
In reply to: [Admin Post Navigation] Add Support For Media As Well?I second that idea. It would be great in my case to be able to blast through media adding titles.
Cheerz
Forum: Plugins
In reply to: [Force ReAuthentication] Logout all option not visibleGreetings, I came across this thread while debating about using this plugin.
I assume you change the dropdown to log out all users and check the select all box or individual boxes in front of each user you want to log out.
I have chosen a different route and use https://api.www.ads-software.com/secret-key/1.1/salt/ and replace the current salt with it in wp-config.
Cheerz
Forum: Plugins
In reply to: [WP-PhotoNav] duplicate container css/me is embarrassed.
..so it seams the image that I was working with was only 127px high(must have downloaded a thumbnail) and I had the shortcode set to 300px as I normally do.
I changed the shortcode height to match the real image height and all is well.
:/
I still would recommend changing the css to not use “container” and “content” for the descriptors.
Thanks again for the excellent plugin.
Cheerz
Forum: Plugins
In reply to: [WP-PhotoNav] 1.2.1 errorsHello again, sorry for the delayed response.
You are correct that there are no uploader.js or uploader.css files, that is what causes the 404.
They are referenced by lines 31-37 of your code for your plugin that is in the WordPress repository.
// Register custom media uploader for post editor function register_admin_resources( $hook ) { if( 'post.php' !== $hook ) return; wp_enqueue_script( 'wp-photonav-uploader', plugins_url( 'uploader.js', __FILE__ ) ); wp_enqueue_style( 'wp-photonav-uploader', plugins_url( 'uploader.css', __FILE__ ) ); }
Cheerz
Forum: Plugins
In reply to: [WP Admin Bar Removal] function to include wp-admin-bar-removal.css changedI’m really not that smart :/
Your intentions are great and theoretically should work fine with the “sub” htaccess over-riding higher configs.
For php pages I know a simple “if is_defined(whatever)” stops the page from being called directly.
What about instead of using “Allow/Deny” use “Rewrites” like I use for “hotlinking”?
Forum: Plugins
In reply to: [WP Admin Bar Removal] function to include wp-admin-bar-removal.css changedyour htaccess conflicted with my apache conf and broke your plugin.
your css and js files became 403.
I use:
RewriteRule .*\.(jpg|jpeg|gif|png|bmp|flv|mp3|wav|swf|psd|txt|doc|exe|zip|kml|mp4|JPG|avi|mpg|mpeg|fla|rar|sql|gz|7z|tar|css|js|wmv|rm|bcp|cbk|bcf|xml)$ – [R=404,NC,L]
in my httpd.conf <directory> settings.
i believe its better to 404 and tell bad guys there is nothing there to hack instead of 403 and let them keep hacking on it.
whats a Ticket #5766717?
Cheerz ??
Forum: Plugins
In reply to: [WP Admin Bar Removal] function to include wp-admin-bar-removal.css changedI see that there is a “strict” .htaccess file.
I removed it and all of the readme stuffz( i already block those too)
Now my error.log stops wizzin by
Cheerz