Category Archives: Ubuntu

Since im get used to IDR (indonesian rupiah) currency im forgot to set the price field to become a FLOAT type.. some users like Rocco (italy) and Razza (spain) asked me about that .. so here’s a quick

from terminal :
$mysql -u easyhotspot -p
[password] = easyhotspot

use easyhotspot;
ALTER TABLE billingplan CHANGE price price FLOAT( 11 ) NOT NULL;
ALTER TABLE postplan CHANGE price price FLOAT( 11 ) NOT NULL;

describe billingplan;

describe postplan;
exit;

pheew .. theres anoter bugs solved, thx to you all guys ..

like this :

mysql> use easyhotspot;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
mysql> ALTER TABLE billingplan CHANGE price price FLOAT( 11 ) NOT NULL;
Query OK, 2 rows affected (0.06 sec)
Records: 2 Duplicates: 0 Warnings: 0

mysql> ALTER TABLE postplan CHANGE price price FLOAT( 11 ) NOT NULL;
Query OK, 2 rows affected (0.00 sec)
Records: 2 Duplicates: 0 Warnings: 0

mysql>
mysql> describe billingplan;
+————–+————–+——+—–+———+—————-+
| Field | Type | Null | Key | Default | Extra |
+————–+————–+——+—–+———+—————-+
| id | int(11) | NO | PRI | NULL | auto_increment |
| name | varchar(255) | NO | UNI | NULL | |
| type | varchar(255) | NO | | NULL | |
| amount | int(255) | NO | | NULL | |
| price | float | NO | | NULL | |
| IdleTimeout | int(255) | NO | | NULL | |
| simultaneous | int(10) | NO | | NULL | |
| redirect_url | varchar(255) | NO | | NULL | |
| bw_upload | int(255) | NO | | NULL | |
| bw_download | int(255) | NO | | NULL | |
| created_by | varchar(255) | NO | | NULL | |
+————–+————–+——+—–+———+—————-+
11 rows in set (0.00 sec)

mysql>
mysql> describe postplan;
+——-+————–+——+—–+———+——-+
| Field | Type | Null | Key | Default | Extra |
+——-+————–+——+—–+———+——-+
| id | int(255) | NO | PRI | NULL | |
| name | varchar(255) | NO | | NULL | |
| price | float | NO | | NULL | |
+——-+————–+——+—–+———+——-+
3 rows in set (0.00 sec)

mysql>

Dear all, EasyHotspot Documentation is available.
We need your help to translate the documentation into another language, any help would be appreciated ;) .. enjoy !
thx to ascii2412@yahoo.com for her contribution..

Good news comes from Ubuntu ! Gutsy Gibbon Hardy Heron was released today :)
Soon ill download and install it, sure! This is my first LTS distro.
Before i upgraded my system, i would like thank to Feisty Fawn and Gutsy Gibbon for their great job.
HH

Stayros Tzetzailidis told me that his user cant be automaticaly disconnected when they reached their limit. And i confirmed that bugs … To avaoid it simply remove the comments (”#”) from freeradius conf. Open /etc/freeradius/radiusd.conf and find ‘#noresetcounter’ and ‘#octetslimit’ in authorize section or you can download the patch and then replace the /etc/freeradius/radiusd.conf. Sorry for this bugs.

There’s a lot of question about EasyHotspot Documentation since the first time it released. I would like to tell you guys that unfortunately theres no documentation YET except the README file. There’s a lot of things to be done right now especially my thesis. I will make a documentation as soon as possible. BUT if you want to help me to make EasyHotspot documentation ill be happy and many people out there :)

please visit : EasyHotspot Docs Page

If you have any question about it, please dont hesitate to contact me by Email, YM!, or even comments ;)

Thanks

Try EasyHotspot Beta release :

http://easyhotspot.sf.net

Sorry for the delay .. the bad news is im facing hardware and internet connection problem, but the good news is the project is done. EasyHotspot is ready for beta release … but how to upload the 574 MB iso to the intenet with 8kbps connection speed ? its been 48 hrs trying with no luck ??

If iso image is to large, i decide to make a .deb file, i’ll upload it tomorrow night …

EasyHotspot Logo

Umm hello again every body …
Its been a long time from my last post, now im back again with a bunch of stuff right on my brain. My thesis is not finished yet, BUT the apps its about ready to launch. Its a hotspot management system bassed on OpenSource Software, click here for more details. It will available for download on 17 Feb 08.

Ill hope both my mini thesis and the projects will be finished right on time.

Recently i found the way to take the wave out of the magic lamp effect. Magic lamp is one of the compiz fusion minimize effect. Actually i had my wave out, but after i turned to gutsy the wave is back and i dont have any idea to take this out. Until i found this thread on ubuntu forum.

It’s a simple way to modify the plugin. What you have to do is (required root access) :

  • install the hex editor (i preferred ghex2)
  • edit the /usr/lib/compiz/libanimation.so file using ghex2
  • find magic_lamp_max_waves”, look for following “3″, change “3″ to “0″
  • ghex2

  • save
  • open CCSM (install ccsm if you dont have this tool)
  • Use magic lamp as your minimize effect
  • Change the max wave to “0″
  • max wave

  • Have a good looking desktop
  • magic lamp hacked

thanks!