Portfolio (of Latest Projects)
- HousePinoy (Philhouse)
- The Diocese of Antipolo
- National Nutrition Council (NNC), Republic of the Philippines
- NFGB, Inc.
- PHYMAX
- AffordaInk Continuous Inks
- APMCFI
- INCLEN-Southeast Asia
HousePinoy is the official website of Phil-House Realty. Find real estate properties in Metro Manila, Philippines online.
Features include the following: advanced email and forms submissions, advanced real estate properties search feature, currency converter, tagging, comments, gallery per article/property item.
Please visit House Pinoy website at http://www.housepinoy.com/
The Diocese of Antipolo website has been successfully launched within a month's time largely due to the collaborative effort among members of the Diocese, parishes, and the Commission of Social Communications and Mass Media - a continuous project that will involve participation from various entities of the Diocese.
Please visit the Diocese of Antipolo website at http://www.dioceseofantipolo.com
The National Nutrition Council (NNC) as mandated by law, is Philippine's highest policy-making and coordinating body on nutrition. Deployed with the K2 infrastructure, the project showcases multi-group access rights structure, giving proper access controls to numerous, different regional sub-groups as required.
The National Federation of Gamefowl Breeders, Inc. (NFGB) website showcases video embeds, live streaming, Google Maps, webmail implementation, calendar/schedule and events management among other features explicitly required by the client.
From concept to deployment the project is being completed roughly within two (2) months.
PHYMAX International Corporation is a new player and distributor in the fertilizer industry based in the Philippines known for high quality and competitively priced products.
The website is still under final, finishing touches, content-wise.
Visit the website here: http://www.phymax-ph.com
AffordaInk Continuous Ink Flow Systems (CISS) - A project completed in one full month, from planning to deployment. A provider of continuous ink supplies, products for Canon, Epson, HP and Canon, and printer repair services with branches all over Metro Manila - Robinson's Galleria, EDSA-Ortigas - St. Francis Square, Ortigas - Virra Mall, Greenhills, San Juan - Market, Market, Fort Bonifacio, Taguig City.
The website is currently undergoing SEO.
Association of Philippine Medical Colleges, Inc. (APMCFI) is the umbrella organization of all medical schools, colleges and universities in the Philippines. Done in partnership on a humble budget, yet a very active community of users to date; a self-sustaining community website maintained by the staff themselves.

International Clinical Epidemiology Network - Southeast Asia (INCLENSEA) is global network of clinical epidemiologists, biostatisticians, health social scientists, health economists and other health professionals affiliated with key academic health-care institutions for South East Asia. It is a regional network of INCLENTrust.
Articles - Joomla Web Development Articles
Some errors occurred while populating the database: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MEMORY'
The problem could be solved with two alternative ways:
- install stable version of mysql, for example 5.1.52 (add library plugins as necessary for wampserver or xamp)
- replace the TYPE=MEMORY with ENGINE=MEMORY (make a backup copy first, then try a global and replace for example with notepad or any editor)
Articles - Drupal Web Development Articles
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 54 bytes). Drupal errors on Openpublic distro profile installer: Fatal error: Maximum execution time of xxx seconds exceeded
set as necessary in php.ini
- max execution
- max execution time
- ini_set('memory_limit', '-1'); this will override the default PHP memory limit.
Sorry guys just a note... Friday night, will sort this out later, hope this helps!
Business and Corporate Branding / Identity
Your hotel business, travel and online booking company will have credibility and business identity with its own official website, readily found on the internet by anyone all over the globe.
Information
Useful information to would be travelers and clients are available. These contents will mostly include but are not limited to the following:
- Photographs
- Maps
- Services
- Rates and Promotions
- Advertisements
- and a lot more!
Searcheability
At this very moment, someone or a group of individuals are searching for "Hotel in the Philippines" or "Hotels in Manila", and if you are not with a bandwagon yet of hotels with their own websites you may be losing a great deal of income!
Hotel Bookings online / Online Reservations
Travelers are very appreciative of online bookings as this saves time from all the fuss of looking for numbers, calling travel agents and receptions, etc. This is obviously the faster and cheaper way of booking!
Portal
- Intranet
The same website can function also a an intranet securely accessible by a login page for management and staff to access internal information (memos, downloadable files, etc) that are otherwise not available for public viewing. - Links to partner sites and resources
This feature will be most beneficial for client information and for advertisers alike.
Content Management System
With a CMS type of website, the hotel website is fully manageable by the hotel staff who can regularly update information and images in minutes, with little or with no technical help at all!
Articles - Joomla Web Development Articles
Trying to install a Joomla 1.5.15 version, at step Database, at Install sample data, error appears:
The page at localhost says: Error: the XML response that was returned from the server is invalid.
Solution/Workaround:
- Install without the sample data
- Install sample data (...\yourjoomla\installation\sql\mysql\sample_data.sql) manually for example in phpmyadmin - navigate to your target database
- Delete installation folder, then refresh frontend, now with the sample data installed
Additionally, turning off temporarily your php errors in php.ini might help to proceed with the installation.
- Find your php.ini (root directory)
- Search for this line in php.ini that says
error_reporting = E_ALL - Uncomment then replace with this line
error_reporting = E_ALL & ~E_NOTICE - Restore this setting as needed
Hope this helps, please let us know how it goes and your workaround and fixes if you have any differently.
Articles - Joomla Web Development Articles
How to increase and override the maximum search word character limit in Joomla 1.5 to search for 21 characters or more. Reposting this very useful tip for hacking a common, default search limitation in Joomla 1.5... follow completely and in detail. Before doing below steps always ensure you have a backup of the files to be edited for easy restoration and recovery to default settings. Of course, numeric values will depend as desired.
1. Edit this file '/modules/mod_search.php'
Delete this line:
$maxlength = $width > 20 ? $width : 20;
Add this line:
$maxlength = $width > 50 ? $width : 50;
2. Edit this file '/components/com_search/views/search/tmpl/default_form.php'
Delete this line:
<input id=”search_searchword” maxlength=”20″ name=”searchword” size=”30″ value=”<?php echo $this->escape($this->searchword); ?>” type=”text”>
Add this line:
<input id=”search_searchword” maxlength=”50″ name=”searchword” size=”30″ value=”<?php echo $this->escape($this->searchword); ?>” type=”text”>
3. Edit this file '/administrator/components/com_search/helpers/search.php'
Remove these lines:
// limit searchword to 20 characters
if ( JString::strlen( $searchword ) > 20 ) {
$searchword = JString::substr( $searchword, 0, 20 );
Add these lines:
// limit searchword to 50 characters
if ( JString::strlen( $searchword ) > 50 ) {
$searchword = JString::substr( $searchword, 0, 49 );
4. Edit this file '/language/en-GB/en-GB.com_search.ini'
Delete this line:
SEARCH_MESSAGE=Search term must be a minimum of 3 characters and a maximum of 20 characters.
Add this line:
SEARCH_MESSAGE=Search term must be a minimum of 3 characters and a maximum of 50 characters.
Remember to save all your files then reupload. Clear browser cache and refresh your Joomla website and your search character restriction should have increased to 50 characters.
Articles - Joomla Web Development Articles
Phoca Gallery error when creating / saving a new category - "Save failed with the following error: Category must have title" Phoca and Joomla versions used: Phoca Gallery 3.1.1 and Joomla 1.7
Followed the threads and discussions to date, but this seems to be a bug at least for the versions used. Workaround seems to be a manual database install of Phoca Gallery tables...
Will update this with developments...
UPDATE:
Weird, re-installing the same Phoca version used did not work. I tried downloading a fresh copy of Phoca Gallery 3.1.1 (the same version used) and reintsalled it on the same Joomla 1.7 website, and it worked this time.
The only other difference is while creating the Category, I left out (did not specify anything) on the following and it got saved:
- Access Rights
- Upload Rights
- Delete Rights
- Owner
- Category Folder
I then entered the above, and then saved the settings again. This seemed to work. If you have similar experiences and different workarounds, please post here to help others.
Articles - Joomla Web Development Articles
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\phpMyAdmin\libraries\dbi\mysql.dbi.lib.php on line 175
XAMPP apps versions
XAMPP version 1.7.7
+ Apache 2.2.21
+ MySQL 5.5.16 (Community Server)
+ PHP 5.3.8 (VC9 X86 32bit thread safe) + PEAR
+ XAMPP Control Panel Version 2.5 from www.nat32.com
- Find in C:\xampp\php\php.ini below line / setting and change the 30 to a higher value as needed and required:
max_execution_time = 30 - Find the line in C:\xampp\phpMyAdmin\config.inc.php, or C:\xampp\phpMyAdmin\config-inc.php, and change setting / value as required:
$cfg['ExecTimeLimit'] = 300; // maximum execution time in seconds (0 for no limit)
If config-inc.php file is missing the above line or missing altogether then the file config.default.php in C:\xampp\phpMyAdmin\libraries folder is used, edit value in below block
/**
* maximum execution time in seconds (0 for no limit)
*
* @global integer $cfg['ExecTimeLimit']
*/
$cfg['ExecTimeLimit'] = 300; - Try also adjusting maximum execution time in C:\xampp\apache\bin\php.ini
ini_set('max_execution_time', 0) - Create your own php.ini and put the first line below and save it and put the file in your root folder of your application: max_execution_time=0
Use and apply above setting changes if managing your own server. Increasing the max exec time for loading and running scripts more than the usual, required time increases the risks of running malicious codes and scripts.
Articles - Magento Web Development
While installing Magento ver. 1.6.0.0 on local machine using WampServer Version 2.1, encountered error in Configuration step:
PHP extension "curl" must be loaded.
Please set all required settings before clicking Continue
Fix: Click on the Wamp icon on the system tray, then PHP and in php.ini, find and uncomment the line:
extension=php_curl.dll
Or for any Apache, PHP, MySQL web apps (like XAMPP)
- Go to wamp or xammp folder
- Find php.ini in php folder and edit it using any text editor (like Notepad or WordPad)
- Search for the line extension=php_curl.dll
- Then uncomment this line or remove ;(semicolon) before extension=php_curl.dll and save it
- Restart wamp or xammp
- Go back to installation or refresh page where error encountered
Articles - Joomla Web Development Articles
Strict Standards errors displayed like below when installing Joomla 1.7 on local machine:
- Strict Standards: Static function JDatabase::test() should not be abstract in C:\xampp\htdocs\website\libraries\joomla\database\database.php on line 350
- Infinite loop detected in JError
- Strict Standards: Static function JDatabase::test() should not be abstract in C:\xampp\htdocs\website\libraries\joomla\database\database.php on line 350
- Strict Standards: Only variables should be assigned by reference in C:\xampp\htdocs\website\modules\modulename\libs\menucore.php on line 277
Local machine OS is Windows XP with the following services:
XAMPP version 1.7.7
Apache 2.2.21
MySQL 5.5.16 (Community Server)
PHP 5.3.8 (VC9 X86 32bit thread safe) + PEAR
Quick fix is to find your php.ini file (in XAMPP this is in C:\xampp\php), or if using other web server apps, simply do a search and find the file.
Open php.ini file using any text editors like Notepad, then find and set the following as below:
- error_reporting to E_ALL & ~E_NOTICE
- display_errors = Off
Articles - Joomla Web Development Articles
To increase the title characters limitation for Joomla article titles, you may try any or any combination of the following:
- In the database (normally access via phpmyadmin or similar db managers), change the Length/Values of field name title (by default 100) to 255:
field: title
title_alias, table: jos_content
change the field type of the title from varchar to text to remove the limit - Try also changing varchar to mediomtext
- However, if the title and title alias boxes still alows only 100 characters (after checkin both frontend and backend with both browser and Joomla system cache cleared), open the file:
\administrator\components\com_content\admin.content.html
and search and check for references to limitation of 100 (depending on your Joomla versions).
Modifying the core code is highly discouraged for reasons of scalability (when upgrading Joomla versions). Also theoretically, there might be other dependencies in other tables and line codes.
We've just conducted a series of opensource CMS seminars to AISAT-Asian Institute of Science And Technology students of Fairview (Quezon City), Dau (Pampanga), Imus (Cavite), and Baliuag (Bulacan). Thanks to Tipid PC Events.Org who organized the event in PDAF buildging, Buendia Ave., Makati City, Metro Manila, Philippines.
The favorite subjects and topics for I.T. students, as usual, seem to be the following:
- Demo installation and working setup of Joomla, Wordpress, and Drupal (in that particular order)
- Google Analytics - the winner feature seem to be the Map Overlay
- Backup and restoration of PHP-MySQL applications
- Basic ethical hacking and penetration testing
While most common questions range from the technical setup of an affordable, cheap commercial webhosting subscription to (amusingly) the current price and income range of one being a web developer/designer.
By RONALD D. OFLARIA, Bitshield Tech Writer
This one for the books. The leading information security firm now penetrates the field of multi-media as it conducts Digital Animation and 3D Rendering and Web 2.0 at Far Eastern University East Asia College, Manila last March, 2011.
Veteran graphic and 3D artist Benjamin Sipalay demonstrates the art of creating animated and 3D designs using 3D Max. Basic introduction to Adobe Photoshop and After Affects were also a part of the seminar workshop attended by more than 100 IT students.
"This seminar workshop is important for students because in the real world they will be using these softwares, if they want to pursue a career on television and movies this will be a good start," Mr. Sipalay said.
Meanwhile, web master Jerome Esperanza wows the students with a lively and interactive discussion on Web 2.0. According to website about.com, Web 2.0 is "the new and revolutionary change that is sweeping the Web and allowing users to interact with the data available there in ways we never dreamed possible 10 years ago."
Repost from Bitshield Security Consulting, Inc. website
http://www.bitshieldsecurity.com/page.php?page=articles/betwomm.html
More Articles...
- Finally, a JCE plugin to insert K2 links in Joomla! when using JCE Editor (for version 2.x)
- DB function failed with error number 1030 Got error 28 from storage engine SQL=SELECT c.*...
- How to use domain from an external registrar to point to another domain/website
- NNC web management training for users and administrators
- Joomla 1.7 Quickstart Error during local installation using WAMPServer 2.1
Page 1 of 3
ACE IT Learning Solutions offers affordable, practical Joomla and Drupal hands-on trainings and courses, as well as SEO / Analytics seminars conducted regularly at the training center in Cubao, Quezon City, Philippines. Visit ACE IT training website to learn more.

SEO company - Increase organic search engine rankings. Increase your sales. Increase your profits. The UK's leading SEO company. Please visit Smart Traffic United Kingdom and SEO Service Australia for more information.
Seminars and workshops are also being offered at TipidPC Events in Ortigas, Pasig City and at Buendia, Makati, Metro Manila, Philippines. Please visit the TPC Events.Org website for more information.
Binary Republic is your online source of computer tutorials on programming, software and computer-related topics on .Net, ASP.net, Database, Java, Linux, Microcontrollers, Open Source, Photoshop, PHP, Tech News, Web Design, Web Development, Wireless technology, among others. Visit the website blog at BinaryRepublic.com.
Joomla Blog Articles and Notes
-
check manual that corresponds to your MySQL server version for right syntax to use near TYPE=MEMORY Some errors occurred while populating the database: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'TYPE=MEMORY'...
-
[SOLVED] Error: the XML response that was returned from the server is invalid, installing Joomla Trying to install a Joomla 1.5.15 version, at step Database, at Install sample data, error appears: The page at localhost says: Error: the XML response that was returned from the server is invalid....
-
How to increase and override the maximum search word character limit in Joomla 1.5 How to increase and override the maximum search word character limit in Joomla 1.5 to search for 21 characters or more. Reposting this very useful tip for hacking a common, default search limitation in...
-
Save failed with the following error: Category must have title, Phoca Gallery Error in Joomla 1.7 Phoca Gallery error when creating / saving a new category - "Save failed with the following error: Category must have title" Phoca and Joomla versions used: Phoca Gallery 3.1.1 and Joomla...
-
Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\phpMyAdmin\libraries\dbi\mysql.dbi.lib.php on line 175 Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\phpMyAdmin\libraries\dbi\mysql.dbi.lib.php on line 175 XAMPP apps versions XAMPP version 1.7.7 + Apache 2.2.21 + MySQL 5.5.16...
- 1
- 2
- 3
- 4
- 5
- 6
- 7
Drupal Blog Articles and Notes
-
Drupal, Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 54 bytes) Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 54 bytes). Drupal errors on Openpublic distro profile installer: Fatal error: Maximum execution time of xxx seconds...
-
Fatal error: Maximum execution time of 30 seconds exceeded in Joomla, Drupal or any other PHP CMS Fatal error: Maximum execution time of 30 seconds exceeded during installation of Joomla, Drupal or any other PHP-based CMS. The default maximum execution time of each script (in seconds) are normally...
-
Drupal Seminar and Demo, Buendia, Makati, November 2010 Drupal Drupal is one of the best Content Management Systems (CMS). It is written in PHP and requires a MySQL database. Its basic installation can be easily turned into many different types of web sites...
-
Drupal Seminar and Hands-on Demo, TPCEvents.Org, Ortigas, Pasig, Metro Manila Thursday, August 6, 2009 A Drupal 6 Seminar, Ortigas, Pasig... more details at TPCEvents.Org (a TipidPC affiliate) Drupal Seminar (Web Content Management System) Date: Aug 23, 2009 - Sunday Time: 9:00am...
- 1
Web / Internet Resources
-
Hotel Website Benefits, Features and Advantages Business and Corporate Branding / Identity Your hotel business, travel and online booking company will have credibility and business identity with its own official website, readily found on the internet...
-
Opensource CMS seminars to AISAT-Asian Institute of Science And Technology (all branches) We've just conducted a series of opensource CMS seminars to AISAT-Asian Institute of Science And Technology students of Fairview (Quezon City), Dau (Pampanga), Imus (Cavite), and Baliuag (Bulacan). Thanks...
-
How to use domain from an external registrar to point to another domain/website Ever had the need to point one (preferred) domain from another registrant to an existing website (which has another domain registered by another webhost)? Or, say, you simply have to register this...
-
Web developer toolbar in Firefox not showing, displayed, missing and not visible If your installed Firefox add-on Web developer toolbar (icons, text, or both) is suddently not showing, displayed, and has gone missing from your Mozilla FF browser, you may consider the following to...
-
[SOLVED] How to remove / uninstall Babylon Search and Toolbar from Mozilla Firefox internet browser The best way to fully delete, unsinstall, remove and disable Babylon search engine, toolbar and add-on is to remove and reset all settings in Mozilla Firefox's about:config In url address of...
- 1
- 2
- 3
Latest Comments
- [SOLVED] How to remove / unins...
It's ok. I fixed the error message. I just disabled all add-ons and the error message stopped. Thanks for the help with Babylon. Awesome that it's gone! Cheers!
20.02.12 21:45
Posted by: J - [SOLVED] How to remove / unins...
That worked great except now every time I open a web page I keep getting this error message every time! Can u help me? Thanks! onPageLoad error: Component returned failure code: 0x8000ffff (NS_ERROR_U...
20.02.12 21:27
Posted by: J - Joomla, Drupal, Wordpress, SEO...
Same kami ni Jeric. Interesado ako sa training. Pwede send mo sa akin ang details sa email ko. Salamat
20.02.12 11:02
Posted by: Ryan - [SOLVED] Error: the XML respon...
it working man thank you for sharing this to solve these type of problem :-)
08.02.12 19:48
Posted by: mondalbangalore - [SOLVED] Error: the XML respon...
:-) It work man thanks a lot for sharing to solve these type of problems.
08.02.12 19:47
Posted by: mondalbangalore - Hotel Website Benefits, Featur...
Thanks for contributing your important time to post such an interesting & useful collection.It would be knowledgeable & resources are always of great need to everyone. Please keep continue sharing.
02.02.12 19:45
Posted by: Ireland hotel - [SOLVED] Error: the XML respon...
in joomla the error is occur.the XML response that was returned from the server is invalid.how to solve the problem
24.01.12 15:41
Posted by: karthiga - [SOLVED] Error: the XML respon...
i hava error in the XML response that was returned from the server is invalid.how to solve this problem
24.01.12 15:40
Posted by: karthiga - [SOLVED] How to remove / unins...
can you help me for internet explorer please :sad:
20.01.12 16:07
Posted by: ozlem - [SOLVED] How to remove / unins...
so helpful!!!thank you :lol:
15.01.12 19:43
Posted by: natalie















In Joomla 1.5, this happens after I did the ff: