Technique, Technology, Design & Development
nuwinda
Freelance web designer, web developer, php programmer melbourne australia
Posts by nuwinda
WP-PHPBB Bridge
Oct 1st
First of all Thanks you for trying wordpress-phpBB bridge. Feel free to suggest your ideas on this blog about wp-phpbb bridge.
About the wp-phpbb
wp-phpbb is a wordpress plugin for make bridge between wordpress and phpBB forum. Once you install this plugin, you wordpress blog will act as a primary forum as a secondery. User need to login first time in order to he or she register on the phpBB.
What is not
wp-phpBB plugin treat wordpress as a primary and have nothing to do with phpBB. Alteration to phpBB code will not effect wordpress. So make sure you hide phpBB login, registration and profile chages.
Installation
Download Plugin from coderaustralia.com
Unzip wp_phpbb_bridge.zip to your wordpress plugins folder and activate from admin panel.
Click on WP-phpBB on admin menu and add information about your phpBB installation
How to download
Download
Downloaded 189 times
Please leave message or bugs so I can imporove it.
Thank you
Have fun
Basic Search Engine Optimization
Sep 15th
Do you have a web site? so how can you list your site on the search engines and get more traffic to your site. It is pointless if you have a site and no SEO(search engine optimization). You don’t need to be a SEO Guru to list your site on the top of the search engine listing. Just spent few hours a week on your site and search posibilities for marketing your site on the net.
Reason why you need your web site on the search engines is pepole need to hear what you have to say. This could be about your thoughts, your believes, your product or your services. Whatever the reason, if you have a site, search engin optimization is must.
This article will help you to list your site on popular search engines like google, yahoo and bing.
First add your site to search engines. below is link to google, yahoo and bing.
Yahoo : http://siteexplorer.search.yahoo.com/submit
Google : http://www.google.com/addurl/?continue=/addurl
bind : http://www.bing.com/webmaster/SubmitSitePage.aspx
Search more search engines and add your site to more search enines. Most of the search engines give there listing free of charge.
Adding a site to search engine is not enough, Next you need to fix your web site pages so that search engines can easly grab data from your site.
More >
File upload pogressbar
Sep 8th
To use this progressbar your server must support upload_prgressbar_getinfo functions
Free web development promotion
Aug 4th
Yep you heard it right, free web site development.
This is the new promotion carried out by coderaustralia.com to increase its clients and market coderaustralia.com on the net, by providing free web solutions to clients.
It’s been around two months since I was migrating to Australia. And I’m looking forward to meet new clients and companies that need my services.
About Promotion
With new promotion I ll give web base services such as web site development, Web site modification, upgrade, debug or online store free of change. Promotion does not include any payment to 3rd parties.
Anyone or even companies can join the promotion by registering online . Once you submit the order I will examine the project and if selected I ll provide whatever the service you need free of charge.
So don’t wait register now. . .
Value of the Promotion
Market value for online store in coderaustralia.com is $600 AUS. So having a free online store is best value you get in your lifetime.
Secure PHP programming
Jul 23rd
This entry will cover how to secure your web application when you do coding with PHP.
I assume you know the basics of PHP programming. I’m Using these security methods for many years. Because you cannot have security hole in a large applications where you have customer data, movies, audios and among others.
Let’s start with simple security where you pass value to you PHP file using get method. We all know when we use get method anyone can see our coding, so even with basic html knowledge someone can pass unwonted scripts.
Solution is first we remove html tags that pass through GET method
strip_tags( $_GET['passing_value'] );
- “Do not pass values that goes to database using GET method“
This will remove html tags from passing GET method.
Checking server reffer address is another security you can use. Use $_SERVER['HTTP_REFERER'] to process the data on your form. By working with ‘HTTP_REFERER‘, you only take data from a page withing your own domain or spesific file. This will prevent unwanted spamming.
Check sessions if necessory. If you use sessions in your system you can use your session ID to check incomming form values. Pass session_id, through your form and compare that value with your system session_id.
Make sure you never include your data on files with extentions like txt, inc, bat, dat and etc. where those files can access by a text editor. It is better to use .php extions to all of your data files in your system so no one can access the files and see the content on the files.
Next if there is a direct database entry from your form, makesure to use springf() whatever the data input is and prevent SQL injection.
Neverever trust your system user. And it’s not the hacker or spammer that break into your system need to be blaim, it ‘s you yourself need to be blaim, coz you alow them to break into your system.


