Posted by mafiaid on 12 February 2008
If you are using a older version of php connecting to a recent mysql (like os X Server 10.4 has) you will probably need to use the OLD_PASSWORD function in your SQL when creating the user or setting the password.
Normally you might do something like this to set a users password:
SET PASSWORD FOR root@localhost = PASSWORD('mypassword');
Whereas if you see this message from php:
"Client does not support authentication protocol requested by server; consider upgrading MySQL client"
You will almost certainly need to use the OLD_PASSWORD function to encrypt the password, like this:
SET PASSWORD FOR root@localhost = OLD_PASSWORD('mypassword');
This is documented more in the MySQL Reference Manual.
Posted in mysql, oprekan | Tagged: mysql, OLD_PASSWORD | Leave a Comment »
Posted by mafiaid on 14 January 2008
Hal ini dialami oleh Erwin salah satu member macosx68indo dan pencerahan dari Toni radex sebagai berikut
Coba klik (aktifkan) Finder --> bisa lewat icon di Dock
Masuk menu -> Finder/Preferences -> (Tab) General: (aktifkan) Hard disks -> (Tab) Sidebar: (aktifkan) Hard disks
Posted in MacOS, oprekan | Tagged: Icon Harddisk di Desktop | Leave a Comment »
Posted by mafiaid on 11 January 2008
Hi,
This is a follow-up to several postings in the archives about getting
NDOutils to compile on FreeBSD. I suspect that other people will have
this problem, so I’m posting it here. I also suspect that this will
affect other operating systems, not just FreeBSD, but NDOUtils is
labeled “Experimental,” so we deal.
The problem is in ndoutils-x/include/config.h . The configure script
puts all the libraries under /usr/lib instead of letting mysql be
under /usr/local/lib. I edited config.h as shown, and ndoutils
compiled just fine.
#define USE_MYSQL 1
/* #undef HAVE_MYSQL */
#ifdef USE_MYSQL
#define HAVE_MYSQL 1
#include
#include
#endif
Compiles just fine. I haven’t tested it, mind you, but it compiles.
Perhaps someone with config-fu can fix this. If the Nagios developers
think it’s appropriate, I can file a bug report.
Michael W. Lucas
Posted in oprekan | Tagged: NDOutils on FreeBSD | Leave a Comment »
Posted by mafiaid on 11 January 2008
Hari ini iseng coba aktifin wordpress plugins Peter’s Random Anti-Spam ada kendala yang agak aneh, image gak mau muncul, setelah baca-baca eror nya akhirnya create tables secara manual dah
[Fri Jan 11 17:29:32 2008] [error] [client 202.80.122.94] WordPress database error Table 'dion_mafiaid.wp_ras_image' doesn't exist for query INSERT INTO wp_ras_image (id, createtime, word) VALUES (0, 1200047372, '7nm7y4y') made by comment_form, referer: http://www.mafia.or.id/games/2008/01/04/openkore-2051-released.html
[Fri Jan 11 17:29:32 2008] [error] [client 202.80.122.94] WordPress database error Table 'dion_mafiaid.wp_ras_count' doesn't exist for query DELETE FROM wp_ras_count WHERE id = 0 made by comment_form, referer: http://www.mafia.or.id/games/2008/01/04/openkore-2051-released.html
penyelesaian nya seperti ini
mysql> create table wp_ras_image ( id int(10) NOT NULL, createtime int(10) NOT NULL, word VARCHAR(20) NOT NULL, UNIQUE KEY id (id) );
mysql> create table wp_ras_count ( id int(10) NOT NULL AUTO_INCREMENT, UNIQUE KEY id (id) );
Posted in oprekan, web php | Tagged: Anti-Spam | 1 Comment »
Posted by mafiaid on 2 January 2008
Whenever I run openkore, I get this error, “Unknown packet – 02AE“. What can I do to fix this error? I want use ragnarok bot.
Description:
This is an error that was occurring to people who wants to bot in Valkyrie server in the pRO. This is due to the new implementation of encrypted packets for the game.
Answer:
Here’s what you can do.
1. Go to the Tables folder in your openkore program. (Example: C:\openkore-2.0.5.1\tables)
2. Rename recvpackets.txt to recvpackets_old.txt
3. Rename recvpackets-pro.txt to recvpackets.txt
It should work after that. Enjoy botting!
Disclaimer:
Just to remind you that botting in ragnarok can get your account suspended or banned. So bot at your own risk.
Posted in oprekan | Tagged: openkore, oprekan, ragnarok | 17 Comments »
Posted by mafiaid on 29 December 2007
Dear all,
disini saya coba memasukkan parameter 3G dari tiga operator yang sering dipergunakan
XL 3G
Profile : 3G XL
APN : www.xlgprs.net
Username: xlgprs
Password: proxl
Number : *99#
Telkomflash
Profile : telkomselflash
APN : flash
Username: kosong
Password: kosong
Number : *99#
3G Indosat
Profile : indosatm2
APN : indosatm2
User Name : user 3G
Password : password 3G
Number : *99#
Posted in oprekan | Tagged: 3G, flash, indosat, telkomflash, xl | Leave a Comment »
Posted by mafiaid on 25 November 2007
I have got my gma900 working with qe/ci support. I followed this guide http://forum.applesana.com/52/6831/gma900-…tz-extreme.html, but if you dont speak spanish i will lay it out here.
1) Get the AppleIntel915.kext from a previous 10.4.x install DVD
2) Edit the Info.plist in that kext so that any instance of a 915 bundle or plugin reads GMA900 where 915 is
3) Replace the AppleIntelGMA950.kext with your now modded AppleIntel915.kext
4) Repair permissions on the /Extensions/ folder
5) Type sudo defaults write /Library/Preferences/com.apple.windowserver QuartzGLEnabled -boolean YES in terminal
6) Type sudo defaults write /Library/Preferences/com.apple.windowserver Compositor -dict deferredUpdates 0 in terminal
7) Reboot
After doing these steps, your system profiler should read that core image is hardware accelerated, quartz extreme is supported, and quartzGL is supported.
Congrats you now have qe/ci, but if you notice many aspects of qe/ci arent there ( such as transparent menubar, coverflow in itunes, spaces lags, timemachine lags, and everything is still choppy.
This is where my problem lies, how do we fix the fact that it is all supported but we still dont have all the features?
Please leave any feedback you have, no matter how off the wall it is, it may be the thing that works.
rofl
sumber : http://forum.insanelymac.com/index.php?showtopic=72349
Posted in MacOS, oprekan | Tagged: MacOS, osx | Leave a Comment »
Posted by mafiaid on 22 November 2007
Thank to auditmypc.com for make great tools website.
Follow this links for the instruktions.
Posted in oprekan, web php | Tagged: oprekan | Leave a Comment »
Posted by mafiaid on 22 November 2007
1. Create the MySQL database:
# mysqladmin –user=root create cacti
2. Create a mysql user/password for cacti:
(change user and/or password if requered)
# echo “GRANT ALL ON cacti.* TO cactiuser@localhost IDENTIFIED BY ‘cactiuser’; FLUSH PRIVILEGES;” | mysql
3. Import the default cacti database:
# mysql cacti < /usr/local/share/cacti/cacti.sql
4. Edit /usr/local/share/cacti/include/db-settings.php.
5. Add a line to your /etc/crontab file similar to:
*/5 * * * * cacti /usr/local/bin/php /usr/local/share/cacti/poller.php > /dev/null 2>&1
6. Add alias in apache config for the cacti dir:
Alias /cacti “/usr/local/share/cacti/”
7. Be sure apache gives an access to the directory (‘Allow from’ keywords).
8. Open a cacti login page in your web browser and login with admin/admin.
Just need MySQL Command for my documentations
mysql> SET PASSWORD FOR
-> 'some_user'@'some_host' = OLD_PASSWORD('newpwd');
Posted in mysql, oprekan | Tagged: mysql, oprekan | Leave a Comment »
Posted by mafiaid on 18 November 2007
This will tell you how to upgrade from a working 10.4.10 install to 10.4.11.
Requirements:
1) ATA installation. SATA does not work yet. So I am running off an external hard disk.
2) Core 2 Duo or the hacked kernel
Steps:
1) Install EFI Bootloader. This is well documented in other threads.
2) Backup AppleACPIPlatform.kext and AppleSMBIOS.kext to a convenient location.
3) Install 10.4.11 update. You can use Software update if you want. Do not reboot.
4) Unless you have a fully compatible MB, copy 10.4.10 AppleACPIPlatform.kext back to /System/Library/Extensions/
5) Unless you have Core 2 Duo, replace mach_kernel with hacked version.
6) Repair permissions.
7) Reboot
Problems:
1) AppleSMBIOS.kext (neither stock nor the one from EFI bootloader) does not load. The old one from 10.4.10 will load if you copy it across, but then system profiler is broken.
2) AppleHDAPatcher.kext does not work, and my previously patched AppleHDA.kext does not work.
3) No SATA or ICH8R support. I tried the old IOATAFamily.kext as well as the sata-pata and ich8r patches from macdotnub’s disk without success.
Of note tulip.kext still works and so does Safari. This is posted from 10.4.11 with stock kernel.
source : http://forum.insanelymac.com/index.php?showtopic=71641
Posted in MacOS, oprekan | Tagged: osx, tiger | Leave a Comment »