image image image image
Web Development, Joomla, Drupal, Wordpress Training, Seminars and Workshops
Effective, practical hands-on website training for company, non-profit organizations, academic institutions and schools, and individual one-on-one training - for professionals and students alike.
Joomla, Drupal, Wordpress, SEO, Training & Seminars Website/CMS development customized to your needs.
Search Engine Optimization
Improve your website's search ranking and visibility.
Web Development and Maintenance
Fast deployment of your CMS website, Search Engine Optimized with support and maintenance.

Anti-SOPA/PIPA Campaign

Stop Censorship, Web Developer - Joomla, Drupal, Wordpress

Drupal Camp Manila 2012

Drupal web developer, Metro Manila, Philippines, I'm going, are you? Drupal Camp Manila: February 25, 2012

Portfolio (of Latest Projects)

Share/Save/Bookmark

HousePinoy, Phil House Real Estate

 

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/

Share/Save/Bookmark

Diocese of Antipolo, Official Website

 

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

Share/Save/Bookmark

National-Nutrition-Council-NNC-Philippines

 

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.

Share/Save/Bookmark

NFGB-National Federation of Gamefowl Breeders, Inc. (Bakbakan)

 

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.

Share/Save/Bookmark

PHYMAX International Corporation is a fertilizer distributor in the Philippines

 

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

Share/Save/Bookmark
Continuous Ink Flow Supply Systems CISS

 

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.

Visit the website

Share/Save/Bookmark

Association-of-Philippine-Medical-Colleges-Foundation-Inc-APMCFI-240x200


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.

Visit APMCFI website

Share/Save/Bookmark

INCLEN-240x135

 

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.

Hotel Website Benefits, Features and Advantages

Articles - Web Resources

Share/Save/Bookmark

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!

 

[SOLVED] Error: the XML response that was returned from the server is invalid, installing Joomla

Articles - Joomla Web Development Articles

Share/Save/Bookmark

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:

  1. Install without the sample data
  2. Install sample data (...\yourjoomla\installation\sql\mysql\sample_data.sql) manually for example in phpmyadmin - navigate to your target database
  3. 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.

  1. Find your php.ini (root directory)
  2. Search for this line in php.ini that says
    error_reporting = E_ALL
  3. Uncomment then replace with this line
    error_reporting = E_ALL & ~E_NOTICE
  4. 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.

 

How to increase and override the maximum search word character limit in Joomla 1.5

Articles - Joomla Web Development Articles

Share/Save/Bookmark

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.

 

Save failed with the following error: Category must have title, Phoca Gallery Error in Joomla 1.7

Articles - Joomla Web Development Articles

Share/Save/Bookmark

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...

  1. http://www.phoca.cz/forum/viewtopic.php?t=10083
  2. http://www.phoca.cz/forum/viewtopic.php?t=12731

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.

 

Fatal error: Maximum execution time of 30 seconds exceeded in C:\xampp\phpMyAdmin\libraries\dbi\mysql.dbi.lib.php on line 175

Articles - Joomla Web Development Articles

Share/Save/Bookmark

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

  1. 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
  2. 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;

  3. Try also adjusting maximum execution time in C:\xampp\apache\bin\php.ini 

    ini_set('max_execution_time', 0)

  4. 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.

 

 

PHP extension "curl" must be loaded error while installing Magento

Articles - Magento Web Development

Share/Save/Bookmark

 

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)

  1. Go to wamp or xammp folder
  2. Find php.ini in php folder and edit it using any text editor (like Notepad or WordPad)
  3. Search for the line extension=php_curl.dll
  4. Then uncomment this line or remove ;(semicolon) before extension=php_curl.dll and save it
  5. Restart wamp or xammp
  6. Go back to installation or refresh page where error encountered

 

 

Strict Standards errors appear when installing Joomla 1.7 on local machine

Articles - Joomla Web Development Articles

Share/Save/Bookmark

 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

 

 

   

How to increase the number of title character limit of Joomla articles (content title limitation)

Articles - Joomla Web Development Articles

Share/Save/Bookmark

To increase the title characters limitation for Joomla article titles, you may try any or any combination of the following:

  1. 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
  2. Try also changing varchar to mediomtext

  3. 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.

   

Opensource CMS seminars to AISAT-Asian Institute of Science And Technology (all branches)

Articles - Web Resources

Share/Save/Bookmark

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.

 

 

   

Bitshield enters the world of multi-media (REPOST)

Articles - Web Resources

Share/Save/Bookmark

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

   

Finally, a JCE plugin to insert K2 links in Joomla! when using JCE Editor (for version 2.x)

Articles - Joomla Web Development Articles

Share/Save/Bookmark

An avid fan and user of JCE Editor and K2? Here's a very useful plugin to insert a K2 content link when using JCE editor. Called K2 Links for Advanced Link from lead developer of Akeeba, Nicholas K. Dionysopoulos.

Download the K2 Links for Advanced Link plugin from here

Requirements:

This version is compatible with JCE 2.0 RC2 or later and K2 2.4 or later. Its features:

  • Link to K2 Categories
  • View and link to K2 items of a specific category
  • Link to K2 Tags 
  • View and link to K2 items belonging to a specific K2 tag

If using JCE Editor version 1.5, you may safely upgrade by uninstalling the JCE 1.5, then installing the latest JCE Editor 2.x

Installation steps: (This plugin will not work with JCE 1.5.x)

  1. Click on Components, JCE Administration, Install Extensions
  2. "Browse" button to pick the plugin's ZIP file, then click on "Install Package"
   

DB function failed with error number 1030 Got error 28 from storage engine SQL=SELECT c.*...

Share/Save/Bookmark

Suddenly, I got the database error from one of my Joomla administration area: DB function failed with error number 1030 Got error 28 from storage engine SQL=SELECT c.*, c.checked_out as checked_out_contact_category, g.name AS groupname, u.name AS editor, COUNT( DISTINCT s2.checked_out ) AS checked_out_count FROM ... AS c LEFT JOIN ... AS u ON u.id = c.checked_out LEFT JOIN ... AS g ON g.id = c.access LEFT JOIN ... AS s2 ON s2.catid = c.id AND s2.checked_out > 0 WHERE c.section = 'com_weblinks' AND c.published != -2 GROUP BY c.id ORDER BY c.ordering , c.ordering LIMIT 0, 100...

This seemed a database storage issue, but checking on my storage webhost has sufficient space.

Following might help:

  • If indeed storage issue, delete unnecessary log, temporary files
  • Database repair (for commercial cpanel, you can do this from MySQL section, or use any UI program like MySQL Administrator software to connect and repair remote database)
  • Most likely your tmp memory is full, clear the tmp or request your webhost do it
  • Check Joomla tmp file and safely delete files there (do not delete the index.html)
  • Delete server logs and temporary files, request your webhost to do it for you if on managed/commercial hosting
   

Page 1 of 3

Joomla, Drupal and CMS seminars, training courses, Metro Manila, Philippines

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.

smart-traffic
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.

TPC Events hosts Joomla, Drupal and other CMS seminars and workshops in Ortigas, Pasig, Metro Manila, Philippines

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.

free-seo-company

Get up to £3500 of completely FREE SEO Services to help your business compete online. We will take you well on your way to ranking success! For more information, please visit the Free SEO Company and Services website.

binary-republic

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.

net-worx

Pay on results guaranteed, cheap SEO and campaigns. Networx is UK'S leading affordable SEO company. Call us on 0207 193 5342 or visit the Networx website.

Joomla Blog Articles and Notes

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

Drupal Blog Articles and Notes

Web / Internet Resources

  • 1
  • 2
  • 3

Latest Comments

Web hosting

Archived blogs (CMS Experiences, Blogger/Blogspot)

Archived blogs (Joomla Experiences, Blogger/Blogspot)