All Good Things Must Come To An End

As you all know, I have been doing WordPress plugins and supporting it for the past 6 years. These 6 years of my life, I have been through my polytechnic education, my national service as well as my university education.

I just graduated from university in December 2009 and have been looking for full-time jobs. I am offered a full-time job and will be starting work on 1st February 2010.

I regret to say that I am NOT ABLE to provide support for my plugins anymore due to my full-time job commitment. I will leave this forum open and let the community help one another.

However, I WILL still update my plugins whenever I can and you still can report bugs to me via email and I will try to fix it.

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - macbros

Pages: [1]
1
I'm not sure if it's the two plug-ins DB Cache Reloaded (http://www.poradnik-webmastera.com/projekty/db_cache_reloaded/) and WP Super Cache (http://ocaoimh.ie/wp-super-cache/) THAT HAVE CAUSE MY COUNTS TO GO TO CRAP.

(Cap lock sorry)

Anyway.. I've been fighting with my host on up-time, and downtime, and several Database issues.....

I want o know from the developer of this plug-in (WP-PostViews) You developed could possible be failing because of these other plug ins.

The reason I ask is that they suggested the above mentioned plug-ins and ever since I've added them my 'POSTVIEWS' have gone to crap!

I've disabled their suggested ones but there was no change.

I just want to hear it from another point of view.

Does the Caching plug-ins cause problems with yours?

I like your stuff, I've even sent some money your way for the IP ban back in the day that you first developed it. :P

Please don't take offense to another plug-in effecting yours by denying anything, but be honest so I can get to the bottom of things here. If anything, I'll drop the Caching ones.

Thanks for such GREAT plug-in aps man, your awesome!

2
WP-Ban / Editing Bann Message with PHP
« on: 11 January 2007, 00:36 »
I want to add the banned users IP and Host name in the Banned message they receive when they are banned from the site.
Code: [Select]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>%SITE_NAME% - %SITE_URL%</title>
</head>
<body>
<p style="text-align: center; font-weight: bold;">You Are Banned.<br />
If you want to be unbanned E-mail me :     <script language = "javascript" type="text/JavaScript">
<!--
var username = "youremail";
var hostname = "yourhost.com"
var linktext = username + "@" + hostname;
document.write ("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + linktext + "</a>")
//-->
        </script>
<br />
With the following information:
Your IP: <?php echo $_SERVER["REMOTE_ADDR"]; ?><br />
Your Host Name: <?php $hostname gethostbyaddr($_SERVER['REMOTE_ADDR']); echo $hostname?><br />
and reason why you should be un-banned.

</p>
</body>
</html>

When this page gets displayed, everything but the IP and Host Name show up. Just blank area where the IP and Host name should be.

It seems that the PHP isn't being parsed. is there another way to get this to work?

Pages: [1]