Attack on my server today

Here are the logs

79.188.50.35 - - [15/Apr/2010:18:09:18 +0000] "GET /phpMyAdmin/config/config.inc.php HTTP/1.0" 404 309 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:17 +0000] "GET /phpMyAdmin/config.inc.php HTTP/1.0" 404 302 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:17 +0000] "GET /pMA/scripts/setup.php HTTP/1.0" 404 298 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:16 +0000] "GET /pMA/config/config.inc.php HTTP/1.0" 404 302 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:15 +0000] "GET /pMA/config.inc.php HTTP/1.0" 404 295 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:15 +0000] "GET /p/m/a/scripts/setup.php HTTP/1.0" 404 300 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:14 +0000] "GET /p/m/a/config/config.inc.php HTTP/1.0" 404 304 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:14 +0000] "GET /p/m/a/config.inc.php HTTP/1.0" 404 297 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:13 +0000] "GET /myadmin/scripts/setup.php HTTP/1.0" 404 302 "-" "-"
79.188.50.35 - - [15/Apr/2010:18:09:13 +0000] "GET /myadmin/config/config.inc.php HTTP/1.0" 404 306 "-" "-"
Posted in General | Leave a comment

Online radio with nicecast and flash player solution

Two friend of mine request for me to help them with their online radio show. Well I love to be part of small project. But I dearly need a good solution for their web site player.

Posted in General, Online Radio | Tagged , , , , | 1 Comment

How to load Ajax libraries via google.load() method


How to load Ajax Libaries via google.load() method.

To do so please fallow these steps:

1. In your app/website header please copy and paste:
<script src="http://www.google.com/jsapi" type="text/javascript"></script>

2. Copy and paste the fallow below step 1:

<script>
    // Load Mootools
    google.load('mootools', '1.2.4');
    // Load jQuery
    google.load("jquery", "1.4.2");
</script>

That is it, you should now be able to utilize your favorite Ajax libraries.

Posted in Ajax, Google, Programming | Tagged , , , , , , , , , , | 2 Comments

Running Ready2Run Jetty+OpenBD on a Mac

When trying to run OpenBD on my mac, I was getting this error “java.lang.UnsupportedClassVersionError: Bad version number in .class file”:

To fix this, fallow these steps:

From the Apple () menu, choose Software Update.

Software Update checks for available updates. In the Software Update window, select the items you want to install, then click Install. Usually, you should install all available updates.

Enter an administrator account name and password.

After installation is complete, restart the computer if required.

The error should be fix, if you are still having issue, please leave a comment with the error.

This is source from Apple.com

Posted in General, Mac, Open BlueDragon | Tagged , , , , | 3 Comments

Open BlueDragon Install Script by Vivio Technologies


I must say “Vivio Tech did a good job on making this install script”, I was reading on OBD (Open BlueDragon) for days, and finally decided to implement it as my main ColdFusion server for both production and development.

I must thank ODB team on doing a wonderful job on maintaining this project, and providing free and wonderful support via Google group. I will be using this software as my primary environment until I reckon I need to change.

Posted in ColdFusion, Open BlueDragon | 1 Comment

Hello world!

Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

<cfscript>
<pre>emp = createObject( "component", "Employee" );
emp.setFirstName( "John" );
emp.setLastName( "Smith" );
emp.setAge( 24 );
</cfscript>
Posted in General | 1 Comment