ivovic
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Internal Installation?The fact that he’s intentionally deceptive about this is a pretty serious matter in my opinion.
There’s no way he’s an IT guy, and doesn’t know MySQL is free, unless he finds it confusing to walk and breathe at the same time.
I wouldn’t put this forward as a case of him being wrong. I would ask why he’s intentionally blocking an almost ubiquitously embraced product.
IT people are allowed to build their little geek empires *far* too often. The workplace isn’t a chapter of ‘BOFH‘, and that needs to be made abundantly clear.
Forum: Fixing WordPress
In reply to: edit_post_link won’t show upI think it’s a case of actually being logged in under the right cookie path.
not logged in? no edit.
Forum: Everything else WordPress
In reply to: Great fix to stop spammersthe best anti-spam solution is to delete your blog, shut down your email address and throw your PC into the atlantic (or the pacific if you prefer, the indian ocean probably would still get it spammed)
use akismet, maybe a captcha plugin, be happy…
Forum: Fixing WordPress
In reply to: Problem with < code > taganytime 😉
Forum: Fixing WordPress
In reply to: if custom field != null$value = get_post_meta($post_id, 'keyname', true); if ($value) dostuff('here');this is perhaps nicer… but not much:
$value = get_post_meta($post_id, 'keyname', true); if (!empty($value)) dostuff('here');Forum: Fixing WordPress
In reply to: Problem with < code > tagregardless of what the tag is called, it’s not magical… to do what you want, you’ll have to replace the < > with their html-entity equivalents: < and >
Forum: Fixing WordPress
In reply to: IP Ban via .htaccess: <Limit GET POST> or not?I’ve heard nothing but good things, but the contempt for users shown by this page really puts me off. http://www.bad-behavior.ioerror.us/documentation/how-it-works/
spend 10 minutes and lay it out, or just stop calling yourself a programmer.
Forum: Your WordPress
In reply to: New Bands Siteit’s a nice looking site – partiuclarly the background image.
I think the problem Joni saw was PNG images not being adapted for IE6 (which you can’t do if they’re css backgrounds, but otherwise you can).
my biggest issue is with the “black hole” effect on the sidebar blocks. They’re solid while the main posts section shows through the textured background.
Forum: Fixing WordPress
In reply to: Embedding blog in websitehttp://codex.wordpress.org/Theme_Development
if you really just want wordpress underneath everything (I suspect you don’t, but if you do): http://www.google.com/search?q=php+include
Forum: Everything else WordPress
In reply to: reminder to follow instructions> /dev/hug
Forum: Fixing WordPress
In reply to: Embedding blog in websitethe simple answer is you don’t.
you embed your static site into wordpress instead.… for the same reason that you don’t see calculators with phones in them… but you often see phones with calculators in them.
one is far more complex than the other.
Forum: Fixing WordPress
In reply to: IP Ban via .htaccess: <Limit GET POST> or not?yep, clarification is always a good thing… keep up the good fight, as they say.
I’ve often thought about setting up an IP-banning merge/mirror facility, but the problem is you can’t trust users to exercise due diligence in clearing out the old IPs… so it’s too easy to end up with an enormous list of inactive IPs.
perhaps akismet needs an extension to proactively IP ban the most popular spammers of the month.
Forum: Fixing WordPress
In reply to: Error: TinyMCE is Undefinedodd that litespeed should be mangling it…but it does certainly add a whole layer of reasons for it to fail.
I’m glad you resolved it though, I’m sure this will help a bunch of folks.
Forum: Themes and Templates
In reply to: multi-dimensional array in themeperhaps not posting duplicate threads, and actually asking a WORDPRESS-related question.
try a php forum if you can’t wait 12 hours for an answer to your irrelevant question.
Forum: Fixing WordPress
In reply to: Error: TinyMCE is Undefinedinterestingly I’ve done none of those thigns, and it works for me in IE7 and Firefox…. which is kind of odd, as the browsers are a known qantity, and the script is client-side, so there’s a fairly limited number of things that can go wildly wrong.
(not none, just not really a huge number of them).