Sorin

This user hasn't shared any biographical information

Homepage: http://point47.com/journal/

Jabber/GTalk: forapathy


Posts by Sorin

Virtual URL – link shorten service

20/02/2010 - 11:22

Posted in Bulk | No comments

VUS.me is a new and very simple link shorten service made with simplicity and quick access in mind.
Looks very promising so give it a try.. or more .
http://vus.me

How To Setup Wordpress MU with Domain Mapping

17/12/2009 - 08:41

Posted in Wordpress | 3 comments

Here is explained how I made my Wordpress MU install to work with domain mapping. There are some tutorials out there but they are plain crap and very poorly explained. And the explanations for the domain mapping plugins are even worse. But I managed to make it work in around two days with a lot [...]

CKEditor 3.0 Send and Receive data with AJAX

01/09/2009 - 03:50

Posted in AJAX, JavaScript, PHP | 13 comments

Attention: This is a quick tutorial and no in depth information will be provided. Use Google or whatever you want to learn more about PHP, Javascript and AJAX calls. Also on the CKEditor site you can find more info about the editor itself.
The old FCKEditor is now called CKEditor 3.0 and it’s:
CKEditor is a [...]

How to block spamm comments in Wordpress

22/04/2009 - 04:06

Posted in Wordpress | No comments

1. Activate Akismet
2. Add this in the .htaccess file.
123456RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .wp-comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*yourblog.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]
Replace yourblog.com with your blog address.
It block all comments from direct access to wp-comments-post.php.
3. Add this to the .htaccess file also.
Block all spammer IP’s one by one:
1234567<Limit GET POST>
order allow,deny
deny from 78.133.218.68
deny from 219.159.67.187
deny [...]

Anti link/email spam script

13/03/2009 - 04:24

Posted in JavaScript | No comments

123456<script type=’text/javascript’>
   function nerf_email(){
      return ‘offi’.replace(/i/, ‘ice’) + ‘@’ + ‘point’.replace(/t/, ‘t47.com’);
   }
   document.write(nerf_email());
</script>
The above script will show: office @ point47.com