| 0 comments ]

Aardvark Topsites PHP V5.2.0 php script

Aardvark Topsites PHP V5.2.0 php script
download Aardvark Topsites PHP V5.2.0 php script .zip
Aardvark Topsites PHP has a ton of features. I'm not going to bore you with all the inane details, but here is a list of the main features.
- Members ranks can be shown on their button.
- Stat Buttons, allowing you to customize your buttons and display all kinds of stats on them
- 6 different ranking methods
- Counts unique pageviews, total pageviews, unique hits in, total hits in, unique hits out, and total hits out
- Rank daily, weekly, or monthly
- Up/down/neutral arrows
- Customizable categories
- Fully customizeable skins: make your topsites look however you want!
- Simple web-based installer and upgrader
- Multiple pages
- Member login and lost password retrieval
- Seamlessly switches between languages
- Fast, integrated search
- Ad breaks
- Visitors can rate and review members
- Advanced stats and graphs
- Easy to install and maintain
- Powerful admin
- Mass mail members
- Best of all, it's completely free!
It is currently translated into Bosnian, Czech, Danish, English, Finnish, French, German, Polish, Romanian, and Russian. Other languages should follow soon, hopefully.
Upgrading is supported for version 4.1.0 or higher. Here is a list of changes:

- Option in the admin to fill empty rows with "Your Site Here"
- Backup database tool in the admin
- A more secure captcha, with a link for users to get a new captcha if the user can't read the first one
- Redesigned gateway page for the Fusion skin by OS-Mark
- Banning of sites by URL, IP address, username, email
- Optional security question on join to block spammers
- By default, new members must be approved by the admin before they are listed and changes to the title or URL of a site must be approved by the admin
- New skin file table_wrapper.html to easily display things only on ranking pages
- Overall stats page with complete overall stats
- Summary of overall stats displayed on the main page
- Password confirmation on the join page to prevent typos
BUG FIXES
- Unapproved sites will not be automatically deleted for inactivity
- Validates $_SERVER before use
- Displays the banner max width/height in the join and edit forms
- When you enable admin approval of new members, the welcome email is delayed until you approve the site
- button.php only displays a button for valid, approved members
- Users cannot create their own categories by bypassing the join/edit forms
- Under normal usage, there should be no PHP error messages, even at E_ALL
- Users pending approval will not be allowed to login to the user control panel
- Checks if allow_url_fopen is On before checking banner size and checking for the latest version
- Missing tags were added so that all pages should validate as XHTML 1.0 Transitional
- user_cp.php renamed to user_cpl.php because of mod_security on some servers
- Several small fixes that have been omitted from this list for brevity
Download Links:
Download Now

| 0 comments ]

A collection of variuos library resources useful in self learning.

All about 532M

A Dictionary of Japanese Particles.pdf
A Handbook of Japanese Grammar.pdf
A_Dictionary_of_Basic_Japanese_Grammar.rar
Barron's Japanese Grammar.pdf
Basic Japanese Course.pdf
Declan's Japanese Dictionary.zip
Dictionary of Intermediate Japanese Grammar.pdf
Dirty Japanese.pdf
English - japanese dictionary.pdf
Index_in_Japanese.pdf
Japanese Dictionary - 1000 kanjis.pdf
Japanese for dummies.rar
Japanese informal dictionary.pdf
Japanese Particle Workbook.pdf
JAPANESE PICTURE DICTIONARY.pdf
Japanese Verbs and Essentials of Grammar (2nd Ed).pdf
Japanese_Learning.pdf
Japanese_names.pdf
Learn Japanese.pdf
Learn_japanese_ebook.zip
Lonely Planet Japanese phrasebook.pdf
Nihongo - 500 Essential Japanese Expressions A Guide To Correct Usage Of Key Sentence Patterns.pdf
Nikyu The Japanese Language Proficiency Test.rar
Passport Books - 101 Japanese Idioms.pdf
Portable_LingvoSoft_Dictionary_2007_English-Japanese_Kanji-Romaji_-English.rar
Read Japanese Today.pdf
Teach Yoursel Japanese the book [first thing to have].pdf
Textbook english from NHK.pdf

Code:
http://rapidshare.com/files/135241353/jap.part1.rar
http://rapidshare.com/files/135251539/jap.part2.rar
http://rapidshare.com/files/135260098/jap.part3.rar
http://rapidshare.com/files/135267978/jap.part4.rar
http://rapidshare.com/files/135274184/jap.part5.rar
http://rapidshare.com/files/135730688/jap.part6.rar

| 0 comments ]

This summary is not available. Please click here to view the post.

| 0 comments ]

In a large organization, it can sometimes be difficult for the administrator to know whose computer is whose. This little tweak will rename My Computer to "Computername" allowing you to easily see which computer you are logged on to.

Open the Registry Editor (You have to use REGEDT32.EXE) click Start, Run, and type "regedt32" then click on OK to start the regedit utility.

Expand HKEY_CLASSES_ROOT\CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}

Rename the value named "LocalizedString" to "LocalizedString.orig". Create a new REG_EXPAND_SZ

value named "LocalizedString", and set the value to "%COMPUTERNAME%".

Exit the registry editor, right click on your desktop and click Refresh. The My Computer icon should now be renamed to "Computername".

Now one only has to glance at the desktop to see what computer they are on.

| 0 comments ]

Some people have noticed that they are experiencing a really slow shutdown after installing Windows XP Home or Professional. Although this can be caused a number of ways, the most clear cut one so far is happening on systems with an NVidia card installed with the latest set of drivers. A service called NVIDIA Driver Helper service is loading up on start up and for whatever reason doesn't shut itself down properly. The service isn't needed and can also increase the amount of memory available to your system. Here is how to disable it.

1: Go into your Control Panel
2: Select Administrative Tools and then click on Services
3: Right click on the file "NVIDIA Driver Helper Service" and then select STOP.
4: To stop this loading up every time you boot up your PC Right click it again and select properties - then where the option "Startup Type" is shown - make sure it is set at Manual like we have shown in the image below.

| 0 comments ]

Not only CON, we cannot create any of these
CON, PRN, AUX, CLOCK$, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9 and more...

The reason is that con, prn, lpt1..lpt9, etc are underlying devices from the time dos was written. so if u r allowed to create such folders, there will be an ambiguity in where to write data when the data is supposed to go to the specified devices. In other words, if i want to print something, internally what windows does is -- it will write the data to the folder prn (virtually u can call it a folder, i mean prn, con, etc are virtual folders in device level). So if we are able to create con folder, windows will get confused where to write the data, to virtual con folder or real one.

So Now, Try this...

Open the Command prompt by Start -> Run and typing cmd

Creating:
C:\> md \\.\c:\con

Deleting:
C:\> rd \\.\c:\con

Thats all...

| 0 comments ]

1. Short-Out the ..

1. Goto the page you want to download
2. Select FREE button
3. In the address bar put the following: ..alert(c=0)
4. Click OK
5. Click OK to the pop-up box
6. Enter the captcha
7. Download Your File


2. Request a new IP address from your ISP server.

Here's how to do it in windows:
1. Click Start
2. Click run
3. In the run box type cmd.exe and click OK
4. When the command prompt opens type the following. ENTER after each new line.
ipconfig /flushdns
ipconfig /release
ipconfig /renew
exit

5. Erase your cookies in whatever browser you are using.
6. Try the rapidshare download again.

Frequently you will be assigned a new IP address when this happens. Sometime you will, sometimes you will not. If you are on a fixed IP address, this method will not work. To be honest, I do not know how to do this in linux/unix/etc. If this works for you, you may want to save the above commands into a batch file, and just run it when you need