<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-4999477317987751114</id><updated>2011-12-19T01:34:21.705-08:00</updated><category term='uddi'/><category term='wp-admin cannot appear'/><category term='block'/><category term='System Requirements'/><category term='gateway timeout'/><category term='HTTPS'/><category term='joomla'/><category term='tar command'/><category term='prefix'/><category term='How to check file/folder size'/><category term='option'/><category term='how to'/><category term='feed cannot display'/><category term='Upload failed'/><category term='wsdl'/><category term='migrate server'/><category term='template'/><category term='upgrade'/><category term='how'/><category term='cas'/><category term='chrome'/><category term='.bz2 command'/><category term='NextGEN Gallery'/><category term='embed video'/><category term='google analytic'/><category term='upgrade drupal 6.15 to 6.19'/><category term='hide date'/><category term='install plugins'/><category term='redirect page'/><category term='css'/><category term='submitted by'/><category term='Error saving media attachment'/><category term='Enable Clean Urls'/><category term='change text size'/><category term='copy'/><category term='Drupall'/><category term='wordpress vs joomla'/><category term='cut'/><category term='web service'/><category term='video'/><category term='test site in localhost'/><category term='mysqldump'/><category term='You do not have sufficient permission to access this page.'/><category term='hide title'/><category term='freebsd'/><category term='haproxy'/><category term='troubleshoot'/><category term='7-Zip'/><category term='rc.d'/><category term='menu'/><category term='PATCH Drupal 6.14 to Drupal 6.15'/><category term='edit menu'/><category term='howto patch'/><category term='patch'/><category term='bz2'/><category term='delete title'/><category term='xml'/><category term='rss feed'/><category term='hide block'/><category term='soap'/><category term='mysql'/><category term='sso'/><category term='php'/><category term='paste'/><category term='configure theme'/><category term='theme'/><category term='display title'/><category term='ssh'/><category term='putty'/><category term='manual install'/><category term='easy upgrade'/><category term='etc'/><category term='pdf'/><category term='install drupal'/><category term='wordpress'/><category term='tar'/><category term='upload gravatar'/><category term='Drupal https'/><category term='Tomcat'/><category term='winscp'/><category term='fpdf'/><category term='hide submitted by and date'/><category term='html'/><category term='site related'/><category term='Clean Urls'/><category term='drupal'/><category term='frontpage'/><category term='phpCAS'/><category term='change gravatar'/><category term='edit frontpage'/><category term='multilanguage'/><category term='Failed to write file to disk'/><category term='404 page not found issue'/><category term='permalinks'/><category term='MS Word'/><category term='db'/><title type='text'>Salina &amp; IT Mind</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>59</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-3815530902561658681</id><published>2011-12-19T01:24:00.000-08:00</published><updated>2011-12-19T01:34:21.734-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wordpress'/><category scheme='http://www.blogger.com/atom/ns#' term='permalinks'/><title type='text'>Wordpress - Permalink Problem</title><content type='html'>Salam,&lt;br /&gt;&lt;br /&gt;I've just set up WordPress on my personal FreeBSD server, and now I'm trying to configure permalinks to this format:&lt;br /&gt;/%category%/%postname%&lt;br /&gt;&lt;br /&gt;This is not working. I've followed those instructions as well as I can, but it's still not working.&lt;br /&gt;&lt;br /&gt;In httpd.conf:&lt;br /&gt;&lt;br /&gt;&lt;Directory /var/www&gt;&lt;br /&gt;    Options FollowSymLinks&lt;br /&gt;    AllowOverride All&lt;br /&gt;    Order allow,deny&lt;br /&gt;    Allow from all&lt;br /&gt;&lt;/Directory&gt;&lt;br /&gt;&lt;br /&gt;Then,I chmod'ed the .htaccess-file so WordPress could edit the file. The file is now containing this:&lt;br /&gt;&lt;br /&gt;# BEGIN WordPress&lt;br /&gt;&lt;IfModule mod_rewrite.c&gt;&lt;br /&gt;RewriteEngine On&lt;br /&gt;RewriteBase /&lt;br /&gt;RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;RewriteRule . /index.php [L]&lt;br /&gt;&lt;/IfModule&gt;&lt;br /&gt;&lt;br /&gt;# END WordPress&lt;br /&gt;&lt;br /&gt;After some reading and checking, I found out that my .htaccess-file is not being read! How to solve this?&lt;br /&gt;&lt;br /&gt;From forum I read, he says that "You see AllowOverride None anywhere in your config files?"&lt;br /&gt;&lt;br /&gt;So in my httpd.conf, I found it here:&lt;br /&gt;&lt;br /&gt;    # AllowOverride controls what directives may be placed in .htaccess files.&lt;br /&gt;    # It can be "All", "None", or any combination of the keywords:&lt;br /&gt;    # Options FileInfo AuthConfig Limit&lt;br /&gt;    #&lt;br /&gt;    # AllowOverride None&lt;br /&gt;    AllowOverride All&lt;br /&gt;&lt;br /&gt;I comment the original setting, and set to AllowOverride All. &lt;br /&gt;After restart apache, the permalinks now working like a charm.&lt;br /&gt;Alhamdulillah..&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-3815530902561658681?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/3815530902561658681/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2011/12/wordpress-permalink-problem.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3815530902561658681'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3815530902561658681'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2011/12/wordpress-permalink-problem.html' title='Wordpress - Permalink Problem'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-3213684874893504161</id><published>2011-11-22T20:10:00.000-08:00</published><updated>2011-11-22T20:22:05.312-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gateway timeout'/><category scheme='http://www.blogger.com/atom/ns#' term='haproxy'/><category scheme='http://www.blogger.com/atom/ns#' term='rc.d'/><category scheme='http://www.blogger.com/atom/ns#' term='etc'/><title type='text'>LOAD BALANCER (HAPROXY)</title><content type='html'>Troubleshoot : 504 Gateway Time Out&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;1) Check dr server haproxy 81&lt;/div&gt;&lt;div&gt;2)Check file configuration setting&lt;br /&gt;   #ee /usr/local/etc/haproxy.conf&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;3)Test tutup satu server 221&lt;/div&gt;&lt;div&gt;4)Restart haproxy&lt;br /&gt;    # /usr/local/etc/rc.d/haproxy  restart&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;5) Test application from browser&lt;/div&gt;&lt;div&gt;6) Check open cluster server log&lt;br /&gt;    #tail -f /var/log/apache2/access.log&lt;/div&gt;&lt;div&gt;    *make sure that all access &amp;amp; process are here.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;7) Check who access the server&lt;br /&gt;    #netstat -4&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;8) Open back the cluster server 221 and cloase another one 222&lt;/div&gt;&lt;div&gt;9) Repeat step 4-7. If the server cannot open or hang, go to management server.&lt;/div&gt;&lt;div&gt;10) Push power off and reboot from here..&lt;/div&gt;&lt;div&gt;* Some case might need both server to reboot at the same time. It depends on the issue.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-3213684874893504161?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/3213684874893504161/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2011/11/load-balancer-haproxy.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3213684874893504161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3213684874893504161'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2011/11/load-balancer-haproxy.html' title='LOAD BALANCER (HAPROXY)'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-8272359607602984440</id><published>2011-08-04T21:11:00.000-07:00</published><updated>2011-08-15T21:37:12.370-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='tar'/><category scheme='http://www.blogger.com/atom/ns#' term='tar command'/><category scheme='http://www.blogger.com/atom/ns#' term='bz2'/><category scheme='http://www.blogger.com/atom/ns#' term='.bz2 command'/><title type='text'>How to Create .bz2 files in Linux/Unix Server?</title><content type='html'>&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Create:&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;tar -cvjf test.tar.bz2 test1 test2&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;&lt;span class="Apple-style-span" style="font-family: 'Times New Roman'; background-color: rgb(167, 174, 184); font-size: medium; "&gt;&lt;pre&gt;tar cfz blah.tar.gz *.db&lt;/pre&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;Extract:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;tar xvjf test.tar.bz2&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;&lt;span class="Apple-style-span" style="font-family: monospace; background-color: rgb(167, 174, 184); font-size: medium; "&gt;tar xvfz something.tar.gz&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class="Apple-style-span" style="font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 13px; background-color: rgb(207, 217, 255); "&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-8272359607602984440?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/8272359607602984440/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2011/08/how-to-create-bz2-files-in-linuxunix.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8272359607602984440'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8272359607602984440'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2011/08/how-to-create-bz2-files-in-linuxunix.html' title='How to Create .bz2 files in Linux/Unix Server?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-7288514179559978954</id><published>2011-02-24T20:21:00.000-08:00</published><updated>2011-02-28T19:24:12.261-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Clean Urls'/><category scheme='http://www.blogger.com/atom/ns#' term='Enable Clean Urls'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><title type='text'>Drupal: How to enable Clean Urls Module</title><content type='html'>&lt;ol&gt;&lt;li&gt;Edit apache configuration&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;ee /usr/local/etc/apache22/httpd.conf&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;and set&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;AllowOverride All&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Make sure&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;LoadModule rewrite_module modules/mod_rewrite.so&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;is enable.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Edit &lt;span style="font-weight: bold;"&gt;.htaccess&lt;/span&gt; file and change&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;# RewriteBase /&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;to&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;RewriteBase /&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Restart Server&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Another way&lt;/span&gt;&lt;br /&gt;&lt;p&gt;If you have locked yourself out, visit &lt;code&gt;http://example.com/?q=user&lt;/code&gt; just like you do to re-enable offline sites. You can log in there, enough to become admin, although none of the navigation will work yet.&lt;/p&gt; &lt;p&gt;Next, enter &lt;code&gt;http://example.com/?q=admin/settings/clean-urls&lt;/code&gt; (in DRUPAL 5 and 6) to view the page where you can unset clean URLs.&lt;br /&gt;Your interface will be usable again. &lt;/p&gt; &lt;p&gt; Other options that should get the same result include:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Run the drush commands:&lt;br /&gt;&lt;div class="codeblock"&gt;&lt;code&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;drush vset clean_url 1 --yes&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt; &lt;/li&gt;&lt;li&gt;Run the mysql commands:&lt;br /&gt;&lt;div class="codeblock"&gt;&lt;code&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;UPDATE variable SET value = 's:1:"0";' WHERE name = 'clean_url';&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;DELETE FROM cache;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/code&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;Alternatively, you can modify the appropriate settings.php file to include the line&lt;br /&gt;&lt;code style="color: rgb(51, 51, 255);"&gt;$conf['clean_url'] = 0;&lt;/code&gt;&lt;br /&gt;at the bottom (or similar code in the site settings array you'll see there).&lt;br /&gt;&lt;br /&gt;.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-7288514179559978954?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/7288514179559978954/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2011/02/drupal-how-to-enable-clean-urls-module.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7288514179559978954'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7288514179559978954'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2011/02/drupal-how-to-enable-clean-urls-module.html' title='Drupal: How to enable Clean Urls Module'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-188092175450417871</id><published>2011-02-07T20:22:00.000-08:00</published><updated>2011-02-07T20:27:35.373-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='HTTPS'/><category scheme='http://www.blogger.com/atom/ns#' term='Drupal https'/><title type='text'>How to enable HTTPS support in Drupal</title><content type='html'>&lt;h4&gt;Web server configuration&lt;/h4&gt; &lt;ol&gt;&lt;li&gt;Get a &lt;a href="http://en.wikipedia.org/wiki/Transport_Layer_Security" rel="nofollow"&gt;certificate&lt;/a&gt;. many hosting providers set these up for you - either automatically or for a fee.  Simply ask your hosting provider.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Configure your web server.  A few helpful links: &lt;ul&gt;&lt;li&gt;&lt;a href="http://httpd.apache.org/docs/2.2/ssl/ssl_howto.html" rel="nofollow"&gt; Apache instructions&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;&lt;a href="https://help.ubuntu.com/community/forum/server/apache2/SSL" rel="nofollow"&gt;Ubuntu instruction&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://docs.moodle.org/en/Complete_Install_Packages_for_Mac_OS_X#How_to_set_up_SSL.2Fhttps_in_MAMP_for_a_development.2Ftest_environment" rel="nofollow"&gt;MAMP instructions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://blog.facilelogin.com/2008/07/enabling-ssl-on-wamp.html" rel="nofollow"&gt;WAMP instructions&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://wiki.nginx.org/HttpSslModule" rel="nofollow"&gt;EngineX (Nginx) instructions&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Chances are, your webhost will do this for you if you are on shared hosting.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt; &lt;h4&gt;Drupal configuration&lt;/h4&gt; &lt;ul&gt;&lt;li&gt; &lt;p&gt;If you want to support mixed-mode HTTPS and HTTP sessions open up &lt;span style="font-weight: bold;"&gt;sites/default/settings.php&lt;/span&gt; and add &lt;code style="font-weight: bold;"&gt;$conf['https'] = TRUE;&lt;/code&gt;. &lt;br /&gt;This enables you use the same session over HTTP and HTTPS both -- but  with two cookies  where the HTTPS cookie is sent over HTTPS only.  You  will need to use contributed modules like &lt;a href="http://drupal.org/project/securepages" rel="nofollow"&gt;securepages&lt;/a&gt;  to do anything useful with this mode, like submitting forms over HTTPS  and so on. While your HTTP cookie is still vulnerable to all &lt;a href="http://en.wikipedia.org/wiki/Firesheep" rel="nofollow"&gt;usual&lt;/a&gt;  attacks, a hijacked insecure session cookie can only be used to gain  authenticated access to the HTTP site. It will not be valid on the HTTPS  site. Whether this is a problem or not depends on the needs of your  site and the various module configurations. For example, if all forms  are set to go through HTTPS and your visitors can see the same  information as logged in users then this is not a problem. &lt;/p&gt; &lt;/li&gt;&lt;li&gt; &lt;p&gt;For even better security, leave &lt;code&gt;$conf['https']&lt;/code&gt; at the default value (&lt;code&gt;FALSE&lt;/code&gt;) and send all authenticated traffic through HTTPS and use HTTP for anonymous sessions. Once again contributed modules like &lt;a href="http://drupal.org/project/securelogin" rel="nofollow"&gt;Secure Login&lt;/a&gt; can help you here. Drupal 7 automatically enables the &lt;code&gt;session.cookie_secure&lt;/code&gt; PHP configuration on HTTPS sites, which causes SSL-only secure session cookies to be issued to the browser. &lt;/p&gt; &lt;/li&gt;&lt;li&gt;For best-possible security, setup your site to only use HTTPS, not  even responding to HTTP with a redirect. HTTPS is vulnerable to &lt;a href="http://www.thoughtcrime.org/software/sslstrip/" rel="nofollow"&gt;man-in-the-middle&lt;/a&gt; attacks if the connection starts out as a HTTP connection before being redirected to HTTPS. &lt;code&gt;$conf['https']&lt;/code&gt; can be left at its default value (&lt;code&gt;FALSE&lt;/code&gt;) on pure-HTTPS sites.&lt;br /&gt;&lt;br /&gt;.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-188092175450417871?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/188092175450417871/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2011/02/how-to-enable-https-support-in-drupal.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/188092175450417871'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/188092175450417871'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2011/02/how-to-enable-https-support-in-drupal.html' title='How to enable HTTPS support in Drupal'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-771158219231741214</id><published>2011-01-02T23:56:00.000-08:00</published><updated>2011-01-03T00:06:08.475-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='feed cannot display'/><category scheme='http://www.blogger.com/atom/ns#' term='chrome'/><category scheme='http://www.blogger.com/atom/ns#' term='rss feed'/><title type='text'>Fixing Google Chrome to read WP RSS feeds correctly?</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_BxG6dhw7_cc/TSGB85QvzZI/AAAAAAAABDI/HJmNl3jrq24/s1600/chrome_logo.gif"&gt;&lt;img style="cursor: pointer; width: 125px; height: 40px;" src="http://2.bp.blogspot.com/_BxG6dhw7_cc/TSGB85QvzZI/AAAAAAAABDI/HJmNl3jrq24/s200/chrome_logo.gif" alt="" id="BLOGGER_PHOTO_ID_5557866298315099538" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Using google chrome make my all site RSS Feed cannot display properly like in other browser. All of the writing in one big mess of an entry.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;To fix this issue, i need to install extension for my chrome.&lt;br /&gt;There are many rss extenions in the extension gallery &lt;a href="https://chrome.google.com/extensions/search?itemlang=&amp;amp;q=rss"&gt;https://chrome.google.com/extensions/search?itemlang=&amp;amp;q=rss&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Just install it. And It works!&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-771158219231741214?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/771158219231741214/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2011/01/fixing-google-chrome-to-read-wp-rss.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/771158219231741214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/771158219231741214'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2011/01/fixing-google-chrome-to-read-wp-rss.html' title='Fixing Google Chrome to read WP RSS feeds correctly?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_BxG6dhw7_cc/TSGB85QvzZI/AAAAAAAABDI/HJmNl3jrq24/s72-c/chrome_logo.gif' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-8859830582257802815</id><published>2011-01-02T17:55:00.000-08:00</published><updated>2011-01-02T18:57:57.949-08:00</updated><title type='text'>Follow Me Social Media Wordpress Plugin</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_BxG6dhw7_cc/TSEtLqPYAcI/AAAAAAAABDA/ijv004P52Fw/s1600/follow-me-plugin.PNG"&gt;&lt;img style="cursor: pointer; width: 200px; height: 39px;" src="http://2.bp.blogspot.com/_BxG6dhw7_cc/TSEtLqPYAcI/AAAAAAAABDA/ijv004P52Fw/s200/follow-me-plugin.PNG" alt="" id="BLOGGER_PHOTO_ID_5557773093492490690" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;The Follow Me widget allows you to display links to all your social media profiles in one, easy-to-access button or window.&lt;br /&gt;&lt;br /&gt;&lt;a style="font-weight: bold; color: rgb(255, 0, 0);" href="http://ignitesma.s3.amazonaws.com/ignitewebsite/follow-me.3.0.1.zip"&gt;&lt;u&gt;Download the Follow Me plugin here. &lt;/u&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;u style="font-weight: bold;"&gt;How to Install:&lt;/u&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Upload the “Follow Me” folder with all contained files to your wp-content/plugins directory.&lt;/li&gt;&lt;li&gt;Go to the Plug-ins page in the Wordpress Dashboard and click “Activate” on the Follow-Me plugin.&lt;/li&gt;&lt;li&gt;Go to “Settings &gt; Follow Me Options ” in the Dashboard and add links to your social media profiles (make sure to use ‘http://’ before ‘www’ or the link will not work)&lt;/li&gt;&lt;li&gt;Select the appropriate size and design for the button: default(small), medium, large, or box.&lt;/li&gt;&lt;li&gt;Finally, go to “Design &gt; Widgets” in the Dashboard and add the Follow me widget to the sidebar.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;** &lt;/span&gt;&lt;span class="Apple-style-span" style="border-collapse: separate; color: rgb(204, 0, 0); font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;font-family:'Times New Roman';font-size:medium;"  &gt;&lt;span class="Apple-style-span" style="line-height: 20px;font-family:'Lucida Grande','Trebuchet MS',Verdana,Arial,sans-serif;font-size:12px;"  &gt;If you do not have a widget supported theme then simply drop in&lt;br /&gt;&lt;code&gt;[open php tag] FollowMeSocialMedia() [close php tag] &lt;/code&gt; anywhere you want the widget to show up.&lt;br /&gt;.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-8859830582257802815?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/8859830582257802815/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2011/01/follow-me-social-media-wordpress-plugin.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8859830582257802815'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8859830582257802815'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2011/01/follow-me-social-media-wordpress-plugin.html' title='Follow Me Social Media Wordpress Plugin'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_BxG6dhw7_cc/TSEtLqPYAcI/AAAAAAAABDA/ijv004P52Fw/s72-c/follow-me-plugin.PNG' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-2136591696165459392</id><published>2010-12-16T19:41:00.000-08:00</published><updated>2010-12-16T19:50:05.741-08:00</updated><title type='text'>Wordpress: News Icon cannot appear in thumbnail size</title><content type='html'>After coming back from my long leave, I found all my icon news thumbnails not working as usual, only default icon for news appear for each of them...&lt;br /&gt;&lt;br /&gt;Today I found the reason why this happen... its happen because the icon picture size that upload in media library smaller than image size in setting image. It suppose 170 x 56 px.... and the thumbnail function will reduce the image to thumnail size 162 x 56px...&lt;br /&gt;&lt;br /&gt;Now all news icon appear again!... hehehe.  :)&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-2136591696165459392?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/2136591696165459392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/12/wordpress-news-icon-cannot-appear-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2136591696165459392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2136591696165459392'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/12/wordpress-news-icon-cannot-appear-in.html' title='Wordpress: News Icon cannot appear in thumbnail size'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-5823321459120963944</id><published>2010-12-16T01:06:00.000-08:00</published><updated>2010-12-16T01:10:52.228-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='cas'/><category scheme='http://www.blogger.com/atom/ns#' term='sso'/><category scheme='http://www.blogger.com/atom/ns#' term='Tomcat'/><title type='text'>SSO - Tomcat Server</title><content type='html'>&lt;span style="color: rgb(255, 0, 0);"&gt;Important!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;** After do any changes in SSO code file(deployerConfigContext.xml)&lt;br /&gt;we should &lt;span style="font-weight: bold;"&gt;restart  Tomcat&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;service &lt;/span&gt;in CAS Server...&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-5823321459120963944?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/5823321459120963944/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/12/sso-tomcat-server.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5823321459120963944'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5823321459120963944'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/12/sso-tomcat-server.html' title='SSO - Tomcat Server'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-526790740172312032</id><published>2010-12-07T23:31:00.000-08:00</published><updated>2010-12-07T23:34:24.061-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='freebsd'/><category scheme='http://www.blogger.com/atom/ns#' term='ssh'/><category scheme='http://www.blogger.com/atom/ns#' term='How to check file/folder size'/><title type='text'>FreeBSD: How to check file/folder size in console</title><content type='html'>Use this command&lt;br /&gt;&lt;br /&gt;## du -h (namefile/folder)&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-526790740172312032?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/526790740172312032/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/12/freebsd-how-to-check-filefolder-size-in.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/526790740172312032'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/526790740172312032'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/12/freebsd-how-to-check-filefolder-size-in.html' title='FreeBSD: How to check file/folder size in console'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-7883850501334138346</id><published>2010-12-07T22:53:00.000-08:00</published><updated>2010-12-07T23:38:20.613-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wordpress'/><category scheme='http://www.blogger.com/atom/ns#' term='NextGEN Gallery'/><category scheme='http://www.blogger.com/atom/ns#' term='Upload failed'/><category scheme='http://www.blogger.com/atom/ns#' term='Failed to write file to disk'/><title type='text'>Wordpress- Nextgen Gallery Problem</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Issue:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;In Nextgen Gallery Plugins..&lt;br /&gt;&lt;br /&gt;This error comes up when we want to upload pictures in gallery..&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Upload failed! Failed to write file to disk&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Upload Media also got Errors&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Error saving media attachment.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;I do:&lt;/span&gt;&lt;br /&gt;Set all permission to all related folders to 777, still get the same errors.&lt;br /&gt;Then I search the same problem in internet, and found this:&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Have you exceeded your disk space quota?&lt;/span&gt;&lt;br /&gt;&lt;a href="http://bytes.com/topic/php/answers/820628-wordpress-image-upload-failed-write-disk-urgent"&gt;http://bytes.com/topic/php/answers/820628-wordpress-image-upload-failed-write-disk-urgent&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Then I inform server guy to check on the server space for this issue..&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt;&lt;br /&gt;Check &lt;span style="font-weight: bold;"&gt;/var/log/snmpd.log&lt;/span&gt; for www server.&lt;br /&gt;Clear all log in the log file. Thats all.&lt;br /&gt;&lt;br /&gt;Try back to upload the picture in gallery. See.. it works!&lt;br /&gt;Thanks to all colleagues for helping me overcome this issue.&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-7883850501334138346?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/7883850501334138346/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/12/wordpress-nextgen-gallery-problem.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7883850501334138346'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7883850501334138346'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/12/wordpress-nextgen-gallery-problem.html' title='Wordpress- Nextgen Gallery Problem'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-7062801610861772373</id><published>2010-11-14T19:43:00.000-08:00</published><updated>2010-11-14T19:55:23.084-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='7-Zip'/><title type='text'>How to Extract 7-Zip Files?</title><content type='html'>&lt;ol&gt;&lt;li&gt;Download and &lt;span class="IL_AD" id="IL_AD1"&gt;install&lt;/span&gt; &lt;a href="http://www.7-zip.org/" target="_blank"&gt;7Zip&lt;/a&gt; of course&lt;/li&gt;&lt;li&gt;First of all download all 7zip compress files into the same &lt;span class="IL_AD" id="IL_AD2"&gt;folder.&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_BxG6dhw7_cc/TOCt5SqK13I/AAAAAAAAA88/H1dzbljIjTo/s1600/7Zip1g.JPG"&gt;&lt;img style="cursor: pointer; width: 188px; height: 200px;" src="http://2.bp.blogspot.com/_BxG6dhw7_cc/TOCt5SqK13I/AAAAAAAAA88/H1dzbljIjTo/s200/7Zip1g.JPG" alt="" id="BLOGGER_PHOTO_ID_5539618741438568306" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Make sure all file names match. in this case WA.7z.001 , WA.7z.002 , WA.7z.003 ...&lt;/li&gt;&lt;li&gt;Right click the first file (WA.7z.001) and if you have the latest version you will see the 7 Zip menu&lt;b&gt;(Pic 2)&lt;/b&gt;, enter that menu&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_BxG6dhw7_cc/TOCt5QYCAAI/AAAAAAAAA9E/B-6Y-NKkQs8/s1600/7zip6g.JPG"&gt;&lt;br /&gt;&lt;img style="cursor: pointer; width: 128px; height: 200px;" src="http://2.bp.blogspot.com/_BxG6dhw7_cc/TOCt5QYCAAI/AAAAAAAAA9E/B-6Y-NKkQs8/s200/7zip6g.JPG" alt="" id="BLOGGER_PHOTO_ID_5539618740825620482" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Click "Extract files" option. A new window will pop up and you will choose where to extract the file.&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_BxG6dhw7_cc/TOCt5oDxjUI/AAAAAAAAA9M/JShdV3urRMU/s1600/7zip2g.JPG"&gt;&lt;img style="cursor: pointer; width: 200px; height: 172px;" src="http://2.bp.blogspot.com/_BxG6dhw7_cc/TOCt5oDxjUI/AAAAAAAAA9M/JShdV3urRMU/s200/7zip2g.JPG" alt="" id="BLOGGER_PHOTO_ID_5539618747183107394" border="0" /&gt;&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_BxG6dhw7_cc/TOCt50t_QUI/AAAAAAAAA9U/8C1Kl2va89w/s1600/7zip3g.JPG"&gt;&lt;img style="cursor: pointer; width: 200px; height: 80px;" src="http://1.bp.blogspot.com/_BxG6dhw7_cc/TOCt50t_QUI/AAAAAAAAA9U/8C1Kl2va89w/s200/7zip3g.JPG" alt="" id="BLOGGER_PHOTO_ID_5539618750581391682" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Then another window will pop up and ask you for the password(If require password). &lt;/li&gt;&lt;li&gt;enter the password as its shown on the pic, which is &lt;b&gt;&lt;a href="http://snesorama.us/" target="_blank"&gt;http://snesorama.us&lt;/a&gt;&lt;/b&gt; in most cases.. Then sit back and wait for the extracting process to finish..&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_BxG6dhw7_cc/TOCt5-LK8WI/AAAAAAAAA9c/H-7LiqNH3Qs/s1600/7zip4g.JPG"&gt;&lt;img style="cursor: pointer; width: 267px; height: 101px;" src="http://4.bp.blogspot.com/_BxG6dhw7_cc/TOCt5-LK8WI/AAAAAAAAA9c/H-7LiqNH3Qs/s200/7zip4g.JPG" alt="" id="BLOGGER_PHOTO_ID_5539618753119711586" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;When all ends, you are ready with your unpack file. Good Luck.&lt;br /&gt;&lt;br /&gt;.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-7062801610861772373?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/7062801610861772373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/11/how-to-extract-7-zip-files.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7062801610861772373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7062801610861772373'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/11/how-to-extract-7-zip-files.html' title='How to Extract 7-Zip Files?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_BxG6dhw7_cc/TOCt5SqK13I/AAAAAAAAA88/H1dzbljIjTo/s72-c/7Zip1g.JPG' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-8680534094277024806</id><published>2010-08-31T21:12:00.001-07:00</published><updated>2010-08-31T23:05:51.938-07:00</updated><title type='text'>Using Tar Command to backup system files in Unix Based Server</title><content type='html'>&lt;span style="font-weight:bold;"&gt;# tar -cjf file_aug10.tar.bz2 filename &lt;/span&gt;&lt;br /&gt;In the above example command the system would create a tar.bz2 file named home.tar.bz2 in the directory you currently are in of the home directory.&lt;br /&gt;&lt;br /&gt;To extract the compress file:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight:bold;"&gt;# tar -xjvf file_aug10.tar.bz2  &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-8680534094277024806?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/8680534094277024806/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/08/using-tar-command-to-backup-system.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8680534094277024806'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8680534094277024806'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/08/using-tar-command-to-backup-system.html' title='Using Tar Command to backup system files in Unix Based Server'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-4773373860412307583</id><published>2010-08-31T18:15:00.000-07:00</published><updated>2010-09-02T00:19:33.381-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='easy upgrade'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='upgrade drupal 6.15 to 6.19'/><title type='text'>How to upgrade Drupal 6.15 to 6.19 ?</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Updated patch files to Drupal 6.18/6.19&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;Standard procedure to upgrade Drupal:&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Download the latest release/patch from drupal.org and follow the included UPGRADE.txt.&lt;span style="font-style: italic; color: rgb(204, 0, 0);"&gt;&lt;br /&gt;**However,for administrators using the UNIX shell it may be easier using the  attached patch files below instead of downloading and installing the  newest complete Drupal release.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Download the related patch files from here:&lt;br /&gt;&lt;a href="http://fuerstnet.de/en/drupal-upgrade-easier"&gt;http://fuerstnet.de/en/drupal-upgrade-easier&lt;/a&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Follow &lt;span style="font-weight: bold;"&gt;UPGRADING.txt&lt;/span&gt; up to '&lt;em&gt;&lt;span style="font-weight: bold;"&gt;5&lt;/span&gt;'.&lt;/em&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;&lt;span&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;Let's begin!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;1.  Back up your Drupal database and site root directory. Be especially sure to back up your "sites" directory which contains your configuration file, added modules and themes, and your site's uploaded files. If other files have modifications, such as .htaccess or robots.txt, back those up as well.&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;   &lt;span style="color: rgb(204, 0, 0);"&gt; Note: for a single site setup, the configuration file is the "settings.php" file located at sites/default/settings.php. The default.settings.php file contains a clean copy for restoration purposes, if required.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    &lt;span style="color: rgb(51, 0, 153);"&gt;For multisite configurations, the configuration file is located in a&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;    structure like the following:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;      sites/default/settings.php&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;      sites/example.com/settings.php&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;      sites/sub.example.com/settings.php&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;      sites/sub.example.com.path/settings.php&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;More information on multisite configuration is located in &lt;span style="font-weight: bold;"&gt;INSTALL.txt&lt;/span&gt;.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;2.  If possible, log on as the user with user ID 1, which is the first account created and the main administrator account. User ID 1 will be able to automatically access update.php in step #10. There are special instructions in step #10 if you are unable to log on as user ID 1. Do not close your browser until the final step is complete.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;3.  Place the site in "&lt;span style="font-weight: bold;"&gt;Off-line&lt;/span&gt;" mode, to let the database updates run without&lt;/span&gt;&lt;span style="color: rgb(51, 0, 153);"&gt; interruption and avoid displaying errors to end users of the site. This&lt;/span&gt;&lt;span style="color: rgb(51, 0, 153);"&gt; option is at http://www.example.com/?q=admin/settings/site-maintenance&lt;/span&gt;&lt;span style="color: rgb(51, 0, 153);"&gt; (replace www.example.com with your installation's domain name and path).&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;4.  If using a custom or contributed theme, switch&lt;/span&gt;&lt;span style="color: rgb(51, 0, 153);"&gt; to a core theme, such as Garland or Bluemarine.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(51, 0, 153);"&gt;5.  Disable all custom and contributed modules.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;em&gt;Remove all of the old files and directories from the Drupal installation directory.&lt;/em&gt;" Go on using this commands:&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;ul style="font-weight: bold;"&gt;&lt;li&gt;&lt;code&gt; cd DRUPAL-ROOT &lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Patch: &lt;/span&gt;&lt;code&gt;&lt;span style="font-weight: bold;"&gt; patch -p1 &lt;&gt;&lt;br /&gt;&lt;code&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;*&lt;/span&gt;&lt;/code&gt;&lt;span style="font-style: italic; color: rgb(204, 0, 0);"&gt; Be warned: this may break your Drupal installation , so make sure to have a backup at hand.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Proceed with &lt;span style="font-weight: bold;"&gt;UPGRADING.txt&lt;/span&gt; from &lt;em&gt;'&lt;span style="font-weight: bold;"&gt;8&lt;/span&gt;'.  Verify the new configuration file to make sure it has the latest and correct information.&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;8. Copy your backed up "files" and "sites" directories to the Drupal&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; installation directory. If other system files such as .htaccess or&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; robots.txt were customized, re-create the modifications in the new&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; versions of the files using the backups taken in step #1.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;9.  Verify the new configuration file to make sure it has correct information.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;10. Run&lt;/span&gt; &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;update.php&lt;/span&gt; &lt;span style="color: rgb(0, 0, 153);"&gt;by visiting&lt;/span&gt; &lt;span style="font-weight: bold; color: rgb(0, 0, 0);"&gt;http://www.example.com/update.php&lt;/span&gt; &lt;span style="color: rgb(0, 0, 153);"&gt;(replace&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; www.example.com with your Drupal installation's domain name and path). This&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; step will update the core database tables to the new Drupal installation.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;  &lt;span style="color: rgb(204, 0, 0);"&gt;  Note: if you are unable to access update.php do the following:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255); font-weight: bold;"&gt;      &lt;span style="color: rgb(51, 51, 51);"&gt;- Open your settings.php with a text editor.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;      - There is a line that says $update_free_access = FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;        Change it to $update_free_access = TRUE;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;      - Once update.php is done, you must change the settings.php file&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;        back to its original form with $update_free_access = FALSE;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;11. Ensure that the versions of all custom and contributed modules match the&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; new Drupal version to which you have updated. For a major update, such as&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; from 5.x to 6.x, modules from previous versions will not be compatible&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; and updated versions will be required.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;      - &lt;span style="font-weight: bold;"&gt;For contributed modules, check http://drupal.org/project/modules&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153); font-weight: bold;"&gt; for the version of a module matching your version of Drupal.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;      - For custom modules, review &lt;span style="font-weight: bold;"&gt;http://drupal.org/update/modules&lt;/span&gt; to&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; ensure that a custom module is compatible with the current version.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;12.  Re-enable custom and contributed modules and &lt;span style="font-weight: bold;"&gt;re-run update.php&lt;/span&gt;&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; to update custom and contributed database tables.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;13. &lt;span style="font-weight: bold;"&gt;Return the site to its original theme&lt;/span&gt; (if you switched to a core&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; theme like Garland or Bluemarine in step #4). If your site uses a&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; custom or contributed theme, make sure it is compatible with your&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; version of Drupal.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;      - For contributed themes, check http://drupal.org/project/themes&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; for the version of a theme matching your version of Drupal.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;      - For custom themes, review http://drupal.org/update/theme to ensure&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; that a custom theme is compatible with the current version.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 153);"&gt;14. Finally, return your site to "&lt;span style="font-weight: bold;"&gt;Online&lt;/span&gt;" mode so your visitors may resume&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; browsing. As in step #3, this option is available in your administration&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; screens at http://www.example.com/?q=admin/settings/site-maintenance&lt;/span&gt;&lt;span style="color: rgb(0, 0, 153);"&gt; (replace www.example.com with your installation's domain name and path).&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;**&lt;/span&gt;&lt;/em&gt;&lt;strong style="color: rgb(204, 0, 0);"&gt;Warning&lt;/strong&gt; &lt;p style="color: rgb(204, 0, 0);"&gt;If you get errors like &lt;span class="geshifilter"&gt;&lt;code class="bash geshifilter-bash"&gt;Reversed &lt;span class="br0"&gt;(&lt;/span&gt;or previously applied&lt;span class="br0"&gt;)&lt;/span&gt; &lt;span class="kw2"&gt;patch&lt;/span&gt; detected&lt;/code&gt;&lt;/span&gt; or &lt;span class="geshifilter"&gt;&lt;code class="bash geshifilter-bash"&gt;&lt;span class="nu0"&gt;1&lt;/span&gt; out of &lt;span class="nu0"&gt;2&lt;/span&gt; hunks FAILED&lt;/code&gt;&lt;/span&gt;  while running the patch dry run (second command above) immediately  interrupt patching and upgrade following the steps explained in  UPGRADING.txt.&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;Reference Source:&lt;br /&gt;&lt;a href="http://fuerstnet.de/en/drupal-upgrade-easier"&gt;http://fuerstnet.de/en/drupal-upgrade-easier&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-4773373860412307583?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/4773373860412307583/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/08/how-to-upgrade-drupal-615-to-619.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/4773373860412307583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/4773373860412307583'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/08/how-to-upgrade-drupal-615-to-619.html' title='How to upgrade Drupal 6.15 to 6.19 ?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-5417159296954739974</id><published>2010-08-17T20:07:00.000-07:00</published><updated>2010-08-18T01:09:04.348-07:00</updated><title type='text'>CodeIgniter</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://codeigniter.com/user_guide/"&gt;&lt;img style="cursor: pointer; width: 76px; height: 84px;" src="http://codeigniter.com/user_guide/images/ci_logo_flame.jpg" alt="" border="0" /&gt;&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;Introduction to CodeIgniter&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;CodeIgniter is an Application Development Framework - a toolkit - for people who build web sites using PHP. Its goal is to enable you to develop projects much faster than you could if you were writing code from scratch, by providing a rich set of libraries for commonly needed tasks, as well as a simple interface and logical structure to access these libraries. CodeIgniter lets you creatively focus on your project by minimizing the amount of code needed for a given task. CodeIgniter (CI) uses the Model-View-Controller (MVC) approach similar to that of Ruby on Rails.&lt;br /&gt;&lt;br /&gt;Some people said &lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 153);"&gt;"Code Igniter is an Open Source Web Application Framework&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 153);"&gt; that makes writing kick-ass &lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 153);" class="caps"&gt;PHP&lt;/span&gt;&lt;span style="font-weight: bold; font-style: italic; color: rgb(153, 51, 153);"&gt; programs simple as apple pie"&lt;/span&gt;. Is it true? Lets begin.&lt;br /&gt;&lt;br /&gt;1- Download &lt;span style="font-weight: bold;"&gt;CodeIgniter Current Version&lt;/span&gt; from &lt;a href="http://codeigniter.com/downloads/"&gt;http://codeigniter.com/downloads/&lt;/a&gt;&lt;br /&gt;2- Extract the zip file in your root folder in your localhost pc/webserver.&lt;br /&gt;3- Read &lt;a style="font-weight: bold;" href="http://codeigniter.com/user_guide/"&gt;User Guide&lt;/a&gt; or &lt;a href="http://godbit.com/article/introduction-to-code-igniter"&gt;&lt;span style="font-weight: bold;"&gt;Basic Step&lt;/span&gt;&lt;/a&gt; on How to use CodeIgniter before you go further in the code.&lt;br /&gt;&lt;br /&gt;In my case, I setup &lt;a href="http://sourceforge.net/projects/xampp/"&gt;&lt;span style="font-weight: bold; color: rgb(255, 102, 0);"&gt;xampp&lt;/span&gt;&lt;/a&gt; server in my local PC.&lt;br /&gt;Next step;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;I extract the codeigniter file insite &lt;span style="color: rgb(51, 51, 255);"&gt;C:\xampp\htdocs\&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Rename the folder name CodeIgniter to any name you want like &lt;span style="font-weight: bold;"&gt;form1&lt;/span&gt;.&lt;/li&gt;&lt;li&gt;Inside the form1 folder, there is &lt;span style="font-weight: bold;"&gt;system &lt;/span&gt;and &lt;span style="font-weight: bold;"&gt;user guide&lt;/span&gt; folder, &lt;span style="font-weight: bold;"&gt;index.php&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;license.txt&lt;/span&gt; file.&lt;/li&gt;&lt;li style="text-align: left;"&gt;Go inside &lt;span style="color: rgb(51, 51, 255);"&gt;C:\xampp\htdocs\form1\system\application\config\&lt;/span&gt; and open &lt;span style="font-weight: bold;"&gt;config.php&lt;/span&gt; file. At about &lt;em&gt;line 14&lt;/em&gt; you should see:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;span style="color: rgb(51, 51, 51); font-weight: bold;"&gt;$config['base_url'] = "http://www.your-site.com/";&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Edit this url with your &lt;span class="caps"&gt;URL&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;&lt;code&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;$config['base_url'] = "http://localhost/&lt;span style="color: rgb(51, 51, 255);"&gt;form1&lt;/span&gt;";&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;form1 is refer to the folder name in step 2 above.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li style="text-align: left;"&gt;Now save that file and open &lt;strong&gt;autoload.php&lt;/strong&gt;. On &lt;em&gt;line 42&lt;/em&gt;, let’s add the &lt;strong&gt;e-mail core class&lt;/strong&gt;:&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;$autoload['core'] = array('email');&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;and &lt;span style="font-weight: bold;"&gt;database core class&lt;/span&gt;:&lt;br /&gt;&lt;br /&gt;&lt;code style="font-weight: bold; color: rgb(204, 0, 0);"&gt;$autoload['libraries'] = array('database');&lt;/code&gt;&lt;br /&gt;&lt;br /&gt;and on &lt;em&gt;line 54&lt;/em&gt; let’s add the &lt;strong&gt;form&lt;/strong&gt; and &lt;strong&gt;url helpers:&lt;/strong&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;$autoload['helper'] = array('url', 'form');&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;Save that file. The reason for adding the &lt;strong&gt;e-mail core class&lt;/strong&gt; is pretty  obvious since one of the features of our registration form is to notify  the organizers when someone has submitted a completed form. The &lt;span style="font-weight: bold;"&gt;database core class&lt;/span&gt; is use to interact with database operation.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h2 style="color: rgb(255, 102, 0);"&gt;Controllers&lt;/h2&gt;With those core classes and helpers loaded, now the time create my first controller.&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to &lt;span style="color: rgb(51, 51, 255);"&gt;C:\xampp\htdocs\form1\system\application\controllers&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;You will see sample controller file &lt;span style="font-weight: bold;"&gt;welcome.php&lt;br /&gt;&lt;/span&gt;I copy the file and name it &lt;span style="font-weight: bold;"&gt;home.php . &lt;/span&gt;Open the file and edit the function inside.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;This function refer to views file(&lt;span style="font-weight: bold;"&gt;welcome_message.php&lt;/span&gt;) in &lt;span style="color: rgb(51, 51, 255);"&gt;C:\xampp\htdocs\form1\system\application\&lt;/span&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;views\&lt;/span&gt;&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;function index()&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt; {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;  $this-&gt;load-&gt;view('&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;welcome_message&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt; }&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;**If I want to create new view files for the form, just rename welcome_message to a new name.Let say &lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;subject&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;function index()&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt; {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;  $this-&gt;load-&gt;view('&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;subject&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt; }&lt;/span&gt;&lt;/code&gt;&lt;code&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/code&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(255, 102, 0);"&gt;VIEWS&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li style="text-align: left;"&gt;Go to &lt;span style="color: rgb(51, 51, 255);"&gt;C:\xampp\htdocs\form1\system\application\views\ &lt;span style="color: rgb(0, 0, 0);"&gt;and open &lt;span style="font-weight: bold;"&gt;subject.php&lt;br /&gt;&lt;/span&gt;&lt;span&gt;All display setting for my form are formatted in this file. Create the html form here and set the submit function later in controller(home.php).&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Open internet browser and type this url to view the page&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;a href="http://localhost/regform/index.php/form"&gt;http://localhost/form1/index.php/home&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;*home &lt;/span&gt;is refer to your controller filename (&lt;span style="color: rgb(51, 51, 255);"&gt;home&lt;/span&gt;.php).&lt;br /&gt;The form will display in your browser as you want.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 102, 0);"&gt;MODELS&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;O'o... I forgot to copy models file.&lt;br /&gt;In my case, this is models file we always use.&lt;br /&gt;&lt;code&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Open php syntax&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;class &lt;span style="font-weight: bold;"&gt;Subject&lt;/span&gt;_model extends Model &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;  function Subject_model() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;  parent::Model();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;  table_name = 'subject';&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;  }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function check_uid($uid) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('uid', $uid);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       return ($query-&gt;num_rows() &gt; 0) ? TRUE:FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function check_sem($sem) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('semester', $sem);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       return ($query-&gt;num_rows() &gt; 0) ? TRUE:FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function check($uid,$sem) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('uid', $uid);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('semester', $sem);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       return ($query-&gt;num_rows() &gt; 0) ? TRUE:FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;  &lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function delete($id) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('id', $id);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;delete($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       return TRUE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function details($uid,$semester) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('uid', $uid);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('semester', $semester);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if($query-&gt;num_rows() &gt; 0) {&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return $query;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       else {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function details_ref($refno) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('student_ref_no', $refno);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if($query-&gt;num_rows() &gt; 0) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           $result = $query-&gt;row();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return $result;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       else {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function get_list($currentsem) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if(!$currentsem) {&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           $currentsem = '';&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       /*&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;order_by('student_ref_no', 'ASC');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;order_by('timecreated', 'DESC');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;order_by('id', 'DESC');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       */&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;query('SELECT *, COUNT(*)-1 as duplicate FROM (SELECT * FROM student '.$currentsem.' ORDER BY id DESC) as student GROUP BY student_ref_no ORDER BY timecreated DESC');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       //$query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if($query-&gt;num_rows() &gt; 0) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return $query;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       else {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function count_unique() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;group_by('student_ref_no');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       return $query-&gt;num_rows();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function get_name($id) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if(!$id) { return FALSE; }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('id', $id);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if($query-&gt;num_rows() &gt; 0) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           $result = $query-&gt;row();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return $result-&gt;student_name;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       else {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function get_latest($limit = NULL, $offset = NULL) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;limit($limit, $offset);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;order_by('date', 'DESC');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if($query-&gt;num_rows() &gt; 0) {&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return $query;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       else {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function insert($data) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;set($data);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;insert($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       return $this-&gt;db-&gt;insert_id();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function total() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;distinct();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;select('uid');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if($query-&gt;num_rows() &gt; 0) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return $query-&gt;num_rows();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       else {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function update($uid,$sem,$data) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('uid', (string)$uid);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('semester', (string)$sem);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;set($data);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;update($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function update_student($refno, $data) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('student_ref_no', $refno);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;set($data);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;update($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function update_printed($id, $data) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;where('id', $id);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;set($data);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;update($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   function get_currentsemester() {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;distinct();&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $this-&gt;db-&gt;select('currentsemester');&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       $query = $this-&gt;db-&gt;get($this-&gt;table_name);&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       if($query-&gt;num_rows() &gt; 0) {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return $query;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       else {&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;           return FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;       }&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;   }&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Close php syntax&lt;/span&gt;&lt;br /&gt;&lt;/code&gt;&lt;br /&gt;*The class name must same with models file name. In this case, file name is &lt;span style="font-weight: bold;"&gt;subject_model.php&lt;/span&gt; save in &lt;span style="color: rgb(51, 51, 255);"&gt;C:\xampp\htdocs\form1\system\application\models&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 102, 0);"&gt;&lt;br /&gt;Integrate Form with Database.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Task1: Create subject withdraw form for student&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(102, 0, 0);"&gt;Data input: subject code, subject name, reason.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Create blank database using phpmyadmin ()... to be continue&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-5417159296954739974?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/5417159296954739974/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/08/codeigniter.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5417159296954739974'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5417159296954739974'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/08/codeigniter.html' title='CodeIgniter'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-5773670604730432589</id><published>2010-06-27T18:25:00.000-07:00</published><updated>2010-06-27T18:46:13.075-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wordpress'/><category scheme='http://www.blogger.com/atom/ns#' term='Error saving media attachment'/><title type='text'>Error saving media attachment in WordPress</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Error on site: Error saving media attachment &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Last week my friend (Arabic webmaster) told me that our site cannot upload picture or any files in media library. It happened since last Thursday. So for the whole Friday I search I have used  to search the net for a solution. And I  actually found most of the forums &amp;amp; blogs said to do this step:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;strong&gt;&lt;/strong&gt;Go to “Settings” then go to “Miscellaneous” and  check that your “Store uploads in this folder” is correct. Is should be  something like “&lt;span style="font-weight: bold;"&gt;wp-content/uploads&lt;/span&gt;”.&lt;br /&gt;&lt;br /&gt;Mine was already use it.&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;&lt;strong&gt;&lt;/strong&gt;Next step is to check the permissions for your  “uploads” folder located in “&lt;span style="font-weight: bold;"&gt;wordpress/wp-content/uploads/&lt;/span&gt;” on your  server. Changed the whole “uploads” folder with “chmod &lt;span style="font-weight: bold;"&gt;777&lt;/span&gt; uploads”  without luck.&lt;br /&gt;&lt;br /&gt;Mine also was set to 777 as it, but still cannot work.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;So, after check everything here and there, finally our server guy suggest to reboot the www server. It is not the best, but it seems our last choice after checking everything ok. And yahoo!!... it works!. All the media upload function back in media library and post.&lt;br /&gt;&lt;br /&gt;I'm feel relief .. Thanks Allah for showing us the way out.. :)&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-5773670604730432589?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/5773670604730432589/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/06/error-saving-media-attachment-in.html#comment-form' title='18 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5773670604730432589'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5773670604730432589'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/06/error-saving-media-attachment-in.html' title='Error saving media attachment in WordPress'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>18</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-5149122416205021730</id><published>2010-06-01T01:08:00.000-07:00</published><updated>2010-06-01T01:31:49.637-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wordpress'/><category scheme='http://www.blogger.com/atom/ns#' term='install plugins'/><title type='text'>Wordpress 2.9.2: Install Plugins Problem</title><content type='html'>Salam,&lt;br /&gt;&lt;br /&gt;Last week, I already installed new wordpress 2.9.2 in my dev server. I setup and configure all require file and the site can display well.&lt;br /&gt;&lt;br /&gt;But the problem occur when I want to install plugins. The page display box to set connection info by ftp.. I try to check here and there, but still cannot find the setting file.... and finally I found the solution.&lt;br /&gt;&lt;br /&gt;After we try to &lt;span style="font-weight: bold;"&gt;change the ownership of the wordpress folder to www&lt;/span&gt;, the plugin can be install without asking any connection setting info...&lt;br /&gt;&lt;br /&gt;I'm happy :). Thanks tis guys for lend me yours big hands.:)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-5149122416205021730?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/5149122416205021730/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/06/wordpress-292-install-plugins-problem.html#comment-form' title='8 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5149122416205021730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5149122416205021730'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/06/wordpress-292-install-plugins-problem.html' title='Wordpress 2.9.2: Install Plugins Problem'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>8</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-3372591432753821536</id><published>2010-05-06T01:33:00.000-07:00</published><updated>2010-05-06T02:01:11.117-07:00</updated><title type='text'>Website Issue: Table picture cannot fit in css format for web header</title><content type='html'>We have been facing this problem since last week. Our designer send us new image link to be place in our website header.. but in table format ... which is different from the previous format where we just use a single picture for link. For the new one, we need to add a curve black background shape with 2 on-off button for link and one static link for pdf. The designer provide us the picture in slices... which formatted in html table. This should be okey if our web page only use simple html. But in our case, we use .php header with .css style file.&lt;br /&gt;&lt;br /&gt;We try for a few days, and still cannot get the correct position. After my boss come and ask me today, suddenly I get a a simple idea to solve this problem. Why don't I just compile those slices  to a single picture. Then I cut into three and place it in header as three link, formatted the css style and adjust a bit the position part. And finally it works.&lt;br /&gt;&lt;br /&gt;Simple way to do:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Display the original .html(given by designer) file in browser.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Print screen and crop the full picture in Photoshop.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Cut the picture into 3 pieces... follow the previous original picture file size(411 x65).&lt;br /&gt;Then upload those pictures in img folder in the themes folder.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Then edit the header.php file. Add two more link after the original link. Change the image name with the correct path. I use the mouseover link style, where the picture will swap when mouseover.&lt;br /&gt;.....................&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;[link tag]&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;='link address' class="applynow1" title="Apply On Campus"&gt;&lt;img src="http://www.blogger.com/post-edit.g?blogID=4999477317987751114&amp;amp;postID=3372591432753821536" /&gt;/img/oncampus_1.png" onmouseover="this.src='/img/oncampus_2.png';" onmouseout="this.src='/img/oncampus_1.png';" border="0" alt="" /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;[close link tag]&lt;/span&gt;&lt;br /&gt;.............................&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Then edit the css file. Add 2 more class style for 'applynow' &gt; applynow1 and applynow2.&lt;br /&gt;.header a.applynow { position: absolute; right: 20px; bottom: 0; top: 36px }&lt;br /&gt;.header a.applynow1 { position: absolute; right: 153px; bottom: 0; top: 36px }&lt;br /&gt;.header a.applynow2 { position: absolute; right: 60px; bottom: 0; top: 36px }&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Save and preview the changes.&lt;/li&gt;&lt;li&gt;Lastly, I edit the bg.png to repair the bg curve in right position. Then upload back and publish. All work just nice.  Alhamdulillah.&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-3372591432753821536?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/3372591432753821536/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/05/website-issue-table-picture-cannot-fit.html#comment-form' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3372591432753821536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3372591432753821536'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/05/website-issue-table-picture-cannot-fit.html' title='Website Issue: Table picture cannot fit in css format for web header'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-2074687014955879003</id><published>2010-05-05T00:17:00.000-07:00</published><updated>2010-05-05T00:46:48.545-07:00</updated><title type='text'>Website Issue: Menu hidden behind flash</title><content type='html'>&lt;div&gt;Everything works fine in Firefox, but in Internet Explorer my menu is hidden behind my Flash movie.&lt;br /&gt;What to do?&lt;br /&gt;&lt;br /&gt;Solution:&lt;br /&gt;&lt;br /&gt;Try this as your code for the flash.&lt;br /&gt;&lt;br /&gt;Code:&lt;br /&gt;&lt;a href="http://1.bp.blogspot.com/_BxG6dhw7_cc/S-EhIHb19YI/AAAAAAAAA0U/lSsO6eA324o/s1600/flash_code.jpg"&gt;&lt;/a&gt;&lt;a href="http://2.bp.blogspot.com/_BxG6dhw7_cc/S-EiAJ0WTII/AAAAAAAAA0c/He3qBs0gMPY/s1600/flash_code2.jpg"&gt;&lt;img style="WIDTH: 363px; HEIGHT: 65px; CURSOR: hand" id="BLOGGER_PHOTO_ID_5467688808635321474" border="0" alt="" src="http://2.bp.blogspot.com/_BxG6dhw7_cc/S-EiAJ0WTII/AAAAAAAAA0c/He3qBs0gMPY/s400/flash_code2.jpg" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;It working fine for me. Happy .. :)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;. &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-2074687014955879003?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/2074687014955879003/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/05/website-issue-menu-hidden-behind-flash.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2074687014955879003'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2074687014955879003'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/05/website-issue-menu-hidden-behind-flash.html' title='Website Issue: Menu hidden behind flash'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_BxG6dhw7_cc/S-EiAJ0WTII/AAAAAAAAA0c/He3qBs0gMPY/s72-c/flash_code2.jpg' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-1887087903543367021</id><published>2010-02-01T23:02:00.000-08:00</published><updated>2010-02-01T23:29:34.527-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='PATCH Drupal 6.14 to Drupal 6.15'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='howto patch'/><title type='text'>HOW TO PATCH Drupal 6.14 to Drupal 6.15</title><content type='html'>In first place, I try to upgrade my drupal follow the instruction in UPGRADE.txt.. but not successful. I try three time and at last I fade up.&lt;br /&gt;&lt;br /&gt;Finally I found this easier way to patch Drupal 6.14 to Drupal 6.15. This case is for Unix based server only.&lt;br /&gt;&lt;br /&gt;Just Follow this simple steps;&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Backup your drupal database and file system first. Store your backup in other folder(/home/user/)&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Download patch file (&lt;a href="http://fuerstnet.de/sites/fuerstnet.de/files/patches/drupal-6.14-to-6.15.patch"&gt;drupal-6.14-to-6.15.patch&lt;/a&gt; ) from this site&lt;br /&gt;&lt;a href="http://fuerstnet.de/en/drupal-upgrade-easier"&gt;http://fuerstnet.de/en/drupal-upgrade-easier&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Open your drupal directory&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;#cd your drupal directory&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Copy the patch file (&lt;a href="http://fuerstnet.de/sites/fuerstnet.de/files/patches/drupal-6.14-to-6.15.patch"&gt;drupal-6.14-to-6.15.patch&lt;/a&gt; ) into this directory.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Login to drupal admin page. Please login as admin.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Set site to &lt;span style="font-weight: bold;"&gt;off-line&lt;/span&gt; mode. &lt;span style="font-weight: bold;"&gt;Disable all modules &lt;/span&gt;that currently enable.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Run this pact command:&lt;br /&gt;#patch -p1 &lt; &lt;a href="http://fuerstnet.de/sites/fuerstnet.de/files/patches/drupal-6.14-to-6.15.patch"&gt;drupal-6.14-to-6.15.patch&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;** Be warned: this may break your Drupal installation so make sure to have a backup at hand.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;After finished, &lt;em&gt;Verify the new configuration file to make sure it has the latest and correct information.&lt;br /&gt;&lt;br /&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;Run http://your domain/update.php&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;After finished, &lt;em&gt;Verify in  status &lt;/em&gt;&lt;em&gt;report &lt;/em&gt;&lt;em&gt;page to make sure your Drupal already upgrade to version 6.15.&lt;br /&gt;&lt;br /&gt;&lt;/em&gt;&lt;/li&gt;&lt;li&gt;Enable back all previous active modules.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Set the site back to online mode. See the site live again.&lt;br /&gt;&lt;br /&gt;Good luck!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;* Use this patch files on your own responsibility. I don't guarantee the proper function of the patch files on Drupal installations other than my own. - &lt;/span&gt;&lt;a href="http://fuerstnet.de/en/drupal-upgrade-easier"&gt;fuerstnet.de&lt;/a&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-1887087903543367021?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/1887087903543367021/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/02/how-to-patch-drupal-614-to-drupal-615.html#comment-form' title='9 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1887087903543367021'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1887087903543367021'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/02/how-to-patch-drupal-614-to-drupal-615.html' title='HOW TO PATCH Drupal 6.14 to Drupal 6.15'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>9</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-1451959458691307864</id><published>2010-01-12T23:59:00.000-08:00</published><updated>2010-01-13T00:13:14.287-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wordpress'/><category scheme='http://www.blogger.com/atom/ns#' term='NextGEN Gallery'/><category scheme='http://www.blogger.com/atom/ns#' term='upgrade'/><title type='text'>WORDPRESS: NextGEN Gallery Not Function after Upgrade!</title><content type='html'>&lt;span style="font-weight: bold;"&gt;My Case: &lt;/span&gt;&lt;br /&gt;I upgrade Wordpress 2.7 to wordpress 2.9.1.&lt;br /&gt;The I also upgrade all plug-in that we use in the wordpress includes&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;NextGEN Gallery.&lt;br /&gt;&lt;br /&gt;All the previous pictures and gallery still there but the slideshow not working in publish news page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Download &lt;a href="http://www.longtailvideo.com/players/jw-image-rotator/"&gt;JW Image Rotator&lt;/a&gt; from &lt;a href="http://www.longtailvideo.com/players/jw-image-rotator/"&gt;here&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Unzip and copy the Imagerotator folder in uploads folder.&lt;br /&gt;Default path is ../wp-content/uploads/&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open the NextGEN Gallery admin panel page. Setting back the NextGEN Gallery  Options. Compare the details with the previous gallery setting to get the same effect.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Save all setting. Try refresh the page again. It' s done.&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-1451959458691307864?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/1451959458691307864/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/01/wordpress-nextgen-gallery-not-function.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1451959458691307864'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1451959458691307864'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/01/wordpress-nextgen-gallery-not-function.html' title='WORDPRESS: NextGEN Gallery Not Function after Upgrade!'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-1677929783966987294</id><published>2010-01-12T17:11:00.000-08:00</published><updated>2010-01-12T17:46:00.309-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wordpress'/><category scheme='http://www.blogger.com/atom/ns#' term='You do not have sufficient permission to access this page.'/><category scheme='http://www.blogger.com/atom/ns#' term='site related'/><category scheme='http://www.blogger.com/atom/ns#' term='how to'/><category scheme='http://www.blogger.com/atom/ns#' term='troubleshoot'/><title type='text'>WORDPRESS: How to solve ‘You do not have sufficient permission to access this page.'</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Case 1: &lt;/span&gt;&lt;br /&gt;We install the same wordpress file in new server.&lt;br /&gt;But we change the prefix of the database. After setup everything, the website page cannot be display. Error occur.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Open database that have been use for this wordpress using phpmyadmin.&lt;/li&gt;&lt;li&gt;Search url: www.address.edu.my dalam db&lt;/li&gt;&lt;li&gt;Change all address to new address :www4.address.edu.my&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(255, 102, 0);"&gt;Probably inside:&lt;/span&gt;&lt;br /&gt;wp_options&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;But after change all the address to the new one, the admin page cannot be open.&lt;br /&gt;There some error said:'You do not have sufficient permission to access this page.'&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(0, 0, 153);"&gt;How to solve ‘You do not have sufficient permission to access this page.'&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After seacrhing all the possible solution from the internet, finally we found the solution in this site: &lt;a href="http://beconfused.com/"&gt;http://beconfused.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Because we&lt;span style="font-weight: bold;"&gt; &lt;/span&gt;change the prefix of the table names in WordPress after the migration, thats why the error occurs.&lt;br /&gt;&lt;br /&gt;In my old database, I used ‘&lt;span style="color: rgb(255, 0, 0);"&gt;wp_&lt;/span&gt;’ as my prefix. As I migrated, I decide to use ‘&lt;span style="color: rgb(255, 0, 0);"&gt;newprefix_&lt;/span&gt;’ instead of ‘&lt;span style="color: rgb(255, 0, 0);"&gt;wp_&lt;/span&gt;’. Unfortunately, the meta_key values are tied down to:&lt;br /&gt;&lt;ul&gt;&lt;li&gt; wp_user_level&lt;/li&gt;&lt;li&gt; wp_capabilities&lt;/li&gt;&lt;li&gt; wp_autosave_draft_ids&lt;/li&gt;&lt;/ul&gt;So, we need to update it to &lt;ul&gt;&lt;li&gt; &lt;span style="color: rgb(255, 0, 0);"&gt;newprefix_&lt;/span&gt;user_level&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;newprefix_&lt;/span&gt;capabilities&lt;/li&gt;&lt;li&gt; &lt;span style="color: rgb(255, 0, 0);"&gt;newprefix_&lt;/span&gt;autosave_draft_ids&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;The following statements go to ‘meta_key’ and does a string replace from ‘wp_’ to ‘prefix_’. &lt;p style="font-weight: bold; color: rgb(0, 153, 0);"&gt;&lt;span style="font-size:100%;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="font-weight: bold; color: rgb(0, 153, 0);"&gt;&lt;span style="font-size:100%;"&gt;&lt;code&gt;UPDATE `prefix_usermeta` SET `meta_key` = REPLACE( `meta_key` , 'wp_', 'prefix_' );&lt;/code&gt;&lt;/span&gt;&lt;/p&gt; &lt;p&gt;&lt;em&gt;&lt;br /&gt;&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;(&lt;span style="color: rgb(255, 0, 0);"&gt;** Dont forget to do backups first! Note that the quotes used for string and field name are different. &lt;/span&gt;)&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;em&gt;&lt;br /&gt;&lt;/em&gt;&lt;/p&gt;&lt;p style="font-weight: bold;"&gt;&lt;em&gt;Not finish yet! This another one statement you need to do also.&lt;/em&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;In the options table, there is ‘wp_user_roles’, make sure you get that changed into ‘prefix_user_roles’.&lt;/p&gt; &lt;p style="color: rgb(204, 0, 0); font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="color: rgb(204, 0, 0); font-weight: bold;"&gt;&lt;span style="font-size:100%;"&gt;&lt;code&gt;UPDATE `prefix_options` SET `option_name` = 'prefix_user_roles' WHERE `option_name` ='wp_user_roles' AND `blog_id` =0;&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="font-weight: bold; color: rgb(0, 153, 0);"&gt;&lt;br /&gt;&lt;span style="font-size:130%;"&gt;&lt;code&gt;&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="font-weight: bold; color: rgb(0, 153, 0);"&gt;&lt;span style="font-size:130%;"&gt;&lt;code&gt;&lt;br /&gt;&lt;/code&gt;&lt;/span&gt;&lt;/p&gt;Try it, I tried logging in again and it worked. Thank you very much to &lt;a href="http://beconfused.com/"&gt;http://beconfused.com&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;After successfully open the admin page, we run the upgrade automatically after deactivate all the current active plugins. All run very well without error.&lt;br /&gt;&lt;br /&gt;But after check back all the links inside the website page, we found this error again:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;WordPress 404 Not Found Problem&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I already post this solution in my last year post. Refer the solution there.&lt;br /&gt;&lt;a href="http://salinaitmind.blogspot.com/2009/07/wordpress-move-site-to-new-server-issue.html"&gt;http://salinaitmind.blogspot.com/2009/07/wordpress-move-site-to-new-server-issue.html&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;After that, every links can work fine. Alhamdulillah...&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-1677929783966987294?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/1677929783966987294/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2010/01/wordpress-how-to-solve-you-do-not-have.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1677929783966987294'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1677929783966987294'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2010/01/wordpress-how-to-solve-you-do-not-have.html' title='WORDPRESS: How to solve ‘You do not have sufficient permission to access this page.&apos;'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-5571098673027050769</id><published>2009-12-15T19:39:00.000-08:00</published><updated>2009-12-15T19:42:38.968-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='video'/><category scheme='http://www.blogger.com/atom/ns#' term='embed video'/><category scheme='http://www.blogger.com/atom/ns#' term='html'/><title type='text'>How To Embed WMV/MOV video file for multiple browsers</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;MEDIA PLAYER CODE&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;{DIV align="center"}{OBJECT ID="MediaPlayer" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" CODEBASE="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" standby="Loading Microsoft Windows Media Player components..." TYPE="application/x-oleobject" width="425" height="355"}{PARAM NAME="FileName" VALUE="XXXXXXX"}{PARAM NAME="AnimationatStart" VALUE="false"}{PARAM NAME="TransparentatStart" VALUE="true"}{PARAM NAME="AutoStart" VALUE="true"}{PARAM NAME="ShowControls" VALUE="0"}{PARAM NAME="ShowDisplay" VALUE="0"}{PARAM NAME="ShowStatusBar" VALUE="0"}{PARAM NAME="AutoSize" VALUE="0"}{PARAM NAME="EnableContextMenu" VALUE="false"}{embed TYPE="application/x-mplayer2" pluginspage="http://www.microsoft.com/isapi/redir.dll?prd=windows&amp;amp;sbp=mediaplayer&amp;amp;ar=Media&amp;amp;sba=Plugin&amp;amp;" SRC="XXXXXXX" HEIGHT="355" WIDTH="425" Name="MediaPlayer" AUTOSTART="1" SHOWCONTROLS="0" EnableContextMenu="0"}{/embed}{/OBJECT}{/div}&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;QUICK TIME CODE&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;{DIV align="center"}{object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="425" height="355" codebase="http://www.apple.com/qtactivex/qtplugin.cab"}{param name="src" value="XXXXXX"}{param name="autoplay" value="true"}{param name="controller" value="false"}{embed src="XXXXXX[code]" width="425" height="355" autoplay="true" controller="false" pluginspage="http://www.apple.com/quicktime/download/"}{/embed}{/object}{/div}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-5571098673027050769?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/5571098673027050769/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/12/how-to-embed-wmvmov-video-file-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5571098673027050769'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5571098673027050769'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/12/how-to-embed-wmvmov-video-file-for.html' title='How To Embed WMV/MOV video file for multiple browsers'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-184224706340952774</id><published>2009-12-08T00:33:00.000-08:00</published><updated>2009-12-08T00:45:00.065-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='pdf'/><category scheme='http://www.blogger.com/atom/ns#' term='fpdf'/><category scheme='http://www.blogger.com/atom/ns#' term='php'/><title type='text'>FPDF - Free PDF Generator</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.fpdf.org/"&gt;&lt;img style="cursor: pointer; width: 104px; height: 71px;" src="http://www.fpdf.org/logo.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;&lt;br /&gt;What is FPDF?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say without using the PDFlib library. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.&lt;br /&gt;&lt;br /&gt;FPDF has other advantages: high level functions. Here is a list of its main features:&lt;br /&gt;&lt;br /&gt;* Choice of measure unit, page format and margins&lt;br /&gt;* Page header and footer management&lt;br /&gt;* Automatic page break&lt;br /&gt;* Automatic line break and text justification&lt;br /&gt;* Image support (JPEG, PNG and GIF)&lt;br /&gt;* Colors&lt;br /&gt;* Links&lt;br /&gt;* TrueType, Type1 and encoding support&lt;br /&gt;* Page compression&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The &lt;a href="http://www.fpdf.org/en/tutorial/index.php"&gt;&lt;span style="font-weight: bold;"&gt;tutorials&lt;/span&gt;&lt;/a&gt; will give you a quick start. The complete online documentation is here and download area is there. It is strongly advised to read the FAQ which lists the most common questions and issues.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;What languages can I use?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;The class can produce documents in many languages other than the Western European ones: Central European, Cyrillic, Greek, Baltic and Thai, provided you own TrueType or Type1 fonts with the desired character set. Chinese, Japanese and Korean are supported too.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0); font-weight: bold;"&gt;What about performance?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;Of course, the generation speed of the document is less than with PDFlib. However, the performance penalty keeps very reasonable and suits in most cases, unless your documents are particularly complex or heavy.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;Download FPDF Now&lt;/span&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;.&lt;/span&gt;&lt;br /&gt;&lt;ul id="archive"&gt;&lt;li&gt; &lt;b&gt;v1.6&lt;/b&gt; (2008-08-03) &lt;p&gt;&lt;a href="http://www.fpdf.org/en/dl.php?v=16&amp;amp;f=zip"&gt;ZIP&lt;/a&gt; | &lt;a href="http://www.fpdf.org/en/dl.php?v=16&amp;amp;f=tgz"&gt;TGZ&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;.&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-184224706340952774?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/184224706340952774/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/12/fpdf-free-pdf-generator.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/184224706340952774'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/184224706340952774'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/12/fpdf-free-pdf-generator.html' title='FPDF - Free PDF Generator'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-6870316510848936470</id><published>2009-12-03T19:11:00.000-08:00</published><updated>2009-12-03T23:37:17.700-08:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='how'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='howto patch'/><category scheme='http://www.blogger.com/atom/ns#' term='patch'/><title type='text'>How to patch Drupal 6.x to 6.y?</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(0, 153, 0);"&gt;Upgrading from previous versions&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Notes&lt;/span&gt;:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;    It is best practice to back up your Drupal files and database(s) before upgrading.&lt;/li&gt;&lt;li&gt;Two major versions of Drupal are supported at a time. 6.x is the current version. 5.x is the prior version and is still supported. Drupal 4.x is unsupported.&lt;/li&gt;&lt;li&gt;Knowing what version to upgrade to:&lt;ul&gt;&lt;li&gt;If upgrading from one minor release to another, such as 6.3 to 6.14, jump straight to the latest release within that major version.&lt;/li&gt;&lt;li&gt;If upgrading from one major version to another, such as from 4.6 to 6.14, you must upgrade to the latest release within the major version (4.7), then the latest release within the next major version (5.20), etc. until you're at the latest release of the final major version&lt;/li&gt;&lt;li&gt;More upgrade information is available at:&lt;ol&gt;&lt;li&gt;The UPGRADE.txt file packaged with your Drupal files.&lt;/li&gt;&lt;li&gt;Release announcements for the version to which you're upgrading (e.g. &lt;a href="http://drupal.org/drupal-6.2"&gt;http://drupal.org/drupal-6.2&lt;/a&gt; for Drupal 6.2). Check the release pages of earlier versions if you must upgrade to them first (e.g., upgrading from 4.6 to 6.20--see above).&lt;/li&gt;&lt;li&gt;Other pages of this handbook section.&lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;References:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;    &lt;a href="http://drupal.org/upgrade/backing-up-the-db"&gt;Backup of The Database and Existing Files&lt;/a&gt;&lt;/li&gt;&lt;li&gt;    Screencast: &lt;a href="http://drupal.org/videocasts/upgrading-to-6"&gt;Upgrading from Drupal 5.x to 6.x&lt;/a&gt;&lt;/li&gt;&lt;li&gt;    Screencast: &lt;a href="http://learnbythedrop.com/drop/70"&gt;Drupal Upgrade Tutorial&lt;/a&gt; for upgrading from one version of 6.x to another&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(204, 0, 0);"&gt;UPGRADE DRUPAL 6.9 to 6.14&lt;/span&gt;&lt;br /&gt;~~~~~~~~~~~~~~~~~~~~~~~~&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Let's begin!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;1.  Backup your database and Drupal directory - especially your "&lt;span style="font-weight: bold;"&gt;sites&lt;/span&gt;"&lt;br /&gt;directory which contains your &lt;span style="font-weight: bold;"&gt;configuration file and added modules&lt;/span&gt; and&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;themes&lt;/span&gt;, any contributed or custom modules in your "&lt;span style="font-weight: bold;"&gt;modules&lt;/span&gt;" directory,&lt;br /&gt;&lt;/div&gt;    and your "&lt;span style="font-weight: bold;"&gt;files&lt;/span&gt;" directory which contains uploaded files. If other files&lt;br /&gt;&lt;div style="text-align: justify;"&gt;    have modifications, such as &lt;span style="font-weight: bold;"&gt;.htaccess&lt;/span&gt; or &lt;span style="font-weight: bold;"&gt;robots.txt&lt;/span&gt;, those should be&lt;br /&gt;backed up as well.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;Note: for a single site setup, the configuration file is the "&lt;span style="font-weight: bold;"&gt;settings.php&lt;/span&gt;"&lt;br /&gt;file located at &lt;span style="font-weight: bold;"&gt;sites/default/settings.php&lt;/span&gt;. The &lt;span style="font-weight: bold;"&gt;default.settings.php&lt;/span&gt; file&lt;br /&gt;contains a clean copy for restoration purposes, if required.&lt;br /&gt;&lt;br /&gt;For multisite configurations, the configuration file is located in a&lt;br /&gt;structure like the following:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;sites/default/settings.php&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;      sites/example.com/settings.php&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;      sites/sub.example.com/settings.php&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;      sites/sub.example.com.path/settings.php&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;More information on multisite configuration is located in &lt;span style="font-weight: bold;"&gt;INSTALL.txt&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;2.  If possible, log on as the user with user ID 1, which is the first account&lt;br /&gt;created and the main administrator account. User ID 1 will be able to&lt;br /&gt;automatically access &lt;span style="font-weight: bold;"&gt;update.php&lt;/span&gt; in step #10. There are special instructions&lt;br /&gt;in step #10 if you are unable to log on as user ID 1. Do not close your&lt;br /&gt;browser until the final step is complete.&lt;br /&gt;&lt;br /&gt;3.  Place the site in "&lt;span style="font-weight: bold;"&gt;Off-line&lt;/span&gt;" mode, to let the database updates run without&lt;br /&gt;interruption and avoid displaying errors to end users of the site. This&lt;br /&gt;option is at http://www.example.com/?q=admin/settings/site-maintenance&lt;br /&gt;(replace www.example.com with your installation's domain name and path).&lt;br /&gt;&lt;br /&gt;4.  If using a custom or contributed theme, switch&lt;br /&gt;to a core theme, such as Garland or Bluemarine.&lt;br /&gt;&lt;br /&gt;5.  Disable all custom and contributed modules.&lt;br /&gt;&lt;br /&gt;6.  Remove all old files and directories from the Drupal installation directory.&lt;br /&gt;&lt;br /&gt;7.  Unpack the new files and directories into the Drupal installation directory.&lt;br /&gt;&lt;br /&gt;8.  Copy your backed up "files" and "sites" directories to the Drupal&lt;br /&gt;installation directory. If other system files such as .htaccess or&lt;br /&gt;robots.txt were customized, re-create the modifications in the new&lt;br /&gt;versions of the files using the backups taken in step #1.&lt;br /&gt;&lt;br /&gt;9.  Verify the new configuration file to make sure it has correct information.&lt;br /&gt;&lt;br /&gt;10. Run&lt;span style="font-weight: bold;"&gt; update.php&lt;/span&gt; by visiting &lt;span style="font-weight: bold;"&gt;http://www.example.com/update.php&lt;/span&gt; (&lt;span style="color: rgb(204, 0, 0);"&gt;replace&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;    www.example.com with your Drupal installation's domain name and path&lt;/span&gt;). This&lt;br /&gt;step will update the core database tables to the new Drupal installation.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Note&lt;/span&gt;:&lt;span style="font-weight: bold;"&gt; if you are unable to access update.php do the following:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;      - Open your settings.php with a text editor.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;      - There is a line that says $update_free_access = FALSE;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;        Change it to $update_free_access = TRUE;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;      - Once update.php is done, you must change the settings.php file&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 102, 0);"&gt;        back to its original form with $update_free_access = FALSE;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;11. Ensure that the versions of all custom and contributed modules match the&lt;br /&gt;new Drupal version to which you have updated. For a major update, such as&lt;br /&gt;from 5.x to 6.x, modules from previous versions will not be compatible&lt;br /&gt;and updated versions will be required.&lt;br /&gt;&lt;br /&gt;- For contributed modules, check &lt;a href="http://drupal.org/update/modules"&gt;http://drupal.org/project/modules&lt;/a&gt;&lt;br /&gt; for the version of a module matching your version of Drupal.&lt;br /&gt;&lt;br /&gt;- For custom modules, review &lt;a href="http://drupal.org/update/modules"&gt;http://drupal.org/update/modules&lt;/a&gt; to&lt;br /&gt; ensure that a custom module is compatible with the current version.&lt;br /&gt;&lt;br /&gt;12. Re-enable custom and contributed modules and re-run update.php&lt;br /&gt;to update custom and contributed database tables.&lt;br /&gt;&lt;br /&gt;13. Return the site to its original theme (if you switched to a core&lt;br /&gt;theme like Garland or Bluemarine in step #4). If your site uses a&lt;br /&gt;custom or contributed theme, make sure it is compatible with your&lt;br /&gt;version of Drupal.&lt;br /&gt;&lt;br /&gt;- For contributed themes, check &lt;a href="http://drupal.org/project/themes"&gt;http://drupal.org/project/themes&lt;/a&gt;&lt;br /&gt; for the version of a theme matching your version of Drupal.&lt;br /&gt;&lt;br /&gt;- For custom themes, review &lt;a href="http://drupal.org/update/theme"&gt;http://drupal.org/update/theme&lt;/a&gt; to ensure&lt;br /&gt; that a custom theme is compatible with the current version.&lt;br /&gt;&lt;br /&gt;14. Finally, return your site to "&lt;span style="font-weight: bold;"&gt;Online&lt;/span&gt;" mode so your visitors may resume&lt;br /&gt;browsing. As in step #3, this option is available in your administration&lt;br /&gt;screens at http://www.example.com/?q=admin/settings/site-maintenance&lt;br /&gt;(replace www.example.com with your installation's domain name and path).&lt;br /&gt;&lt;br /&gt;For more information on upgrading visit&lt;br /&gt;the Drupal handbook at &lt;a style="font-weight: bold;" href="http://drupal.org/upgrade"&gt;http://drupal.org/upgrade&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://learnbythedrop.com/sites/all/themes/artistsC01/images/logo_gray.png"&gt;&lt;img style="cursor: pointer; width: 49px; height: 58px;" src="http://learnbythedrop.com/sites/all/themes/artistsC01/images/logo_gray.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;a href="http://learnbythedrop.com/category/upgrade#"&gt; See the tutorial video here.&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-6870316510848936470?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/6870316510848936470/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/12/how-to-patch-drupal.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/6870316510848936470'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/6870316510848936470'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/12/how-to-patch-drupal.html' title='How to patch Drupal 6.x to 6.y?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-512776408761982735</id><published>2009-10-20T17:39:00.000-07:00</published><updated>2009-10-20T17:58:52.333-07:00</updated><title type='text'>Install New Blog Template</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(255, 0, 0);"&gt;&lt;br /&gt;How to install a Template?&lt;/span&gt;&lt;br /&gt;&lt;br /&gt; 1. Download a template and unzipp.&lt;br /&gt; 2. Go to the Layout section in your blog (Dashboard → Layout → Edit HTML ).&lt;br /&gt; 3. Supports your previous template (Download full Template).&lt;br /&gt; 4. Find and upload your template.&lt;br /&gt; 5. Enjoy your new blog design.&lt;br /&gt;&lt;br /&gt;&lt;h4 style="font-weight: bold; color: rgb(255, 0, 0);" id="noinstalar"&gt;Why I can not install templates blogger? Blogger throws an error.&lt;/h4&gt; &lt;p&gt;There are several possible factors that cause an error Bx-xxxx:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;The code is directly copied, and Blogger did not interpret it.&lt;/li&gt;&lt;li&gt;Temporarily not accepting Blogger templates with certain codes or gadgets.&lt;/li&gt;&lt;/ul&gt; &lt;p style="font-weight: bold;"&gt;Possible solutions:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Remove widgets or gadgets that come with the template downloaded.&lt;/li&gt;&lt;li&gt;Clear your browser’s cookies.&lt;/li&gt;&lt;li&gt;Trying to upload the template with a different browser (Opera, Firefox, Chrome, etc).&lt;/li&gt;&lt;li&gt;No copy and paste the code directly, upload the xml file.&lt;/li&gt;&lt;li&gt;Wait 24 hours and try again.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h4 style="color: rgb(255, 0, 0);" id="personalizar"&gt;How do I customize my template?&lt;/h4&gt; &lt;p&gt;For color and the font size, some Blogger templates offer an option to change it from the Dashboard (Dashboard → Layout → Fonts and Colors).&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Major changes in the templates needed to know at least a little CSS and HTML. A quick way to modify a template is change the images in the CSS code. That is the process to change the header of a design, for example.&lt;/p&gt; &lt;p&gt;Additionally, some templates have their own settings instructions and customization, refer to the same download page of your template.&lt;/p&gt;&lt;br /&gt;&lt;h4 style="color: rgb(255, 0, 0);" id="editarmenu"&gt;How can I edit the menu of my template?&lt;/h4&gt; &lt;p&gt;1. Most templates have a menu that can only be changed from the HTML (Dashboard → Layout → Edit HTML). In many cases the code to look for is:&lt;/p&gt; &lt;pre&gt;&lt;code&gt; &lt;/code&gt;&lt;br /&gt;&lt;/pre&gt; &lt;p&gt;There you can change the &lt;em&gt;expr:href=’…’&lt;/em&gt; with your own links: &lt;em&gt;href=’mylink’&lt;/em&gt;. Also see the instructions in your template for more information.&lt;/p&gt; &lt;p&gt;2. Some templates include a gadget to edit the menu directly from the Dashboard (Dashboard → Layout → Page Elements).&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-512776408761982735?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/512776408761982735/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/10/install-new-blog-template.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/512776408761982735'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/512776408761982735'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/10/install-new-blog-template.html' title='Install New Blog Template'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-4938863333767353134</id><published>2009-10-01T19:02:00.000-07:00</published><updated>2009-10-01T19:28:08.425-07:00</updated><title type='text'>PHP: How to Get the Current Page URL</title><content type='html'>If you want to get the current page URL that is shown in the browser URL window, Here is how you can do that:&lt;br /&gt;&lt;br /&gt;Add the following code to a page:&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;function curPageURL()&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;$pageURL = 'http'; &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;if ($_SERVER["HTTPS"] == "on") &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;$pageURL .= "s";&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;$pageURL .= "://"; &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;if ($_SERVER["SERVER_PORT"] != "80") &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER["REQUEST_URI"]; &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;else &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;{ &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;$pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;} &lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;return $pageURL;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;span style="color:#3333ff;"&gt;?&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#000000;"&gt;You can now get the current page URL using the line: &lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;span style="color:#3333ff;"&gt;&lt;span style="color:#000000;"&gt;&lt;span style="color:#3333ff;"&gt;echo curPageURL();&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;Sometimes it is needed to get the page name only. The following example shows how to do it:&lt;br /&gt;{ &lt;br /&gt;&lt;span style="color:#3333ff;"&gt;return substr($_SERVER["SCRIPT_NAME"],strrpos($_SERVER["SCRIPT_NAME"],"/")+1);&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;}&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;echo "The current page name is ".curPageName();?&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.webcheatsheet.com/PHP/get_current_page_url.php"&gt;Reference site&lt;/a&gt;&lt;br /&gt;..&lt;br /&gt;&lt;br /&gt;&lt;span style="color:#3333ff;"&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-4938863333767353134?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/4938863333767353134/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/10/php-how-to-get-current-page-url.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/4938863333767353134'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/4938863333767353134'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/10/php-how-to-get-current-page-url.html' title='PHP: How to Get the Current Page URL'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-2855331864212500252</id><published>2009-07-23T01:00:00.000-07:00</published><updated>2009-07-23T01:11:34.064-07:00</updated><title type='text'>PHP: Past ValueThrough Link</title><content type='html'>php Syntax (Toggle Plain Text)&lt;br /&gt;&lt;br /&gt;   1.     $prop_id = '$_GET[prop_id]';&lt;br /&gt;&lt;br /&gt;   2.     In a href tags &gt;&gt; =\"&lt;span style="font-weight:bold;"&gt;submit_docs.php?prop_id=".$prop_id."\"&lt;/span&gt;  &lt;br /&gt;          Then close the a tag.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-2855331864212500252?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/2855331864212500252/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/07/php-past-valuethrough-link.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2855331864212500252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2855331864212500252'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/07/php-past-valuethrough-link.html' title='PHP: Past ValueThrough Link'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-7687588006935666967</id><published>2009-07-14T00:49:00.000-07:00</published><updated>2009-07-14T01:17:26.393-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='wordpress'/><category scheme='http://www.blogger.com/atom/ns#' term='404 page not found issue'/><category scheme='http://www.blogger.com/atom/ns#' term='migrate server'/><category scheme='http://www.blogger.com/atom/ns#' term='wp-admin cannot appear'/><title type='text'>Wordpress: Move Site To New Server Issue</title><content type='html'>Case 1:&lt;br /&gt;We plan to migrate our local www to outside server .. all related files transfered successfully.. and we decide to seperate between files(www) directory and the database(mysql).. all transfered and dump successfully to their own server.&lt;br /&gt;&lt;br /&gt;After edit the configuration file(wp-config.php).. the main page can display well.. but all the created menu links does not go to the right url. The WordPress address (URL) not change as is the url setting in vhost.&lt;br /&gt;&lt;br /&gt;Problems:&lt;br /&gt;&lt;br /&gt;1.Page wp-admin page cannot appear&lt;br /&gt;2.  WordPress address (URL) not change as is the url setting in vhost.&lt;br /&gt;3. The home page looked fine but all permalinks returned a ‘404 Not Found’ error.&lt;br /&gt;&lt;br /&gt;Solution and action taken:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;For problem no.1 and 2&lt;/span&gt;; the problems come from the General Setting that store in the database. Because of the admin page cannot be open, we need to edit the url setting through mysql wether using command or phpmyadmin...The url edited in table wp-options.&lt;br /&gt;Make sure the grant permission is right. After settle that, the admin page can be appeared and the created menu links corrected to specify new url.. but the no. 3 problem still not solve.&lt;br /&gt;&lt;br /&gt;Solution No. 3:&lt;br /&gt;&lt;h3 id="comments"&gt;WordPress 404 Not Found Problem&lt;/h3&gt;In my case after a move of my site, I checked and double checked and it was NOT the .htaccess problem instead, the new apache httpd.conf had: &lt;p style="font-weight: bold;"&gt;AllowOverride None&lt;/p&gt; &lt;p&gt;I changed it to:&lt;/p&gt; &lt;p style="font-weight: bold;"&gt;AllowOverride All&lt;/p&gt; &lt;p&gt;and did an &lt;span style="font-weight: bold;"&gt;apache stop/start&lt;/span&gt;. Problem solved, and the .htaccess started applying again.&lt;/p&gt;&lt;p&gt;The problem successfully solve!!.. I'm happy now... :)&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;..&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-7687588006935666967?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/7687588006935666967/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/07/wordpress-move-site-to-new-server-issue.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7687588006935666967'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7687588006935666967'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/07/wordpress-move-site-to-new-server-issue.html' title='Wordpress: Move Site To New Server Issue'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-6778042830169528718</id><published>2009-07-09T21:00:00.000-07:00</published><updated>2009-07-09T21:28:04.529-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='multilanguage'/><title type='text'>Drupal: Multilanguage</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Content Translation&lt;/span&gt;&lt;br /&gt;&lt;a href="http://drupal.org/handbook/modules/translation"&gt;http://drupal.org/handbook/modules/translation&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Local: Multilanguage Support&lt;/span&gt;&lt;br /&gt;&lt;a href="http://drupal.org/handbook/modules/locale"&gt;http://drupal.org/handbook/modules/locale&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Translation for Download&lt;/span&gt;&lt;br /&gt;&lt;a href="http://drupal.org/project/Translations"&gt;http://drupal.org/project/Translations&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Localization Server&lt;/span&gt;&lt;br /&gt;&lt;a href="http://drupal.org/project/l10n_server"&gt;http://drupal.org/project/l10n_server&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Internationalization&lt;/span&gt;&lt;br /&gt;&lt;a href="http://drupal.org/project/i18n"&gt;http://drupal.org/project/i18n&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Menu Translation&lt;/span&gt;&lt;br /&gt;&lt;a href="http://drupal.org/project/menutranslation"&gt;http://drupal.org/project/menutranslation&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Active Translation Module&lt;/span&gt;&lt;br /&gt;&lt;a href="http://ftp.drupal.org/files/projects/active_translation-6.x-1.3.tar.gz"&gt;http://ftp.drupal.org/files/projects/active_translation-6.x-1.3.tar.gz&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Consistent Language Interface&lt;br /&gt;&lt;/span&gt;&lt;a href="http://drupal.org/project/languageinterface"&gt;http://drupal.org/project/languageinterface&lt;/a&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;br /&gt;Module&lt;/span&gt;:&lt;br /&gt;&lt;a href="http://ftp.drupal.org/files/projects/languageinterface-6.x-2.1.tar.gz"&gt;http://ftp.drupal.org/files/projects/languageinterface-6.x-2.1.tar.gz&lt;/a&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_BxG6dhw7_cc/SlbDKRckPYI/AAAAAAAAAV0/baRAU2D7sRc/s1600-h/cli-screenshot.jpg"&gt;&lt;br /&gt;&lt;img style="cursor: pointer; width: 155px; height: 103px;" src="http://2.bp.blogspot.com/_BxG6dhw7_cc/SlbDKRckPYI/AAAAAAAAAV0/baRAU2D7sRc/s400/cli-screenshot.jpg" alt="" id="BLOGGER_PHOTO_ID_5356683388053110146" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="text-align: justify;"&gt;This module provides a language switching block that is very similar to that provided by the core locale module, however its behavior differs from the locale block in several ways:&lt;/p&gt; &lt;p style="text-align: justify;"&gt;1. The visibility of language links in the block is consistent and independent from the existence of translations for the page that you are viewing. The logic here is that the user should be able to change the language of the interface at all times. This is important because often there are menus and blocks that are language specific and the user should always be able to find the link back to their language.&lt;/p&gt; &lt;p style="text-align: justify;"&gt;*** For those who would like to have it so that languages which are not translated also do not have language links you should use the Language Icons module in conjunction with the core Locale module. ***&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;br /&gt;&lt;br /&gt;..&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-6778042830169528718?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/6778042830169528718/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/07/drupal-multilanguage.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/6778042830169528718'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/6778042830169528718'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/07/drupal-multilanguage.html' title='Drupal: Multilanguage'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_BxG6dhw7_cc/SlbDKRckPYI/AAAAAAAAAV0/baRAU2D7sRc/s72-c/cli-screenshot.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-3970262258654329869</id><published>2009-06-12T00:06:00.000-07:00</published><updated>2009-06-12T00:24:10.692-07:00</updated><title type='text'>5 Ways to Use Google Docs as a Freelance Web Designer</title><content type='html'>As a freelance web designer, &lt;a style="color: rgb(255, 102, 102); font-weight: bold;" href="http://docs.google.com/"&gt;Google Doc&lt;/a&gt; is an excellent tool to operate my day to day business.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;&lt;h3&gt;Writing Blog Posts&lt;br /&gt;&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: normal;"&gt;If I want to write a new article that I'm unlikely to finish in one sitting, I'll create a new document in Google and get to work.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;h3&gt;Sharing Quotes With Agencies or Other Designers&lt;br /&gt;&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: normal;"&gt;Create a new Google spreadsheet, get all the numbers and line items in there with a total, and then share it via email. They're free to modify it so that I can see the changes, and also to copy and paste the data into their own format. This allows the quoting process to be more collaborative and not so one sided.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;h3&gt;Maintaining an Ongoing List of Projects&lt;br /&gt;&lt;/h3&gt;&lt;div style="text-align: justify;"&gt; &lt;span style="font-weight: normal;font-size:85%;" &gt;I'm current writing a web app to replace this useful task, but a simple spreadsheet nails it pretty well in the meantime. Whenever I create a quote, I'll add that project and it's expected value to a Google spreadsheet that maintains an ongoing history of projects month by month.&lt;/span&gt; &lt;/div&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;This allows me to see a total of potential income for each month, compare it to previous months, and also to see after every month what percentage of potential jobs and payments actually came into fruition. This is helpful in determining how much I need to sell on a month to month basis to maintain a regular income.&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;h3&gt;Personal Budgeting&lt;br /&gt;&lt;/h3&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;This is closely related to the last item. I keep a list of my recurring bills in a Google spreadsheet, with totals that need to be paid from each account. For example, I use my Mastercard to pay for things like hosting, telephones, internet, and other automated payments, so my spreadsheet lets me know a minimum balance I need to maintain. I use my bank account to pay my rent, gas, food and other bills and my spreadsheet gives me an idea of how much I need to live on.&lt;/span&gt;&lt;/p&gt; &lt;p style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;As an added note, I also use &lt;a href="http://wesabe.com/"&gt;Wesabe&lt;/a&gt; to maintain a historical record of my spending on everything by tag. So I can add stuff like lattes, or movies to my Google spreadsheet to get an idea of what I'm likely to be spending the next month!&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;h3&gt;Miscellaneous Spreadsheets&lt;br /&gt;&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: normal;"&gt;Whenever I want to add anything and keep track of it, I create a new Google spreadsheet. It's become invaluable to me! For example, this month I've been planning to launch a creative shared space for tech freelancers in my city (Nanaimo), and I've kept a list of potential expenses, who wants to be involved, how much everyone will pay, and how much is left over.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;/div&gt;&lt;h3&gt;&lt;/h3&gt;&lt;/li&gt;&lt;li&gt;&lt;h3&gt;Wrapping Up&lt;br /&gt;&lt;/h3&gt;&lt;div style="text-align: justify;"&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: normal;"&gt;This is how I use Google docs to run much of my freelance business. Let me know if you have any other clever ideas by commenting below.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/li&gt;&lt;/ol&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: normal;"&gt;&lt;br /&gt;Tips by: shawn@nerdburn.com&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-3970262258654329869?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/3970262258654329869/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/06/5-ways-to-use-google-docs-as-freelance.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3970262258654329869'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3970262258654329869'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/06/5-ways-to-use-google-docs-as-freelance.html' title='5 Ways to Use Google Docs as a Freelance Web Designer'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-3702294402154801829</id><published>2009-06-02T19:32:00.000-07:00</published><updated>2009-06-02T19:40:53.380-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='hide title'/><category scheme='http://www.blogger.com/atom/ns#' term='delete title'/><category scheme='http://www.blogger.com/atom/ns#' term='display title'/><title type='text'>Drupal: How to hide/delete/display Page Title</title><content type='html'>&lt;span style="font-weight: bold;"&gt;First Case:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I need to hide/delete title Announcement .... in list of announcement page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to sites/all/theme/yourtheme/views-view-unformatted.tpl.php&lt;/li&gt;&lt;li&gt;Edit the php script.&lt;/li&gt;&lt;li&gt;Save and refresh the page.&lt;/li&gt;&lt;li&gt;See the changes.&lt;/li&gt;&lt;/ol&gt;*** To change format for announcement also in this file&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Second Case:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I want to remain display page title in any particular page.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;br /&gt;&lt;/span&gt;&lt;ol&gt;&lt;li&gt;Go to sites/all/theme/yourtheme/page.tpl.php&lt;/li&gt;&lt;li&gt;Edit the php script.&lt;/li&gt;&lt;li&gt;Save and refresh the page.&lt;/li&gt;&lt;li&gt;See the changes.&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-3702294402154801829?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/3702294402154801829/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/06/drupal-how-to-hidedeletedisplay-page.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3702294402154801829'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3702294402154801829'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/06/drupal-how-to-hidedeletedisplay-page.html' title='Drupal: How to hide/delete/display Page Title'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-327049008872127715</id><published>2009-06-02T19:14:00.000-07:00</published><updated>2009-06-02T19:30:40.663-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='google analytic'/><title type='text'>Drupal: Where to edit frontpage script</title><content type='html'>&lt;span style="font-weight: bold;"&gt;My case:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I want to add google analytic script in my main page in drupal.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Solution:&lt;/span&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Copy the google analytic script.&lt;/li&gt;&lt;li&gt;Go to sites/all/theme/yourtheme/page-front.tpl.php&lt;/li&gt;&lt;li&gt;Past the script before "close body" tag.&lt;/li&gt;&lt;li&gt;Save and refresh the drupal main page.&lt;/li&gt;&lt;li&gt;Right Click to see view source.&lt;/li&gt;&lt;li&gt;Check that the google analytic script appear in the source page before "close body" tag.&lt;/li&gt;&lt;li&gt;Finish.(Wait after 6 -24 hours to see the report)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-327049008872127715?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/327049008872127715/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/06/drupal-where-to-edit-frontpage-script.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/327049008872127715'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/327049008872127715'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/06/drupal-where-to-edit-frontpage-script.html' title='Drupal: Where to edit frontpage script'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-7010798340135865530</id><published>2009-05-12T17:57:00.000-07:00</published><updated>2009-05-12T19:01:42.819-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='mysqldump'/><title type='text'>Mysql: Dump Database</title><content type='html'>&lt;span style="font-weight: bold;"&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;Mysql Dump Syntax/Command&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;We use mysqldump command to do database backup&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;# mysqldump -uroot -p --databases  filename &gt; backupname.sql&lt;br /&gt;&lt;br /&gt;eg:  mysqldump -uroot -p --databases staff &gt; staff130509.sql&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;Then, to dump back/restore the backup database to server, use this command:&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;#mysql -uroot -p &lt;&lt;/span&gt;&lt;span style="color: rgb(255, 0, 0);"&gt; staff130509.sql&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-7010798340135865530?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/7010798340135865530/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/mysql-dump-database.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7010798340135865530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7010798340135865530'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/mysql-dump-database.html' title='Mysql: Dump Database'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-1381828028208025162</id><published>2009-05-12T17:30:00.000-07:00</published><updated>2009-05-12T17:46:31.283-07:00</updated><title type='text'>Web Service Example</title><content type='html'>This example is use ASP.NET to create a simple Web Service  that converts the temperature from Fahrenheit to Celsius, and vice versa:&lt;br /&gt;&lt;br /&gt;&lt;table class="code" bgcolor="#ffffcc" border="1" cellpadding="1" cellspacing="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td&gt; &lt;%@ WebService Language="VBScript" Class="TempConvert" %&gt;&lt;br /&gt;&lt;br /&gt;Imports System&lt;br /&gt;Imports System.Web.Services&lt;br /&gt;&lt;br /&gt;Public Class TempConvert :Inherits WebService&lt;br /&gt;&lt;br /&gt;&lt;webmethod()&gt; Public Function FahrenheitToCelsius&lt;br /&gt;(ByVal Fahrenheit As String) As String&lt;br /&gt;  dim fahr&lt;br /&gt;  fahr=trim(replace(Fahrenheit,",","."))&lt;br /&gt;  if fahr="" or IsNumeric(fahr)=false then return "Error"&lt;br /&gt;  return ((((fahr) - 32) / 9) * 5)&lt;br /&gt;end function&lt;br /&gt;&lt;br /&gt;&lt;webmethod()&gt; Public Function CelsiusToFahrenheit&lt;br /&gt;(ByVal Celsius As String) As String&lt;br /&gt;  dim cel&lt;br /&gt;  cel=trim(replace(Celsius,",","."))&lt;br /&gt;  if cel="" or IsNumeric(cel)=false then return "Error"&lt;br /&gt;  return ((((cel) * 9) / 5) + 32)&lt;br /&gt;end function&lt;br /&gt;&lt;br /&gt;end class&lt;/webmethod()&gt;&lt;/webmethod()&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;This document is saved as an .asmx file. This is the ASP.NET file extension for XML Web Services.&lt;/p&gt;&lt;h2&gt;&lt;b&gt;&lt;b&gt;Explained about example&lt;/b&gt;&lt;/b&gt;&lt;/h2&gt;The first line in the example states that this is a Web Service, written in VBScript, and has the class name "TempConvert":&lt;br /&gt;&lt;br /&gt;&lt;table class="code" bgcolor="#ffffcc" border="1" cellpadding="0" cellspacing="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td&gt;&lt;%@ WebService Language="VBScript" Class="TempConvert" %&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;The next lines import the namespace "System.Web.Services" from the .NET framework:&lt;br /&gt;&lt;br /&gt;&lt;table class="code" bgcolor="#ffffcc" border="1" cellpadding="0" cellspacing="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Imports System&lt;br /&gt;Imports System.Web.Services&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;p&gt;The next line defines that the "TempConvert" class is a WebService class type:&lt;/p&gt;  &lt;table class="code" bgcolor="#ffffcc" border="1" cellpadding="0" cellspacing="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Public Class TempConvert :Inherits WebService&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;p&gt;The next steps are basic VB programming. This application has two functions. One to convert from Fahrenheit to Celsius, and one to convert from Celsius to Fahrenheit. The only difference from a normal application is that this function is defined as a &lt;span style="color: rgb(204, 0, 0);"&gt;"WebMethod()"&lt;/span&gt;.  &lt;/p&gt;Use &lt;span style="color: rgb(204, 0, 0);"&gt;"WebMethod()"&lt;/span&gt; to convert the functions in your application into web services:&lt;br /&gt;&lt;br /&gt;&lt;table class="code" bgcolor="#ffffcc" border="1" cellpadding="0" cellspacing="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td&gt; &lt;webmethod()&gt; Public Function FahrenheitToCelsius&lt;br /&gt;(ByVal Fahrenheit As String) As String&lt;br /&gt;    dim fahr&lt;br /&gt;    fahr=trim(replace(Fahrenheit,",","."))&lt;br /&gt;    if fahr="" or IsNumeric(fahr)=false then return "Error"&lt;br /&gt;    return ((((fahr) - 32) / 9) * 5)&lt;br /&gt;end function&lt;br /&gt;&lt;br /&gt;&lt;webmethod()&gt; Public Function CelsiusToFahrenheit&lt;br /&gt;(ByVal Celsius As String) As String&lt;br /&gt;    dim cel&lt;br /&gt;    cel=trim(replace(Celsius,",","."))&lt;br /&gt;    if cel="" or IsNumeric(cel)=false then return "Error"&lt;br /&gt;    return ((((cel) * 9) / 5) + 32)&lt;br /&gt;end function&lt;/webmethod()&gt;&lt;/webmethod()&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;p&gt;Then, end the class:&lt;br /&gt;&lt;/p&gt;&lt;table class="code" bgcolor="#ffffcc" border="1" cellpadding="0" cellspacing="0" width="100%"&gt; &lt;tbody&gt;&lt;tr&gt;&lt;td&gt;end class&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;  &lt;p&gt;**Publish the .asmx file on a server with .NET support, and you will have your first working Web Service.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://www.w3schools.com/webservices/ws_use.asp"&gt;Learn more How To Use Web Service at http://www.w3schools.com/webservices/ws_use.asp&lt;br /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-1381828028208025162?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/1381828028208025162/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/web-service-example.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1381828028208025162'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1381828028208025162'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/web-service-example.html' title='Web Service Example'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-2977856245898220142</id><published>2009-05-12T17:19:00.000-07:00</published><updated>2009-05-12T17:25:47.120-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='soap'/><category scheme='http://www.blogger.com/atom/ns#' term='xml'/><title type='text'>Learn SOAP Now!</title><content type='html'>&lt;p&gt;Before study SOAP, I should have a basic understanding of XML and XML Namespaces.&lt;/p&gt; &lt;p&gt;I need to study these subjects first from &lt;a href="http://www.w3schools.com/xml/default.asp"&gt;XML Tutorial&lt;/a&gt;.&lt;/p&gt;&lt;h2&gt;&lt;br /&gt;What is SOAP?&lt;/h2&gt; &lt;ul&gt;&lt;li&gt;SOAP stands for &lt;span style="color: rgb(255, 0, 0);"&gt;Simple Object Access Protocol&lt;/span&gt;&lt;/li&gt;&lt;li&gt;SOAP is a communication protocol&lt;/li&gt;&lt;li&gt;SOAP is for communication between applications&lt;/li&gt;&lt;li&gt;SOAP is a format for sending messages&lt;/li&gt;&lt;li&gt;SOAP communicates via Internet&lt;/li&gt;&lt;li&gt;SOAP is platform independent&lt;/li&gt;&lt;li&gt;SOAP is language independent&lt;/li&gt;&lt;li&gt;SOAP is based on XML&lt;/li&gt;&lt;li&gt;SOAP is simple and extensible&lt;/li&gt;&lt;li&gt;SOAP allows you to get around firewalls&lt;/li&gt;&lt;li&gt;SOAP is a W3C recommendation&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;Why SOAP?&lt;/h2&gt;Today's applications communicate using Remote Procedure Calls (RPC) between objects like DCOM and CORBA, but HTTP was not designed for this.  RPC represents a compatibility  and security problem; firewalls and proxy servers will normally block this kind of traffic. &lt;p&gt; A better way to communicate between applications is over HTTP, because HTTP is supported by all Internet browsers and servers. &lt;span style="color: rgb(204, 0, 0);"&gt;SOAP was created to accomplish this&lt;/span&gt;.&lt;/p&gt; &lt;p&gt; SOAP provides a way to communicate between applications running on different operating systems, with different technologies and programming languages.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;a href="http://www.w3schools.com/soap/soap_intro.asp"&gt;Read more from http://www.w3schools.com&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;ul&gt;&lt;li&gt;&lt;a class="left" target="_top" href="http://www.w3schools.com/soap/soap_syntax.asp" style="font-weight: bold;"&gt;SOAP Syntax&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class="left" target="_top" href="http://www.w3schools.com/soap/soap_envelope.asp"&gt;SOAP Envelope&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class="left" target="_top" href="http://www.w3schools.com/soap/soap_header.asp"&gt;SOAP Header&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class="left" target="_top" href="http://www.w3schools.com/soap/soap_body.asp"&gt;SOAP Body&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class="left" target="_top" href="http://www.w3schools.com/soap/soap_fault.asp"&gt;SOAP Fault&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class="left" target="_top" href="http://www.w3schools.com/soap/soap_httpbinding.asp"&gt;SOAP HTTP Binding&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class="left" target="_top" href="http://www.w3schools.com/soap/soap_example.asp"&gt;SOAP Example&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;&lt;a class="left" target="_top" href="http://www.w3schools.com/soap/soap_summary.asp"&gt;SOAP Summary&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-2977856245898220142?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/2977856245898220142/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/learn-soap-now.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2977856245898220142'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2977856245898220142'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/learn-soap-now.html' title='Learn SOAP Now!'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-4795323785156735808</id><published>2009-05-12T17:06:00.000-07:00</published><updated>2009-05-12T17:16:17.611-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='uddi'/><category scheme='http://www.blogger.com/atom/ns#' term='soap'/><category scheme='http://www.blogger.com/atom/ns#' term='web service'/><category scheme='http://www.blogger.com/atom/ns#' term='wsdl'/><title type='text'>Web Service</title><content type='html'>&lt;h2&gt;What are Web Services?&lt;/h2&gt;  &lt;ul&gt;&lt;li&gt;Web services are application components&lt;/li&gt;&lt;li&gt;Web services communicate using open protocols&lt;/li&gt;&lt;li&gt;Web services are self-contained and self-describing&lt;/li&gt;&lt;li&gt;Web services can be discovered using UDDI&lt;/li&gt;&lt;li&gt;Web services can be used by other applications&lt;/li&gt;&lt;li&gt;XML is the basis for Web services&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h2&gt;How Does it Work?&lt;/h2&gt;  &lt;p&gt;The basic Web services platform is XML + HTTP.&lt;/p&gt;  &lt;p&gt;XML provides a language which can be used between different platforms and  programming languages and still express complex messages and functions.&lt;/p&gt;  &lt;p&gt;The HTTP protocol is the most used Internet protocol.&lt;/p&gt;  &lt;p&gt;Web services platform elements:&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.w3schools.com/soap/default.asp"&gt;&lt;span style="font-weight: bold;"&gt;SOAP&lt;/span&gt;&lt;/a&gt; (Simple Object Access Protocol)&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.microsoft.com/windowsserver2003/technologies/idm/uddi/default.mspx"&gt;&lt;span style="font-weight: bold;"&gt;UDDI&lt;/span&gt;&lt;/a&gt; (Universal Description, Discovery and Integration)&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.w3schools.com/wsdl/wsdl_intro.asp"&gt;&lt;span style="font-weight: bold;"&gt;WSDL&lt;/span&gt;&lt;/a&gt; (Web Services Description Language)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;h2&gt;Web Services take Web-applications to the Next Level&lt;/h2&gt;  &lt;p&gt;By using Web services, your application can publish its function or message to  the rest of the world.&lt;/p&gt;  &lt;p&gt;Web services use XML to code and to decode data, and SOAP to transport it  (using open protocols).&lt;/p&gt;&lt;br /&gt;&lt;h2&gt;Two Types of Uses&lt;/h2&gt;  &lt;p&gt;&lt;b&gt;Reusable application-components.&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;There are things applications need very often.  So why make these over and over again? &lt;/p&gt;  &lt;p&gt;Web services can offer application-components like: currency conversion,  weather reports, or even language translation as services. &lt;/p&gt;  &lt;p&gt;&lt;b&gt;Connect existing software.&lt;/b&gt;&lt;/p&gt; &lt;p&gt;Web services can help to solve the interoperability problem  by giving different applications a way to link their data. &lt;/p&gt;  &lt;p&gt;With Web services you can exchange data between different applications and  different platforms.&lt;/p&gt;&lt;p&gt;Learn more Web Service tutorial from &lt;a href="http://www.w3schools.com/default.asp"&gt;http://www.w3schools.com/default.asp&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-4795323785156735808?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/4795323785156735808/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/web-service.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/4795323785156735808'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/4795323785156735808'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/web-service.html' title='Web Service'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-669860945257664611</id><published>2009-05-10T23:47:00.000-07:00</published><updated>2009-05-11T20:20:25.397-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='MS Word'/><category scheme='http://www.blogger.com/atom/ns#' term='cut'/><category scheme='http://www.blogger.com/atom/ns#' term='copy'/><category scheme='http://www.blogger.com/atom/ns#' term='option'/><category scheme='http://www.blogger.com/atom/ns#' term='paste'/><title type='text'>MS Word: Where to edit cut,copy and paste option</title><content type='html'>This case only for MS Word 2007&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to&lt;span style="font-weight: bold;"&gt; Office button&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_BxG6dhw7_cc/SgfOpGCS1CI/AAAAAAAAAOc/8hrlvNiwWp4/s1600-h/office07install09.jpg"&gt;&lt;img style="cursor: pointer; width: 92px; height: 89px;" src="http://4.bp.blogspot.com/_BxG6dhw7_cc/SgfOpGCS1CI/AAAAAAAAAOc/8hrlvNiwWp4/s200/office07install09.jpg" alt="" id="BLOGGER_PHOTO_ID_5334459489033835554" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt; Click on &lt;span style="font-weight: bold;"&gt;Word Option&lt;br /&gt;&lt;/span&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_BxG6dhw7_cc/SgfO9Wh1zAI/AAAAAAAAAOk/huOcEuAic5U/s1600-h/a_office-button.jpg"&gt;&lt;img style="cursor: pointer; width: 165px; height: 200px;" src="http://4.bp.blogspot.com/_BxG6dhw7_cc/SgfO9Wh1zAI/AAAAAAAAAOk/huOcEuAic5U/s200/a_office-button.jpg" alt="" id="BLOGGER_PHOTO_ID_5334459837058501634" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Click &lt;span style="font-weight: bold;"&gt;Advanced&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Go to &lt;span style="font-weight: bold;"&gt;cut, copy and paste section&lt;/span&gt;..&lt;/li&gt;&lt;li&gt;Setting what you want&lt;/li&gt;&lt;li&gt;Click &lt;span style="font-weight: bold;"&gt;Ok&lt;/span&gt;. Done.&lt;/li&gt;&lt;/ol&gt;***If the setting is not working, try to restart your pc first, then try copy and paste.&lt;br /&gt;      It should be ok.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-669860945257664611?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/669860945257664611/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/ms-word-where-to-edit-cutcopy-and-paste.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/669860945257664611'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/669860945257664611'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/ms-word-where-to-edit-cutcopy-and-paste.html' title='MS Word: Where to edit cut,copy and paste option'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_BxG6dhw7_cc/SgfOpGCS1CI/AAAAAAAAAOc/8hrlvNiwWp4/s72-c/office07install09.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-2599568490530273197</id><published>2009-05-10T18:31:00.000-07:00</published><updated>2009-05-10T19:15:11.832-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='test site in localhost'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><title type='text'>How to setup Drupal site in localhost?</title><content type='html'>&lt;h3&gt;Creating a test site on a local computer&lt;/h3&gt; &lt;p style="text-align: justify;"&gt;It is considered a good practice to do all development work on a separate test site before making changes to a production site. A test site allows you to evaluate the impact of upgrades, new modules, modifications to themes etc. without causing disruption to your live site. For information about setting up a web server on a local computer, see the &lt;a title="" href="http://drupal.org/node/157602"&gt;Local Server Setup&lt;/a&gt; section of the &lt;a title="" href="http://drupal.org/contributors-guide"&gt;Developing for Drupal&lt;/a&gt; guide.&lt;/p&gt;&lt;ol&gt;&lt;li&gt;Download &lt;a href="http://drupal.org/"&gt;&lt;span style="font-weight: bold;"&gt;Drupal&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;&lt;p&gt;Drupal files, and associated modules, are compressed in the &lt;code&gt;.tar.gz&lt;/code&gt; format and can be extracted using most compression tools.&lt;/p&gt; &lt;p&gt;On a typical Unix command line, use:&lt;br /&gt;&lt;code style="color: rgb(153, 0, 0);"&gt;wget http://drupal.org/files/projects/drupal-x.x.tar.gz&lt;/code&gt;&lt;br /&gt;&lt;code style="color: rgb(153, 0, 0);"&gt;tar -zxvpf drupal-x.x.tar.gz&lt;/code&gt;&lt;/p&gt; &lt;p&gt;This will create a new directory drupal-x.x/ containing all Drupal files and directories and will preserve all of Drupal's file and directory permissions. Move the contents of that directory into a directory within your web server's document root or your public HTML directory.&lt;/p&gt; &lt;p style="color: rgb(153, 0, 0);"&gt;&lt;code&gt;mv drupal-x.x/* drupal-x.x/.htaccess /var/www/html&lt;/code&gt;&lt;/p&gt; &lt;p&gt;The base URL for your Drupal installation will be set in your Web server's configuration file. You will need to know this URL before proceeding to the next step of the installation. If you are installing Drupal on your local machine the base URL may be: &lt;a href="http://localhost/" title="http://localhost"&gt;http://localhost&lt;/a&gt;. If you are installing Drupal onto a Web server your base URL may be a specific domain name (such as &lt;a href="http://example.com/" title="http://example.com"&gt;http://example.com&lt;/a&gt;).&lt;/p&gt;&lt;strong&gt;Note for Windows users&lt;/strong&gt;&lt;br /&gt;A number of compression programs, such as &lt;a href="http://www.7-zip.org/"&gt;7-Zip&lt;/a&gt;, allow you to extract &lt;code&gt;.tar.gz&lt;/code&gt; files. To use 7-Zip, right-click on the .tar.gz file and, in the menu that appears, select 7-Zip -&gt; Extract Here. A .tar file will appear. Right-click on the .tar file and again select 7-Zip -&gt; Extract Here. In a few moments, the final Drupal folder will appear.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li style="font-weight: bold; color: rgb(51, 51, 255);"&gt;Grant write permissions on the configuration file&lt;br /&gt;&lt;p style="font-weight: normal; color: rgb(0, 0, 0);"&gt;Your Drupal download comes with a default configuration file at &lt;code style="color: rgb(204, 0, 0);"&gt;drupal/sites/default/default.settings.php&lt;/code&gt; which needs to be prepared so that the installer can edit it.&lt;br /&gt;&lt;/p&gt;&lt;ul style="font-weight: normal; color: rgb(0, 0, 0);"&gt;&lt;li&gt;Copy the &lt;code style="color: rgb(204, 0, 0);"&gt;default.settings.php&lt;/code&gt; to &lt;code style="color: rgb(204, 0, 0);"&gt;settings.php&lt;/code&gt;.  You can do this from the command line using &lt;code style="color: rgb(204, 0, 0);"&gt;cp default.settings.php settings.php&lt;/code&gt;&lt;span style="color: rgb(204, 0, 0);"&gt;.&lt;br /&gt;&lt;/span&gt;&lt;strong&gt;NOTE:&lt;/strong&gt; Do not simply rename the file. The Drupal installer will need both files.&lt;/li&gt;&lt;li&gt;You should now have both a &lt;span style="font-weight: bold;"&gt;default.settings.php&lt;/span&gt; and &lt;span style="font-weight: bold;"&gt;settings.php&lt;/span&gt; file in your &lt;code style="color: rgb(204, 0, 0);"&gt;drupal/sites/default&lt;/code&gt; directory.&lt;/li&gt;&lt;li&gt;Make the settings file writeable, so that the installer can edit it&lt;br /&gt;&lt;code style="color: rgb(204, 0, 0);"&gt;chmod a+w sites/default/settings.php&lt;/code&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt; or&lt;/span&gt;&lt;br /&gt;&lt;code style="color: rgb(204, 0, 0);"&gt;chmod 666 sites/default/settings.php&lt;/code&gt;&lt;br /&gt;Both commands have the same effect.&lt;br /&gt;Several FTP tools like Filezilla, Transmit, and Fetch allow you to change file permissions, using a 'file attribute' or 'get info' command. In this case the octal or numeric value file permission should be set to 666.&lt;/li&gt;&lt;li&gt;Drupal should set the file permissions back to read-only once the installation is done. You should make sure this is the case and manually change it yourself if it didn't happen. You can use the same command, slightly modified, to remove write permission:&lt;br /&gt;&lt;code style="color: rgb(204, 0, 0);"&gt;chmod a-w sites/default/settings.php&lt;/code&gt;&lt;br /&gt;&lt;span style="color: rgb(204, 0, 0);"&gt; or&lt;/span&gt;&lt;br /&gt;&lt;code style="color: rgb(204, 0, 0);"&gt;chmod 555 sites/default/settings.php&lt;/code&gt;.&lt;br /&gt;If you are using a FTP tool the permission should be set to 555.&lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;/ol&gt;&lt;ul&gt;&lt;li&gt;&lt;strong&gt;Windows note&lt;/strong&gt;&lt;br /&gt;On a Windows system this would be Change permission and make sure the file is &lt;em&gt;not&lt;/em&gt; marked Read Only before running the installer and then set it back to Read Only after. For more information about modifying Windows file permissions, see the &lt;a href="http://drupal.org/node/202491"&gt;Troubleshooting FAQ&lt;br /&gt;&lt;br /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;h3 class="title"&gt;Create database&lt;/h3&gt;&lt;ul&gt;&lt;li&gt;&lt;h3 class="title"&gt;Create database with MySQL&lt;/h3&gt; &lt;p&gt;This step is only necessary if you don't already have a database set-up&lt;br /&gt;(e.g. By your host). In the following examples, 'username' is an example MySQL user which has the CREATE and GRANT privileges. Use the appropriate user name for your system.&lt;/p&gt; &lt;p&gt;&lt;span style="font-weight: bold;"&gt;First&lt;/span&gt;, you must create a new database for your Drupal site here, 'databasename' is the name of the new database):&lt;/p&gt; &lt;p style="color: rgb(204, 0, 0);"&gt;&lt;strong class="command"&gt;mysqladmin -u username -p create databasename&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Next you must login and set the access database rights:&lt;/p&gt; &lt;p style="color: rgb(204, 0, 0);"&gt;&lt;strong class="command"&gt;mysql -u username -p&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;You will be asked for the 'username' database password. At the MySQL prompt, enter following command:&lt;/p&gt; &lt;p style="color: rgb(204, 0, 0);"&gt;GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER ON databasename.* TO 'username'@'localhost' IDENTIFIED BY 'password';&lt;/p&gt; &lt;p style="color: rgb(204, 0, 0);"&gt;where&lt;/p&gt; &lt;table class="simplelist" summary="Simple list" border="0"&gt; &lt;tbody&gt;&lt;tr style="color: rgb(204, 0, 0);"&gt; &lt;td&gt;'databasename' is the name of your database&lt;/td&gt; &lt;/tr&gt; &lt;tr style="color: rgb(204, 0, 0);"&gt; &lt;td&gt;'username@localhost' is the username of your MySQL account&lt;/td&gt; &lt;/tr&gt; &lt;tr style="color: rgb(204, 0, 0);"&gt; &lt;td&gt;'password' is the password required for that username&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong class="command"&gt;FLUSH PRIVILEGES;&lt;/strong&gt;&lt;/p&gt; the database should be created with &lt;span style="font-weight: bold;"&gt;UTF-8 (Unicode)&lt;/span&gt; encoding&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold;"&gt;Run The Installation Script&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;p&gt;To run the install script point your browser to the base URL of your website.&lt;/p&gt; &lt;p&gt;The base URL is defined in your Web server configuration file and is specific to the document root where you placed your Drupal files. If you have installed Drupal on your desktop machine this URL might be &lt;a href="http://localhost/" title="http://localhost"&gt;http://localhost&lt;/a&gt;.&lt;/p&gt; &lt;p&gt;&lt;img src="http://drupal.org/files/01-choose_language_sm.jpg" /&gt;&lt;/p&gt; &lt;p&gt;You will be guided through several screens to set up the database, create tables,&lt;/p&gt; &lt;p&gt;&lt;img src="http://drupal.org/files/02-database-configuration_sm.jpg" /&gt;&lt;/p&gt; &lt;p&gt;add the first user account and provide basic web site settings.&lt;/p&gt; &lt;p&gt;&lt;img src="http://drupal.org/files/03-configure_site_sm.jpg" /&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-2599568490530273197?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/2599568490530273197/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/how-to-setup-drupal-site-in-localhost.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2599568490530273197'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2599568490530273197'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/how-to-setup-drupal-site-in-localhost.html' title='How to setup Drupal site in localhost?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-5328852931848481405</id><published>2009-05-10T17:51:00.000-07:00</published><updated>2009-05-10T18:31:23.605-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='System Requirements'/><title type='text'>Drupal Installation: System Requirements</title><content type='html'>&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;System Requirements&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;span style="font-weight: bold;"&gt;&lt;u&gt;Webserver&lt;/u&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;Apache (Recommended)&lt;/span&gt; &lt;/p&gt; &lt;ul&gt;&lt;li&gt;Drupal will work on Apache 1.3 or Apache 2.x hosted on UNIX/Linux, OS X, or Windows. The majority of Drupal development and deployment is done on Apache so there is more community experience and testing performed.&lt;/li&gt;&lt;li&gt;You can use the Apache 'mod_rewrite' extension to allow for clean URLs.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a style="font-weight: bold;" name="php" href="http://www.php.net/"&gt;&lt;u&gt;PHP&lt;/u&gt;&lt;/a&gt; &lt;p&gt;Recommended: &lt;span style="font-weight: bold;"&gt;PHP 5.2&lt;/span&gt; or higher&lt;br /&gt;Required: &lt;span style="font-weight: bold;"&gt;PHP version 4.3.5 or higher&lt;/span&gt;&lt;/p&gt; &lt;ul&gt;&lt;li&gt;PHP 5.2 or higher will be a &lt;a href="http://gophp5.org/"&gt;requirement&lt;/a&gt; for Drupal 7.&lt;/li&gt;&lt;li&gt;PHP memory requirements can vary significantly depending on your use of modules. While 16 MB may be sufficient for a default Drupal 6 installation, a production site with a number of commonly used modules enabled (CCK, Views etc.) could require 64 MB and some installations may require much more, especially with media-rich implementations. If you are using a hosting service it is important to verify that your host can provide sufficient memory for the set of modules you are deploying or may deploy in the future. (See the &lt;a href="http://drupal.org/node/207036"&gt;Increase PHP memory limit&lt;/a&gt; page in the &lt;em&gt;Troubleshooting FAQ&lt;/em&gt; for additional information on modifying the PHP memory limit.)&lt;/li&gt;&lt;li&gt;The PHP extension for connecting to your chosen database must be installed and enabled. Drupal's currently supported database connectors are: &lt;a href="http://www.php.net/manual/en/ref.mysql.php"&gt;mysql&lt;/a&gt; (the original MySQL extension), &lt;a href="http://www.php.net/manual/en/mysqli.summary.php"&gt;mysqli&lt;/a&gt; (an improved connector for newer MySQL installations), and &lt;a href="http://www.php.net/manual/en/ref.pgsql.php"&gt;pgsql&lt;/a&gt; (for PostgreSQL). Note: PHP 5.x no longer enables the mysql extension by default. Please read the links above for installing and enabling your chosen connector. Additionally, Drupal 6.x does not provide the option to select the mysql connector if mysqli is enabled in your PHP configuration.&lt;/li&gt;&lt;li&gt;PHP &lt;a href="http://www.php.net/manual/en/ref.xml.php"&gt;XML extension&lt;/a&gt; (for blogapi, drupal, and ping modules). This extension is &lt;a href="http://www.php.net/manual/en/ref.xml.php#xml.installation"&gt;enabled by default&lt;/a&gt; in a standard PHP installation; the Windows version of PHP has built-in support for this extension.&lt;/li&gt;&lt;li&gt;An image library for PHP such as the &lt;a href="http://www.php.net/gd"&gt;GD library&lt;/a&gt; is needed for image manipulation (resizing user pictures, image and imagecache modules). GD is included with PHP 4.3 and higher and enabled by default. &lt;a href="http://www.imagemagick.org/script/index.php"&gt;ImageMagick&lt;/a&gt; is also supported for basic image manipulations in Drupal core but there is much less support from contribute modules.&lt;/li&gt;&lt;li&gt;PHP &lt;em&gt;needs&lt;/em&gt; the following &lt;a name="php_configuration" href="http://www.php.net/manual/en/configuration.php"&gt;configuration&lt;/a&gt; &lt;a href="http://www.php.net/manual/en/configuration.directives.php"&gt;directives&lt;/a&gt; for Drupal to work (only directives that differ from the default &lt;a href="http://cvs.php.net/php-src/php.ini-dist"&gt;php.ini-dist&lt;/a&gt; / &lt;a href="http://cvs.php.net/php-src/php.ini-recommended"&gt;php.ini-recommended&lt;/a&gt;): &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.php.net/manual/en/security.globals.php"&gt;register_globals&lt;/a&gt;: off; this is the default value, but some hosts have it enabled&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.php.net/manual/en/ref.session.php#ini.session.save-handler"&gt;session.save_handler&lt;/a&gt;: user&lt;/li&gt;&lt;li&gt;error_reporting set to E_ALL &amp;amp; ~E_NOTICE. Work is ongoing to change this to E_ALL for Drupal 6.&lt;/li&gt;&lt;li&gt;&lt;a href="http://ca3.php.net/manual/en/features.safe-mode.php"&gt;safe_mode&lt;/a&gt;: off. Safe mode may interfere with file and image uploads.&lt;/li&gt;&lt;li&gt;In addition, we &lt;em&gt;recommend&lt;/em&gt; the following setting: &lt;a href="http://www.php.net/manual/en/function.session-cache-limiter.php#22443"&gt;session.cache_limiter&lt;/a&gt;: nocache&lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li id="htaccess"&gt;Some of these settings are contained in the default .htaccess file that ships with Drupal, so you shouldn't need to set them explicitly. Note, however, that setting PHP configuration options from .htaccess only works under the following conditions: &lt;ul&gt;&lt;li&gt;With Apache (or a compatible web server)&lt;/li&gt;&lt;li&gt;If the .htaccess file is actually read, i.e. AllowOverride is not None&lt;/li&gt;&lt;li&gt;If PHP is installed as an Apache module&lt;/li&gt;&lt;/ul&gt; &lt;/li&gt;&lt;li&gt;See the &lt;a href="http://www.php.net/manual/en/configuration.changes.php#configuration.changes.other"&gt;PHP manual&lt;/a&gt; for how to change configuration settings for other interfaces to PHP.&lt;/li&gt;&lt;li&gt;In some shared hosting environments, access to these settings is restricted. If you cannot make these changes yourself, please ask your hosting provider to adjust them for you.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Database&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;p&gt;Recommended: &lt;a href="http://www.mysql.com/"&gt;MySQL&lt;/a&gt; 4.1 or MySQL 5.0&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Drupal 6 supports MySQL 4.1 or higher.&lt;/li&gt;&lt;li&gt;Drupal 5.x and earlier supports MySQL &lt;a href="http://downloads.mysql.com/archives.php?p=mysql-3.23"&gt;3.23.17&lt;/a&gt; or higher. MySQL 4.1 or higher is strongly recommended. &lt;/li&gt;&lt;li&gt;Drupal 7 will only support MySQL 5.0 or higher.&lt;/li&gt;&lt;li&gt; &lt;p&gt;&lt;strong&gt;NOTE: &lt;/strong&gt;Drupal makes use of some features not available on some inexpensive hosting plans so please check that your host allows database accounts with the following rights:&lt;br /&gt;SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER.&lt;br /&gt;These rights are sufficient to run Drupal core 6.x.&lt;/p&gt; &lt;p&gt;Some contributed modules, and also Drupal core 5.x, additionally require the following rights:&lt;br /&gt;&lt;strong&gt;CREATE TEMPORARY TABLES&lt;/strong&gt;, &lt;strong&gt;LOCK TABLES&lt;/strong&gt;.&lt;/p&gt; &lt;/li&gt;&lt;li&gt;&lt;strong&gt;Note:&lt;/strong&gt; If your system/host is running MySQL 4.1 or newer and you receive the error "Client does not support authentication protocol requested by server", address the problem by following the &lt;a href="http://dev.mysql.com/doc/refman/4.1/en/old-client.html"&gt;instructions&lt;/a&gt; provided by MySQL AB. There is a minor OS issue with some &lt;a href="http://drupal.org/node/43316"&gt;MySQL 5+ installations&lt;/a&gt; primarily on Windows but affecting some versions of Unix/Linux as well.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Note:&lt;/strong&gt;When using Drupal 5.x or later, particularly with contributed modules, it may be necessary to set the system variable max_allowed_packet to at least 16M. Some inexpensive hosting plans set this value too low (the MySQL default is only 1M). In that case, you may need to choose a better hosting plan. A value of 1M may be sufficient for 5.x.&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-5328852931848481405?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/5328852931848481405/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-installation-system-requirements.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5328852931848481405'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5328852931848481405'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-installation-system-requirements.html' title='Drupal Installation: System Requirements'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-3728847693668245992</id><published>2009-05-07T20:31:00.000-07:00</published><updated>2009-05-10T18:39:23.651-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='redirect page'/><title type='text'>Drupal: Issue: Redirect page in Drupal</title><content type='html'>In my case I need to redirect from default main page to cas authentication page outsite server.&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Go to  &lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;Home&gt; Administer&gt; User Management&gt; Cas Setting&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Go to  &lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;Redirection Setting&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Edit at&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="form-item"&gt;  &lt;label&gt;Require CAS login for: &lt;/label&gt;  &lt;div class="form-radios"&gt;&lt;div class="form-item" id="edit-cas-access-0-wrapper"&gt;  &lt;label class="option"&gt;&lt;input id="edit-cas-access-0" name="cas_access" value="0" checked="checked" class="form-radio" type="radio"&gt; specific pages&lt;/label&gt; &lt;/div&gt; &lt;div class="form-item" id="edit-cas-access-1-wrapper"&gt;  &lt;label class="option"&gt;&lt;input id="edit-cas-access-1" name="cas_access" value="1" class="form-radio" type="radio"&gt; all pages except specific pages&lt;br /&gt;&lt;br /&gt;&lt;/label&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt;&lt;div class="form-item" id="edit-cas-pages-wrapper"&gt;  &lt;label for="edit-cas-pages"&gt;Specific pages: &lt;/label&gt;  &lt;div class="resizable-textarea"&gt;&lt;span&gt;&lt;textarea cols="40" rows="5" name="cas_pages" id="edit-cas-pages" class="form-textarea resizable textarea-processed"&gt;&lt;front&gt;&lt;/textarea&gt;&lt;/span&gt;&lt;/div&gt;  &lt;div class="description"&gt;Enter one page per line as Drupal paths. The '*' character is a wildcard. Example paths are '&lt;em&gt;blog&lt;/em&gt;' for the blog page and '&lt;em&gt;blog/*&lt;/em&gt;' for every personal blog. '&lt;em&gt;&lt;front&gt;&lt;/front&gt;&lt;/em&gt;' is the front page.&lt;br /&gt;&lt;br /&gt;&lt;div class="form-item" id="edit-cas-login-message-wrapper"&gt;  &lt;label for="edit-cas-login-message"&gt;Successful login message: &lt;/label&gt;  &lt;input maxlength="128" name="cas_login_message" id="edit-cas-login-message" size="60" value="Logged in via CAS as %cas_username." class="form-text" type="text"&gt;  &lt;div class="description"&gt;The message displayed to a user when he successfully logs in via CAS. You may specify '%cas_username', the username of the user.&lt;/div&gt; &lt;/div&gt;&lt;div class="form-item" id="edit-cas-logout-redirect-wrapper"&gt;  &lt;label class="option"&gt;&lt;input name="cas_logout_redirect" id="edit-cas-logout-redirect" value="1" checked="checked" class="form-checkbox" type="checkbox"&gt; Redirect user on logout&lt;br /&gt;&lt;br /&gt;&lt;/label&gt;  &lt;div class="description"&gt;Activate this option if you want a user to be directed to the following page after logging out of CAS. The logout destination must be specified below.&lt;/div&gt; &lt;/div&gt;&lt;div class="form-item" id="edit-cas-logout-destination-wrapper"&gt;  &lt;label for="edit-cas-logout-destination"&gt;Logout destination: &lt;/label&gt;  &lt;input maxlength="55" name="cas_logout_destination" id="edit-cas-logout-destination" size="30" value="Your destination url " class="form-text" type="text"&gt;  &lt;div class="description"&gt;URL. An example URL is '&lt;em&gt;http://www.example.com&lt;/em&gt;'.&lt;/div&gt; &lt;/div&gt;&lt;br /&gt;&lt;/div&gt; &lt;/div&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;** &lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;In the website, remain link to the &lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;default &lt;/span&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;portal  url .&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Refresh and test the changes. The link to the portal will redirect to cas login page.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Done.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-3728847693668245992?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/3728847693668245992/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-issue-redirect-page-in-drupal.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3728847693668245992'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3728847693668245992'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-issue-redirect-page-in-drupal.html' title='Drupal: Issue: Redirect page in Drupal'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-7527599682984812934</id><published>2009-05-07T18:31:00.000-07:00</published><updated>2009-05-07T18:39:18.323-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='change gravatar'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='upload gravatar'/><title type='text'>Drupal: How to upload/ change admin/user gravatar icon</title><content type='html'>&lt;ol&gt;&lt;li&gt;First you must prepare your new gravatar icon.&lt;br /&gt;(&lt;em&gt;48x48 pixel&lt;/em&gt; and the maximum size is &lt;em&gt;30&lt;/em&gt; kB)&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Go to  Home&gt; Administer&gt; User Management &gt; Users&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Find user that you want to edit. Click Edit.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Delete current picture &amp;amp; Upload new picture.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Save changes.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Refresh the page and see the changes.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-7527599682984812934?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/7527599682984812934/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-how-to-upload-change-adminuser.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7527599682984812934'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7527599682984812934'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-how-to-upload-change-adminuser.html' title='Drupal: How to upload/ change admin/user gravatar icon'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-3401911239268049505</id><published>2009-05-07T00:53:00.000-07:00</published><updated>2009-05-11T17:37:40.529-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='change text size'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>Drupal 6.x: Where To Edit Title Text Size/Style In Posting Pages</title><content type='html'>In my case, I use FreeBSD Server... so here the way to go&lt;br /&gt;&lt;br /&gt;&lt;ol&gt;&lt;li&gt;Log into freeBSD server/ web server.(use root password)&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Go to :&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;#&lt;/span&gt; &lt;span style="color: rgb(51, 102, 255);"&gt;cd  /usr/local/www/apache22/data/sites/all/&lt;br /&gt;          themes/&lt;span style="color: rgb(153, 51, 0);"&gt;theme_name&lt;/span&gt;&lt;br /&gt;# ee  &lt;span style="color: rgb(153, 51, 0);"&gt;style.css&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;&lt;span style="color: rgb(153, 51, 0);"&gt;&lt;/span&gt;&lt;/span&gt;Search h2 in the &lt;span style="font-weight: bold;"&gt;style.css&lt;/span&gt; file&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Click ctrl +y&lt;br /&gt;Search for: h2&lt;/li&gt;&lt;li&gt;Edit font size or other style&lt;/li&gt;&lt;li&gt;Press esc + enter 2X - Save setting&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;Refresh page in browser &amp;amp; see the changes.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-3401911239268049505?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/3401911239268049505/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-6x-where-to-edit-title-text.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3401911239268049505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/3401911239268049505'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-6x-where-to-edit-title-text.html' title='Drupal 6.x: Where To Edit Title Text Size/Style In Posting Pages'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-2106530616135797820</id><published>2009-05-06T21:21:00.000-07:00</published><updated>2009-05-11T17:36:07.576-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='phpCAS'/><title type='text'>phpCAS</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.ja-sig.org/wiki/display/CASC/phpCAS"&gt;&lt;img style="cursor: pointer; width: 191px; height: 68px;" src="http://4.bp.blogspot.com/_BxG6dhw7_cc/SgJh_RuO6KI/AAAAAAAAANk/bXqfFoRegjw/s200/phpcas.png" alt="" id="BLOGGER_PHOTO_ID_5332932648477059234" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre class="message"&gt;&lt;span style="font-weight: bold;"&gt;What is phpCAS?&lt;/span&gt;&lt;br /&gt;phpCAS is a library which allows clients written in PHP to&lt;br /&gt;authenticate to a CAS (Central Authentication Service) server.&lt;/pre&gt;&lt;br /&gt;&lt;pre class="message"&gt;* Package name    : libcas-php (not sure, needs policy)&lt;br /&gt;Upstream Author : Pascal Aubry&lt;br /&gt;* URL             : &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS"&gt;http://www.ja-sig.org/wiki/display/CASC/phpCAS&lt;/a&gt;&lt;br /&gt;* License         : BSD&lt;br /&gt;Programming Lang: PHP&lt;br /&gt;Description     : CAS client library for PHP&lt;/pre&gt;&lt;br /&gt;&lt;h2&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS"&gt;User documentation&lt;/a&gt;&lt;/h2&gt;  &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+ChangeLog" title="phpCAS ChangeLog"&gt;phpCAS ChangeLog&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+Issues" title="phpCAS Issues"&gt;phpCAS Issues&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;   &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+requirements" title="phpCAS requirements"&gt;phpCAS requirements&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+installation+guide" title="phpCAS installation guide"&gt;phpCAS installation guide&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;   &lt;ul&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+examples" title="phpCAS examples"&gt;phpCAS examples&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+logout" title="phpCAS logout"&gt;phpCAS logout&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+troubleshooting" title="phpCAS troubleshooting"&gt;phpCAS troubleshooting&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+mailing+lists" title="phpCAS mailing lists"&gt;phpCAS mailing lists&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+bug+reports" title="phpCAS bug reports"&gt;phpCAS bug reports&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/Applications+CASified+with+phpCAS" title="Applications CASified with phpCAS"&gt;Applications CASified with phpCAS&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+acknowledgements" title="phpCAS acknowledgements"&gt;phpCAS acknowledgements&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;Related link:&lt;br /&gt;&lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="Applications CASified with phpCAS" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/Applications+CASified+with+phpCAS"&gt;Applications CASified with phpCAS&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="Developing phpCAS" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/Developing+phpCAS"&gt;Developing phpCAS&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS acknowledgements" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+acknowledgements"&gt;phpCAS acknowledgements&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS bug reports" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+bug+reports"&gt;phpCAS bug reports&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS ChangeLog" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+ChangeLog"&gt;phpCAS ChangeLog&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS examples" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+examples"&gt;phpCAS examples&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS i18n" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+i18n"&gt;phpCAS i18n&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS installation guide" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+installation+guide"&gt;phpCAS installation guide&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS Issues" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+Issues"&gt;phpCAS Issues&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS logout" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+logout"&gt;phpCAS logout&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS mailing lists" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+mailing+lists"&gt;phpCAS mailing lists&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS requirements" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+requirements"&gt;phpCAS requirements&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS source documentation" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+source+documentation"&gt;phpCAS source documentation&lt;/a&gt;                           &lt;br /&gt;                                                   &lt;img src="http://www.ja-sig.org/wiki/images/icons/docs_16.gif" title="phpCAS troubleshooting" align="absmiddle" border="0" height="16" width="16" /&gt;                          &lt;a href="http://www.ja-sig.org/wiki/display/CASC/phpCAS+troubleshooting"&gt;phpCAS troubleshooting&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-2106530616135797820?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/2106530616135797820/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/phpcast.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2106530616135797820'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2106530616135797820'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/phpcast.html' title='phpCAS'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_BxG6dhw7_cc/SgJh_RuO6KI/AAAAAAAAANk/bXqfFoRegjw/s72-c/phpcas.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-5649128200510019677</id><published>2009-05-06T20:50:00.000-07:00</published><updated>2009-05-06T21:16:28.870-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='submitted by'/><category scheme='http://www.blogger.com/atom/ns#' term='hide date'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='hide submitted by and date'/><title type='text'>Drupal 6.x: How to hide submitted by and date in posting page/story</title><content type='html'>&lt;ol&gt;&lt;li&gt;Make sure the &lt;span style="color: rgb(153, 0, 0);"&gt;&lt;span style="font-weight: bold;"&gt;sites&lt;/span&gt; &lt;/span&gt;folder are in writable mode.(In my case I use FreeBSD server).&lt;br /&gt;If not, firstly I must edit chmod permission to 775 at least.. or 777 for a while.&lt;br /&gt;(**Make sure after finish, change back to normal mode:755)&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Go to admin page  &lt;span style="color: rgb(51, 102, 255);"&gt;Home &gt; Administer &gt; Site building&gt; Themes&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Click on &lt;span style="color: rgb(51, 102, 255); font-weight: bold;"&gt;Configure&lt;/span&gt; or &lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;Global Setting&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;Go to this section:&lt;br /&gt;&lt;/span&gt;&lt;span style="font-weight: bold; color: rgb(51, 102, 255);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;div class="theme-settings-right"&gt;&lt;fieldset&gt;&lt;legend&gt;Display post information on&lt;/legend&gt;&lt;div class="description"&gt;Enable or disable the &lt;em&gt;submitted by Username on date&lt;/em&gt; text when displaying posts of the following type.&lt;/div&gt;&lt;div class="form-item" id="edit-toggle-node-info-blog-wrapper"&gt;  &lt;label class="option"&gt;&lt;input name="toggle_node_info_blog" id="edit-toggle-node-info-blog" value="1" checked="checked" class="form-checkbox" type="checkbox"&gt; Blog entry&lt;/label&gt; &lt;/div&gt; &lt;div class="form-item" id="edit-toggle-node-info-forum-wrapper"&gt;  &lt;label class="option"&gt;&lt;input name="toggle_node_info_forum" id="edit-toggle-node-info-forum" value="1" checked="checked" class="form-checkbox" type="checkbox"&gt; Forum topic&lt;/label&gt; &lt;/div&gt; &lt;div class="form-item" id="edit-toggle-node-info-link-wrapper"&gt;  &lt;label class="option"&gt;&lt;input name="toggle_node_info_link" id="edit-toggle-node-info-link" value="1" checked="checked" class="form-checkbox" type="checkbox"&gt; Link&lt;/label&gt; &lt;/div&gt; &lt;div class="form-item" id="edit-toggle-node-info-page-wrapper"&gt;  &lt;label class="option"&gt;&lt;input name="toggle_node_info_page" id="edit-toggle-node-info-page" value="1" class="form-checkbox" type="checkbox"&gt; Page&lt;/label&gt; &lt;/div&gt; &lt;div class="form-item" id="edit-toggle-node-info-poll-wrapper"&gt;  &lt;label class="option"&gt;&lt;input name="toggle_node_info_poll" id="edit-toggle-node-info-poll" value="1" checked="checked" class="form-checkbox" type="checkbox"&gt; Poll&lt;/label&gt; &lt;/div&gt; &lt;div class="form-item" id="edit-toggle-node-info-story-wrapper"&gt;  &lt;label class="option"&gt;&lt;input name="toggle_node_info_story" id="edit-toggle-node-info-story" value="1" checked="checked" class="form-checkbox" type="checkbox"&gt; Story&lt;/label&gt; &lt;/div&gt; &lt;/fieldset&gt; &lt;/div&gt;&lt;/li&gt;&lt;li&gt;Uncheck page box or any box which you done want the &lt;span style="font-style: italic; color: rgb(51, 102, 255);"&gt;submitted by and date&lt;/span&gt; to be displayed.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Save Configuration.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Refresh the page and see the &lt;span style="font-style: italic; color: rgb(51, 102, 255);"&gt;submitted by and date &lt;/span&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;are not displayed anymore.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;**Make sure after finish, change back the sites folder to normal mode:755&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;All done.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-5649128200510019677?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/5649128200510019677/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-how-to-hide-submitted-by-and.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5649128200510019677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5649128200510019677'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-how-to-hide-submitted-by-and.html' title='Drupal 6.x: How to hide submitted by and date in posting page/story'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-7781500475448075959</id><published>2009-05-05T21:15:00.000-07:00</published><updated>2009-05-06T21:46:54.689-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='theme'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='template'/><title type='text'>Drupal: Installing a Custom Drupal Theme</title><content type='html'>You can:&lt;br /&gt;1. Download a free custom theme from &lt;a href="http://drupal.org/project/themes" target="_blank"&gt;Drupal.org&lt;/a&gt;&lt;br /&gt;2. Buy a custom theme on the internet from a site such as &lt;a href="http://www.templatemonster.com/category/drupal-templates/" target="_blank"&gt;Template Monster&lt;/a&gt;&lt;br /&gt;3. Hire a designer to create one for you&lt;br /&gt;4. Design your own&lt;br /&gt;&lt;br /&gt;&lt;p&gt;&lt;strong&gt;Step 1: Download the Custom Theme&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;For this example we are going to pick a free theme from Drupal.org. Once you are on Drupal.org, click Themes – located in the top right column.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/navigate_drupal_theme.png" alt="Drupal Theme Link" /&gt;&lt;/p&gt;If you installed under the 6.x version, so click on 6.x to filter out other versions. &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/theme_6x.png" alt="Theme 6x" /&gt;&lt;/p&gt;&lt;p&gt;You have checked out all the themes, navigated to the demo pages, and found a theme to download – click “Download” making sure that you've clicked the corresponding version.&lt;/p&gt;&lt;br /&gt;&lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/zen_download.png" alt="Download Zen" /&gt;&lt;/p&gt;&lt;p&gt;&lt;strong&gt;Step 2: Uploading Files to the Server&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;1. Open root path in www(webserver)&lt;br /&gt;2. Go to theme folder....     &lt;span style="color: rgb(255, 0, 0);"&gt;root path/sites/all/&lt;/span&gt;&lt;strong style="color: rgb(255, 0, 0);"&gt;themes&lt;/strong&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;/&lt;/span&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-7781500475448075959?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/7781500475448075959/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-installing-custom-drupal-theme.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7781500475448075959'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7781500475448075959'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-installing-custom-drupal-theme.html' title='Drupal: Installing a Custom Drupal Theme'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-5529775039478645288</id><published>2009-05-05T20:34:00.000-07:00</published><updated>2009-05-05T20:36:07.437-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='install drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='manual install'/><category scheme='http://www.blogger.com/atom/ns#' term='Drupall'/><title type='text'>Drupal: Manually Installing Drupal</title><content type='html'>&lt;div class="picture"&gt;   &lt;/div&gt;         &lt;a href="http://agoodi.com/manually_installing_drupal"&gt;&lt;span class="submitted"&gt;Manual Source From — R.A. Newman&lt;/span&gt;&lt;/a&gt;           &lt;!-- google_ad_section_start --&gt;&lt;p&gt;&lt;strong&gt;Step 1: Setting up your Database&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Log into the cPanel (control panel) of your hosting account.  Once you are logged in you will want to find the MySQL link.&lt;/p&gt; &lt;p&gt;The one for Bluehost looks like this:&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/mysql.png" alt="mysql" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Next, you will be prompted to give your database a name - for this example I picked "testsite".&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/create_database.png" alt="create database" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Now, you must create a user and password for the database - for this example I picked "test" as my username.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/add_new_user.png" alt="new user" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;After you are done adding a new user, you will have to assign the new user to the database that you just created. In Bluehost the assignment box is just below the "Add User" box. &lt;/p&gt; &lt;p&gt;(The only reason you are seeing "xseeddes_" is because that is the root name associated with my hosting account. You will have something different, it all depends on your host.)&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/assign_user.png" alt="assign user" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;The last step in setting up the database is assigning user privileges.&lt;br /&gt;1. Make sure that you have the correct user and database.&lt;br /&gt;2. Click the check all box - Drupal will need access to the database.&lt;br /&gt;3. Click "Make Changes".&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/manage_user_privileges.png" alt="manage user privileges" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Step 2: Download Drupal&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Go to &lt;a href="http://drupal.org/" target="_blank"&gt;Drupal.org&lt;/a&gt; and click the Download tab.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/downloadtab.png" alt="Drupal" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;On the next page, click Drupal Project. Then click the download link for the corresponding version of Drupal you wish to download. (At the time of this writing Drupal 6.9 is the most current. Just make sure you do NOT download any version highlighted in red - that would be bad.)&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/download.png" alt="download version" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Step 3: Uploading Drupal to Your Site&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;The next phase of installing Drupal is moving it from your computer to your website's server. The first thing you will need to do is log back into your control panel and open your file manager.&lt;/p&gt; &lt;p&gt;Inside of the File Manager you need to do the following:&lt;br /&gt;1. Click on your Public_html folder.&lt;br /&gt;2. Ensure that you have clicked on the correct folder by viewing that path as shown below.&lt;br /&gt;3. Click Upload.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/publichtml.png" alt="public html folder" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Once again, check the path to ensure that you are uploading to "Public_html" folder. Click the browse button to find the Drupal file located on your computer and upload.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/upload.png" alt="upload" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Now, it is time to extract the files from the zipped (compressed) Drupal file.&lt;br /&gt;1. Check the Drupal file.&lt;br /&gt;2. Click Extract.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/extract_files.png" alt="extract files" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Once the compressed file is unzipped, it will still be in a folder called Drupal-6.9. You will need to take all the contents out of that folder. To do so, open the Drupal folder.&lt;/p&gt; &lt;p&gt;Inside of the Drupal folder you will see several folders and files.  Check all files and folders and click "Move Files"&lt;/p&gt; &lt;p&gt;Ensure that you are moving them into the Public_html folder.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/move_files.png" alt="move files" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;*NOTE: After moving the files and folders, make sure that you have successfully moved the .htaccess file as shown below.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/files.png" alt="files" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Step 4: Configuring the settings.php file&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Inside of the File Manager open the Public_html tree and navigate to the Default folder as shown below. Click to open the Default folder.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/default_file.png" alt="default folder" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Inside of the Default folder there is a "default.settings.php" file. You will need to make a copy of that file and rename it settings.php - as shown below.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/settings_file.png" alt="settings file" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;The next step in your journey - which is almost over by the way - is to open the "settings.php" file with your code editor.  &lt;a href="http://www.bluehost.com/track/popcorn/text1" target="_blank"&gt;In Bluehost,&lt;/a&gt; you can open the file in code editor by right clicking on the file. (Each host is different but either way you need to be able to edit the code.)&lt;/p&gt; &lt;p&gt;Once inside the file, scroll down to line 92.  Edit line 92 to reflect your database username, password, and databasename.&lt;br /&gt;*NOTE: Leave the "@localhost" - Do NOT erase.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/change_name.png" alt="change info" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;In the beginning of this example, I set my database username to: xseeddes_test&lt;br /&gt;I set my database name to: xseeddes_testsite&lt;br /&gt;And lets say my password is 1234&lt;/p&gt; &lt;p&gt;A proper code edit of line 92 would look like the example below.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/good_change.png" alt="good" edit="" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Now, save your changes to the settings.php file and get ready for the final step!&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Step 5: Logging into your new Drupal Website&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;If you were successful in the first four steps, the picture below is what you should see in your web browser.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/installed_correctly.png" alt="installed successfully" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;We are reading English right now, so I'm guessing that is what you are going to pick.  But maybe not :)&lt;/p&gt; &lt;p&gt;After choosing your language you should see all green checks. If by chance you get a red box don't freak out - you missed one of the steps above. Most likely, you didn't give the web server enough permission to write or the settings.php file was not configured properly. &lt;/p&gt; &lt;p&gt;But a good install looks like the screenshot below. If you received all green checks, give yourself a big hug. Now, you can fill in your site information.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/green_checks.png" alt="good install" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Almost done, next up is your website username and password - this will be the top administrators name and password.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/site_username.png" alt="site username" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Last but not least is the Time and Date setting - this should already be set to your local time. If your server is set up for Clean URL's you can enable them now. If not, it can be set up at a later time.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/clean_urls.png" alt="clean urls" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Drum roll please.  &lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/welcome_to_drupal.png" alt="welcome to drupal" /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p&gt;Congrats!  And Welcome to Drupal!  If you made it this far you have just successfully finished your first Drupal installation.&lt;/p&gt;&lt;p&gt;&lt;a href="http://agoodi.com/manually_installing_drupal"&gt;Thanks again agoodi!&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-5529775039478645288?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/5529775039478645288/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-manually-installing-drupal.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5529775039478645288'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/5529775039478645288'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-manually-installing-drupal.html' title='Drupal: Manually Installing Drupal'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-6655418598767964881</id><published>2009-05-05T20:24:00.000-07:00</published><updated>2009-05-05T20:32:45.537-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='theme'/><category scheme='http://www.blogger.com/atom/ns#' term='configure theme'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><title type='text'>Drupal: Configuring Your Drupal Theme</title><content type='html'>&lt;div class="picture"&gt;   &lt;/div&gt;         &lt;a href="http://agoodi.com/configuring_your_drupal_theme"&gt;&lt;span class="submitted"&gt;Source of manual from— R.A. Newman&lt;/span&gt;&lt;/a&gt;           &lt;!-- google_ad_section_start --&gt;&lt;p&gt;&lt;strong&gt;Changing Basic Theme Settings:&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Let's go to the Theme Configuration page.&lt;/p&gt; &lt;p&gt;1. Click Administer&lt;br /&gt;2. Click Site Building&lt;br /&gt;3. Click on Themes&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/select_themes.png" alt="select themes" /&gt;&lt;/p&gt; &lt;p&gt;By default, the Garland theme is enabled and set to default in Drupal. For this example we are going to leave it set at Garland.&lt;/p&gt; &lt;p&gt;Enabling more than one theme allows users (if you have multiple site members) to select there own theme settings.  &lt;/p&gt; &lt;p&gt;NOTE: If you are going to be using a custom theme or want control of how your content is displayed, it is best to leave one theme enabled and set to default.&lt;/p&gt; &lt;p&gt;The picture below is what you should have selected for this example.  Next, click on the "configure" link.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/configure_theme.png" alt="configure theme" /&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Changing Colors:&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;The first thing we are going to do is change the base color.&lt;/p&gt; &lt;p&gt;Ensure that base is selected as shown below.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/select_base_color.png" alt="select base color" /&gt;&lt;/p&gt; &lt;p&gt;The base color is your website's background color. The numbers and letters you see next to the # sign are all apart of the hexadecimal numeral system. It is what browsers use to interpret the color output.&lt;/p&gt; &lt;p&gt;Enter #000000 into the base color field (those are zeros not O's by the way.) and then click save configuration.&lt;/p&gt; &lt;p&gt;The picture below highlights the change in the background color. Although, the hexadecimal code #000000 is black, Drupal does not output the color black because of CSS styling. The color is set to fade from top to bottom. We will get more into custom theme design later.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/background_color.png" alt="background color" /&gt;&lt;/p&gt; &lt;p&gt;Next, you should play with the color wheel on the right. The outer wheel will allow you to select a color range, while the block in the middle will let you pick your saturation and value.&lt;/p&gt; &lt;p&gt;Experiment with it as I did in the example below.  Remember, your site is off-line.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/changed_theme.png" alt="changed theme" /&gt;&lt;/p&gt; &lt;p&gt;&lt;strong&gt;Display Settings:&lt;/strong&gt;&lt;/p&gt; &lt;p&gt;Next, we are going to cover display settings. On the bottom of the current page, there are two sections, let's edit the "Toggle Display" and "Logo image settings" sections.&lt;/p&gt; &lt;p&gt;Uncheck Logo, Site Name, Mission Statement, and Shortcut Icon, as shown below.  Click save configuration.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/uncheck_display.png" alt="unchecked items" /&gt;&lt;/p&gt; &lt;p&gt;In the picture below, notice how the Drupal logo and the site name have disappeared. We have unchecked mission statement for processing reasons only, since we have no mission statement to post, there is no need to process it.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/before_after.png" alt="before and after" /&gt;&lt;/p&gt; &lt;p&gt;We also unchecked an item called, "Shortcut Icon". The shortcut icon refers to what is commonly called a favicon or the really tiny logo you see next to a website name in the address bar or on the window tab.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/fav_before_after.png" alt="favicon before and after" /&gt;&lt;/p&gt; &lt;p&gt;If you have your own custom logo or favicon you can also upload it on this page as well. To upload your logo or favicon, use the browse button to search for the file on your computer, then click save configuration. Drupal will automatically define a path for your logo and check "logo" in toggle display.&lt;/p&gt; &lt;p&gt;&lt;img src="http://agoodi.com/sites/default/files/agoodi_logo_print.png" alt="printed logo" /&gt;&lt;/p&gt; &lt;p&gt;Now that you know what all this theme stuff does, enable some different themes and play around with the settings.&lt;/p&gt;&lt;p&gt;&lt;a href="http://agoodi.com/configuring_your_drupal_theme"&gt;Thanks agoodi&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-6655418598767964881?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/6655418598767964881/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-configuring-your-drupal-theme.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/6655418598767964881'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/6655418598767964881'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-configuring-your-drupal-theme.html' title='Drupal: Configuring Your Drupal Theme'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-8165559769299249816</id><published>2009-05-05T19:15:00.000-07:00</published><updated>2009-05-05T19:19:17.610-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='hide block'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='block'/><title type='text'>Drupal 6.x : How to hide blocks?</title><content type='html'>&lt;ol&gt;&lt;li&gt;Go to Home&gt; Administer &gt; Site buildings &gt; Blocks&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Choose block you want to configure &gt; Click configure&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Go to &lt;label&gt;Custom visibility settings: &lt;/label&gt;  &lt;div class="form-radios"&gt;&lt;div class="form-item" id="edit-custom-0-wrapper"&gt;  &lt;label class="option"&gt;&lt;input id="edit-custom-0" name="custom" value="0" class="form-radio" type="radio"&gt; Users cannot control whether or not they see this block.&lt;/label&gt; &lt;/div&gt; &lt;div class="form-item" id="edit-custom-1-wrapper"&gt;  &lt;label class="option"&gt;&lt;input id="edit-custom-1" name="custom" value="1" class="form-radio" type="radio"&gt; Show this block by default, but let individual users hide it.&lt;/label&gt; &lt;/div&gt; &lt;div class="form-item" id="edit-custom-2-wrapper"&gt;  &lt;label class="option"&gt;&lt;input id="edit-custom-2" name="custom" value="2" checked="checked" class="form-radio" type="radio"&gt; Hide this block by default but let individual users show it.&lt;br /&gt;&lt;br /&gt;&lt;/label&gt;&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;&lt;li&gt;Save blocks.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Refresh browser and see the changes . Done&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-8165559769299249816?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/8165559769299249816/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-6x-how-to-hide-blocks.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8165559769299249816'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8165559769299249816'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-6x-how-to-hide-blocks.html' title='Drupal 6.x : How to hide blocks?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-8534479021757650127</id><published>2009-05-05T19:02:00.000-07:00</published><updated>2009-05-05T19:20:18.234-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='menu'/><category scheme='http://www.blogger.com/atom/ns#' term='edit menu'/><title type='text'>Drupal 6.x: How to edit your home link?</title><content type='html'>&lt;ol&gt;&lt;li&gt;Go to Home&gt; Administer &gt; Site building &gt; Menu &gt; Primary Link&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;See home menu item &gt; Click edit&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Default path normally &lt;front&gt; (for Drupal 6.x)&lt;br /&gt;&lt;br /&gt;&lt;/front&gt;&lt;/li&gt;&lt;li&gt;Change to new link path or url as you want&lt;br /&gt;&lt;front&gt; ==&gt; http://mydomain.com.my/main.html&lt;br /&gt;&lt;br /&gt;&lt;/front&gt;&lt;/li&gt;&lt;li&gt;Save setting.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Refresh your browser and see the changes done.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-8534479021757650127?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/8534479021757650127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-how-to-edit-your-home-link.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8534479021757650127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/8534479021757650127'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-how-to-edit-your-home-link.html' title='Drupal 6.x: How to edit your home link?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-2836718936440229163</id><published>2009-05-05T18:28:00.000-07:00</published><updated>2009-05-05T19:19:39.514-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='frontpage'/><category scheme='http://www.blogger.com/atom/ns#' term='drupal'/><category scheme='http://www.blogger.com/atom/ns#' term='edit frontpage'/><title type='text'>Drupal 6.x: How to edit frontpage view ?</title><content type='html'>&lt;ol&gt;&lt;li&gt;Create Content &gt; Choose Page &gt; Format/Type your content&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Set URL path to any specific name (eg: 'main')&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Set publishing option to - thick all option to make sure the page will  sticky to be the first content in the list.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Preview &amp;amp; Save content.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Go to Home&gt; Administer&gt; Site Configuration &gt; Site Information&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Set your default frontpage to&gt; main&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Save configuration.&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Open your default drupal url and see your new fronpage appear.&lt;br /&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-2836718936440229163?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/2836718936440229163/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-how-to-edit-frontpage-view.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2836718936440229163'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/2836718936440229163'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-how-to-edit-frontpage-view.html' title='Drupal 6.x: How to edit frontpage view ?'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-852010016274510284</id><published>2009-05-03T21:22:00.000-07:00</published><updated>2009-05-03T21:28:30.361-07:00</updated><title type='text'>Drupal VS Joomla...</title><content type='html'>They says:&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Drupal &lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Rock solid &amp;amp; high quality platform&lt;/li&gt;&lt;li&gt;Real multi-site-feature (only one installation for several sites)&lt;/li&gt;&lt;li&gt;Any Kind of user groups &amp;amp; user permissions, OpenId compliant in Version 6&lt;/li&gt;&lt;li&gt;Can run membership and community sites, not only CMS etc&lt;/li&gt;&lt;li&gt;Powerful templating system. Any XHTML or CSS template can be easily converted to Drupal.&lt;/li&gt;&lt;li&gt;Drupal needs a little time investment to realize all the huge possibilities of Drupal&lt;/li&gt;&lt;li&gt;Clear, high quality code and API (easy to integrate with other solutions etc)&lt;/li&gt;&lt;li&gt;Flexibility and no known limitations&lt;/li&gt;&lt;li&gt;&lt;a href="http://www.mydrupal.com/drupal_showcase_some_top_drupal_sites"&gt;Many high profile sites use Drupal&lt;/a&gt; (e.g.: MTV UK, BBC, the Onion, Nasa, Greenpeace UK, New york observer. )&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;and..&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Joomla&lt;/strong&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;If you are not techy its good to start&lt;/li&gt;&lt;li&gt;Easy install &amp;amp; setup with your mouse&lt;/li&gt;&lt;li&gt;Easy learning curve&lt;/li&gt;&lt;li&gt;Cannot integrate other scripts etc. to your site&lt;/li&gt;&lt;li&gt;Generally you cannot create high-end sites, without investing huge amount&lt;/li&gt;&lt;li&gt;No SEO out of the box, URLs are not search engine friendly... &lt;span style="color: rgb(255, 102, 102);"&gt;this fixed already&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Server resources utilization is more compared to drupal&lt;/li&gt;&lt;li&gt;Only one site per installation&lt;/li&gt;&lt;li&gt;No Single Log-in to several sites&lt;/li&gt;&lt;li&gt;No User groups &amp;amp; permissions&lt;/li&gt;&lt;li&gt;More intuitive administration user interface&lt;/li&gt;&lt;li&gt;Some polished modules for things like calendars, polls, etc.&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;a href="http://mydrupal.com/joomla-versus-drupal"&gt;Read more..&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.communicopia.com/blog/joomla-versus-drupal#comment-5618"&gt;Drupal VS Joomla&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://joomla-gituloh.andama.nl/joomla/gituloh/cms-showdown-joomla-vs.-drupal.joomla-gituloh"&gt;Comparing Joomla &amp;amp; Drupal&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://forum.joomla.org/index.php/topic,4364.0.html"&gt;Joomla Forum&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-852010016274510284?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/852010016274510284/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-vs-joomla.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/852010016274510284'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/852010016274510284'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal-vs-joomla.html' title='Drupal VS Joomla...'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-9070325330063009383</id><published>2009-05-03T21:16:00.000-07:00</published><updated>2009-05-03T21:31:14.324-07:00</updated><title type='text'>Drupal</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://drupal.org/"&gt;&lt;img style="cursor: pointer; width: 111px; height: 111px;" src="http://4.bp.blogspot.com/_BxG6dhw7_cc/Sf5vWzgUITI/AAAAAAAAANc/KVESUnOadYk/s200/drupal.jpg" alt="" id="BLOGGER_PHOTO_ID_5331821446426796338" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a style="font-weight: bold;" href="http://drupal.org/about"&gt;What Is Drupal?&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;p style="text-align: justify;"&gt;&lt;span style="font-weight: bold;"&gt;Drupal&lt;/span&gt; is a free software package that allows an individual or a community of users to easily publish, manage and organize a wide variety of content on a website. Tens of thousands of people and organizations are &lt;a href="http://drupal.org/cases"&gt;using Drupal&lt;/a&gt; to power scores of different web sites, including&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Community web portals&lt;/li&gt;&lt;li&gt;Discussion sites&lt;/li&gt;&lt;li&gt;Corporate web sites&lt;/li&gt;&lt;li&gt;Intranet applications&lt;/li&gt;&lt;li&gt;Personal web sites or blogs&lt;/li&gt;&lt;li&gt;Aficionado sites&lt;/li&gt;&lt;li&gt;E-commerce applications&lt;/li&gt;&lt;li&gt;Resource directories&lt;/li&gt;&lt;li&gt;Social Networking sites&lt;/li&gt;&lt;/ul&gt; &lt;p style="text-align: justify;"&gt;Drupal is ready to go from the moment you &lt;a href="http://drupal.org/project/Drupal+project"&gt;download it&lt;/a&gt;. It even has an easy-to-use web installer! The &lt;a href="http://drupal.org/features"&gt;built-in functionality&lt;/a&gt;, combined with dozens of freely available &lt;a href="http://drupal.org/project/Modules"&gt;add-on modules&lt;/a&gt;, will enable features such as:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Content Management Systems&lt;/li&gt;&lt;li&gt;Blogs&lt;/li&gt;&lt;li&gt;Collaborative authoring environments&lt;/li&gt;&lt;li&gt;Forums&lt;/li&gt;&lt;li&gt;Peer-to-peer networking&lt;/li&gt;&lt;li&gt;Newsletters&lt;/li&gt;&lt;li&gt;Podcasting&lt;/li&gt;&lt;li&gt;Picture galleries&lt;/li&gt;&lt;li&gt;File uploads and downloads&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;and &lt;a href="http://drupal.org/about"&gt;much more&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-9070325330063009383?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/9070325330063009383/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/9070325330063009383'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/9070325330063009383'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/drupal.html' title='Drupal'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_BxG6dhw7_cc/Sf5vWzgUITI/AAAAAAAAANc/KVESUnOadYk/s72-c/drupal.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-7978688564357576744</id><published>2009-05-03T20:57:00.000-07:00</published><updated>2009-05-03T21:14:51.376-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='joomla'/><category scheme='http://www.blogger.com/atom/ns#' term='wordpress'/><category scheme='http://www.blogger.com/atom/ns#' term='wordpress vs joomla'/><title type='text'>Wordpress  VS  Joomla</title><content type='html'>&lt;div style="text-align: justify;"&gt;The basic difference between WordPress and Joomla is that Joomla is a portal- or community type site while WordPress is a blog.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;I found a &lt;a href="http://community.joomla.org/magazine/article/519-cms-market-share-report-joomla-in-top-3.html" title="CMS Market Share Report Joomla in Top 3" rel="nofollow"&gt;great article &lt;/a&gt;written on the Joomla! site (though it is not biased at all) that points out how Joomla!, Wordpress and Drupal are the top three CMS / Blogging systems out there. Choose any of them and you’re a winner…well, depending on what you want your website to do.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;&lt;a href="http://wordpress.com/"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;Wordpress&lt;/span&gt;&lt;/a&gt; is a blog. That’s it. That’s all that it ever will be succesfully. The code is written sloppily and with every upgrade the system breaks a plugin that has been installed, or a theme that has been custom designed. It’s also extremely dificult to make it do what you want, as I’ve spent many hours trying to do just that.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://community.joomla.org/"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;Joomla!&lt;/span&gt;&lt;/a&gt; is a Content Management system (not a portal, though it could be used as one…) This means that it is used to aggregate a lot of content and put it into a nice form on your website. This includes blogs, magazines, newsletters, articles, knowledge bases, tutorials, forums, and much more. Joomla gives you a lot of power in your hands and that is noticeable in the admin section where there are so many options that you get dizzy the first time you go in.&lt;br /&gt;&lt;br /&gt;Granted, it’s a wonderful blog if that’s all that you are doing and all you want to do. But if you want flexibility…go with Joomla! or even Drupal...&lt;br /&gt;&lt;br /&gt;For instance, adding or removing post dates in wordpress, need to be changed in design mode and it requires knowledge of WP scripting. The navigational structure is determined by the layout template you chose. Changing that structure again requires knowledge of the WP scripting language and CSS.  With Joomla, you do not run into this problem because menus are controlled via the control panel and attributes like dates, author name etc, can be turned on and off per article or for the whole site in one go. In that sense, Joomla is much more a content management system.&lt;br /&gt;&lt;br /&gt;Hmmmh... does the choice right?... Then make your own choice.. &amp;amp; good luck.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-7978688564357576744?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/7978688564357576744/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/wordpress-vs-joomla.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7978688564357576744'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/7978688564357576744'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/wordpress-vs-joomla.html' title='Wordpress  VS  Joomla'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-4398665539468146637</id><published>2009-05-03T20:34:00.000-07:00</published><updated>2009-05-03T20:51:05.923-07:00</updated><title type='text'>Wordpress..</title><content type='html'>Because of the new coming "b", I need to move from Joomla to Wordpress. I'm a person who didn't like to fight or against  my  "b". So  I just go with the flow... I didn't like  to make any noisy things.. so just learn about this new things.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.wordpress.com"&gt;&lt;img style="cursor: pointer; width: 118px; height: 118px;" src="http://1.bp.blogspot.com/_BxG6dhw7_cc/Sf5mApNC1EI/AAAAAAAAANU/mGqv0CD78Dc/s200/wpress.jpg" alt="" id="BLOGGER_PHOTO_ID_5331811170099844162" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a href="http://en.wikipedia.org/wiki/Wordpress"&gt;&lt;span style="font-weight: bold; color: rgb(51, 51, 255);"&gt;What is Wordpress??&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;WordPress&lt;/b&gt; is an &lt;a href="http://en.wikipedia.org/wiki/Open_source" title="Open source"&gt;open source&lt;/a&gt; &lt;a href="http://en.wikipedia.org/wiki/Weblog_software" title="Weblog software"&gt;blog publishing application&lt;/a&gt;. WordPress is the official successor of &lt;b&gt;b2\cafelog&lt;/b&gt; which was developed by Michel Valdrighi. The latest release of WordPress is version 2.7.1, released on 10 February 2009.&lt;br /&gt;&lt;br /&gt;It was written in PHP for use with &lt;a href="http://en.wikipedia.org/wiki/MySQL" title="MySQL"&gt;MySQL&lt;/a&gt;.(also same like Joomla).. but simpler one than joomla.&lt;br /&gt;WordPress supports one weblog per installation, though multiple concurrent copies may be run from different directories if configured to use separate database tables. Is it suitable to use for company/ university website using blog?? Anyway thats the "b" decision... just see what happen next.&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;WordPress has a &lt;a href="http://en.wikipedia.org/wiki/Template_processor" title="Template processor"&gt;templating&lt;/a&gt; system, which includes &lt;a href="http://en.wikipedia.org/wiki/Widgets#Widget_management_systems" title="Widgets" class="mw-redirect"&gt;widgets&lt;/a&gt; that can be rearranged without editing &lt;a href="http://en.wikipedia.org/wiki/PHP" title="PHP"&gt;PHP&lt;/a&gt; or &lt;a href="http://en.wikipedia.org/wiki/HTML" title="HTML"&gt;HTML&lt;/a&gt; code, as well as &lt;a href="http://en.wikipedia.org/wiki/Theme_%28computing%29" title="Theme (computing)"&gt;themes&lt;/a&gt; that can be installed and switched between. The PHP and HTML code in themes can also be edited for more advanced customizations. Same also like Joomla. Whats so special??... maybe the "framework developer".. I guest.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-4398665539468146637?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/4398665539468146637/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/wordpress.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/4398665539468146637'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/4398665539468146637'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/wordpress.html' title='Wordpress..'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://1.bp.blogspot.com/_BxG6dhw7_cc/Sf5mApNC1EI/AAAAAAAAANU/mGqv0CD78Dc/s72-c/wpress.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-1539281314703448258</id><published>2009-05-03T20:29:00.000-07:00</published><updated>2009-05-03T20:31:11.251-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='prefix'/><category scheme='http://www.blogger.com/atom/ns#' term='mysql'/><category scheme='http://www.blogger.com/atom/ns#' term='db'/><title type='text'>Change Mysql Database Prefix..</title><content type='html'>dari: Sifoo Sirap&lt;br /&gt;&lt;br /&gt;1. Go into mysql...then show tables;&lt;br /&gt;&lt;br /&gt;2. Copy all tables that you want to rename ...&lt;br /&gt;&lt;br /&gt;3. Paste in this script  (eg:save the file as batch_rename.sh ) :&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;OLD_PREFIX = "mdl"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;NEW_PREFIX = "mdlsirap"&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;data=&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;&lt;&lt;-EOD  &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_assignment | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_assignment_submissions | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_backup_config | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_backup_courses | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_backup_files | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_backup_ids | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_backup_log | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_block | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_block_instance | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;| mdl_block_pinned | &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;EOD &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;tables = [] &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;data.each_line do |line|   &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;if line=~/(#{OLD_PREFIX}\w+)/         &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;    puts "RENAME TABLE #{$1} TO #{NEW_PREFIX}#{$1};"  &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;end   &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 255);"&gt;end&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;4. Then run this script using ruby  command-line (I assume you already install ruby) :&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;# ruby batch_rename.sh   &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;5. The output :&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_assignment TO mdlsirap_assignment; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_assignment_submissions TO mdlsirap_assignment_submissions; RENAME TABLE mdl_backup_config TO mdlsirap_backup_config; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_backup_courses TO mdlsirap_backup_courses; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_backup_files TO mdlsirap_backup_files; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_backup_ids TO mdlsirap_backup_ids; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_backup_log TO mdlsirap_backup_log; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_block TO mdlsirap_block; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_block_instance TO mdlsirap_block_instance; &lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;RENAME TABLE mdl_block_pinned TO mdlsirap_block_pinned;&lt;/span&gt;&lt;span style="color: rgb(0, 153, 0);"&gt;  &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;6. Just masukan sql statement ni dlm satu file lain...tapi kalau nak senang...buat step no. 4 tu camni :&lt;br /&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;# ruby batch_rename.sh &gt; a.sql&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;7. Run the sql file using mysql...:&lt;br /&gt;&lt;span style="color: rgb(255, 255, 153);"&gt;&lt;span style="color: rgb(51, 51, 255);"&gt;    # mysql -uroot -p namadatabase &lt; style="color: rgb(255, 0, 0);"&gt;**Check balik dalam database, prefix semua table dah bertukar.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(0, 0, 0);"&gt;8. Done&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-1539281314703448258?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/1539281314703448258/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/change-mysql-database-prefix.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1539281314703448258'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/1539281314703448258'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/change-mysql-database-prefix.html' title='Change Mysql Database Prefix..'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-9094505596292289122</id><published>2009-05-03T20:27:00.000-07:00</published><updated>2009-05-03T20:28:23.204-07:00</updated><title type='text'>Trojan Attack...</title><content type='html'>Tension betullah aku, pc kat rumah dah kena attack virus trojan...&lt;br /&gt;Antivirus pulak tak update... habis execution file kena kacau. PC jadi slow giler, banyak program takleh run, banyak kacau backdor ngan execute apa2 file tanpa permission... hai geramnya...&lt;br /&gt;Sikit info pasal  benda-benda ni:&lt;br /&gt;&lt;span name="intelliTxt" id="intelliTxt"&gt;&lt;p align="left"&gt;&lt;strong&gt;&lt;em&gt;Adware - &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;A program that generates      popups on your computer or displays advertisements. It is important to note      that not all adware programs are necessarily considered malware. There are      many legitimate programs that are given for free that display ads in their      programs in order to generate revenue. As long as this information is provided      up front then they are generally not considered malware.&lt;/em&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;em&gt;&lt;strong&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Backdoor&lt;/span&gt; -&lt;/strong&gt; A program that allows a remote      user to execute commands and tasks on your computer without your permission.      These types of programs are typically used to launch attacks on other computers,      distribute copyrighted software or media, or hack other computers.&lt;/em&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;strong&gt;&lt;em&gt;Dialler -&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; A program that typically      dials a premium rate number that has per minute charges over and above the      typical call charge. These calls are with the intent of gaining access to      pornographic material.&lt;/em&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;strong&gt;&lt;em&gt;Hijackers - &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;A program that attempts       to hijack certain Internet functions like redirecting your start page to       the hijacker's own start page, redirecting search queries to a undesired       search engine, or replace search results from popular search engines with       their       own information.&lt;/em&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;strong&gt;&lt;em&gt;Spyware - &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;A program         that monitors your activity or information on your computer and sends       that information         to a remote computer without your knowledge.&lt;/em&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Trojan&lt;/span&gt; &lt;/em&gt;&lt;/strong&gt;&lt;em&gt;&lt;strong&gt;- &lt;/strong&gt;A program      that has been designed to appear innocent but has been intentionally designed      to cause some malicious activity or to provide a backdoor to your system.&lt;/em&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Virus&lt;/span&gt; -&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; A program that when run, has the ability to self-replicate by infecting other programs and files on your computer. These programs can have many effects ranging from wiping your hard drive, displaying a joke in a small box, or doing nothing at all except to replicate itself. These types of infections tend to be localized to your computer and not have the ability to spread to another computer on their own. The word virus has incorrectly become a general term that encompasses trojans, worms, and viruses.&lt;/em&gt;&lt;/p&gt;   &lt;p align="left"&gt;&lt;strong&gt;&lt;em&gt;&lt;span style="color: rgb(255, 0, 0);"&gt;Worm&lt;/span&gt; -&lt;/em&gt;&lt;/strong&gt;&lt;em&gt; A program that when run,      has the ability to spread to other computers on its own using either mass-mailing      techniques to email addresses found on your computer or by using the Internet      to infect a remote computer using known security holes.&lt;/em&gt;&lt;/p&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;Camana nak buang virus ni?&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span name="intelliTxt" id="intelliTxt"&gt;Aku dapat info dari internet, kalau kita dapati benda tu malware dan nak buangnya kena ikut langkah2 ni:&lt;br /&gt;&lt;/span&gt; &lt;ol&gt;&lt;li&gt;&lt;span name="intelliTxt" id="intelliTxt"&gt;Download dan extract  &lt;a href="http://www.sysinternals.com/Utilities/Autoruns.html" target="_blank" rel="nofollow"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;Autoruns&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt; program dari Sysinternals ke &lt;strong&gt;C:\Autoruns&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span name="intelliTxt" id="intelliTxt"&gt;Reboot ke &lt;strong&gt;&lt;a href="http://www.bleepingcomputer.com/tutorials/tutorial61.html"&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;Safe         Mode&lt;/span&gt;&lt;/a&gt; &lt;/strong&gt;supaya malware tak start bila buat step ni. Kebanyakan malware kawal 'keys' yang membolehkan dia start dan kalau dia notice key2 tu dibuang, dia boleh replace startup key tu secara automatik. Sebab tu kena boot dari safe mode untuk bolehkan kita get         past kawalan tu dalam kebanyakan kes.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span name="intelliTxt" id="intelliTxt"&gt;Navigate ke &lt;strong&gt;C:\Autoruns&lt;/strong&gt; folder yang dibuat dalam Step     1 dan  double-click dekat &lt;strong&gt;autoruns.exe.&lt;/strong&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Bila program starts, klick pada &lt;strong&gt;Options &lt;/strong&gt; menu dan     enablekan  options di bawah  dengan klik padanya. Checkmark akan keluar kat sebelah option2 ni. &lt;strong&gt;&lt;br /&gt;- Include empty locations&lt;br /&gt;-Verify Code Signatures&lt;/strong&gt;&lt;strong&gt;&lt;br /&gt;-Hide Signed Microsoft Entries&lt;br /&gt;&lt;br /&gt;&lt;/strong&gt;&lt;/li&gt;&lt;li&gt;&lt;span name="intelliTxt" id="intelliTxt"&gt;Kemudian tekan &lt;strong&gt;F5 &lt;/strong&gt;key pada keyboard untuk refresh startups list guna setting baru nih.&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span name="intelliTxt" id="intelliTxt"&gt;&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Program tu akan tunjukkan info tentang your startup entries dalam 8 tab berbeza. Kebanyakan part, filename yang kita cari ada di bawah &lt;strong&gt;Logon&lt;/strong&gt; atau &lt;strong&gt;Services&lt;/strong&gt; tab, atapi kita kena cek juga tab lain untuk make sure ia tak loading kat tempat lain jugak. Klik pada setiap tab dan cek list  filename yang kita nak buang.  Filename boleh dilihat di bawah kolum &lt;strong&gt;Image     Path&lt;/strong&gt; .     (There may be more than one entry associated with the same file as it is common     for malware     to create multiple startup entries).&lt;strong&gt;&lt;span style="color: rgb(255, 0, 0);"&gt; Penting untuk note kebanyakan malware programs menyamarkan diri mereka menggunakan nama fail yang sama seperti fail2     Microsoft yang sah. Maka penting untuk kita kenalpasti yang mana fail dan     folder mereka berada, untuk kita buang.&lt;/span&gt;&lt;/strong&gt; (You can     check our &lt;a href="http://www.bleepingcomputer.com/startups/"&gt;&lt;strong&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;Startup     Database&lt;/span&gt;&lt;/strong&gt;&lt;/a&gt; for that information     or ask for help in our &lt;a href="http://www.bleepingcomputer.com/forums/"&gt;computer help forums&lt;/a&gt;. )&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;   &lt;li&gt;Bila dah kenalpasti fail2 yang nak dibuang, cuma right click pada entry dan select &lt;strong&gt;delete&lt;/strong&gt;. Jadi startup     entry ni akan dibuang dari Registry, lepas reboot nanti dia tak boleh run lagi.&lt;strong&gt;&lt;a href="http://www.bleepingcomputer.com/tutorials/tutorial62.html"&gt;&lt;span style="color: rgb(0, 0, 255);"&gt;&lt;/span&gt;&lt;/a&gt;&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;   &lt;li&gt;Lepas selesai buang malware entries dari Registry dan padam files, reboot semula ke normal mode sebab pc sekarang dah bersih dari  infection.&lt;/li&gt;&lt;br /&gt;&lt;br /&gt;Cuba test jadi tak....????&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-9094505596292289122?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/9094505596292289122/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/trojan-attack.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/9094505596292289122'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/9094505596292289122'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/trojan-attack.html' title='Trojan Attack...'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-6074397282526445526</id><published>2009-05-03T20:25:00.000-07:00</published><updated>2009-05-03T20:26:18.711-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='joomla'/><category scheme='http://www.blogger.com/atom/ns#' term='freebsd'/><category scheme='http://www.blogger.com/atom/ns#' term='putty'/><category scheme='http://www.blogger.com/atom/ns#' term='winscp'/><title type='text'></title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.joomla.org/"&gt;&lt;img style="margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 154px; height: 30px;" src="http://www.joomla.org/templates/joomla08/images/logo.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;div style="text-align: justify;"&gt;Selama aku involve buat website ni, aku pernah try beberapa cms punya free framework yang senang nak install dan configure. Tapi banyak2 yang aku test, aku suka mambo dengan joomla. Sekarang ni aku guna joomla, sebab banyak sangat template, plug-in, module, component yang programmer satu dunia ni contribute untuk joomla. Nak install senang, nak patch pun senang, nak maintain pun senang... free lagi... source code pun free untuk digodek kalau pandai dan minat.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Cara mudah Install Joomla dalam FreeBSD!&lt;/span&gt;&lt;ul&gt;&lt;li&gt;Download dulu Joomla 1.5 Installer kat sini &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.joomla.org/download.html"&gt;&lt;img style="cursor: pointer; width: 162px; height: 31px;" src="http://www.joomla.org/templates/joomla08/images/joomla_download.png" alt="" border="0" /&gt;&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Sebelum tu kenalah dah setup webserver yang dah ada root folder.&lt;br /&gt;Aku anggapkan, satu server php dah setup dengan apache webserver. Aku biasa guna server FreeBSD &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.freebsd.org/"&gt;&lt;img style="cursor: pointer; width: 153px; height: 25px;" src="http://www.freebsd.org/layout/images/logo-red.png" alt="" border="0" /&gt;&lt;/a&gt;.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Pastikan jugak Mysql juga dah diinstall dulu dan up.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Buatkan satu folder khas untuk joomla dekat folder root. Dalam freeBSD normal pathnya /usr/local/www/apache22/data/root/&lt;/li&gt;&lt;li&gt;Copy installation file Jommla 1.5 tadi ke dalam folder tu.&lt;br /&gt;cth: /usr/local/www/apache22/data/root/&lt;span style="color: rgb(255, 102, 102);"&gt;joomla&lt;/span&gt;/&lt;/li&gt;&lt;li&gt;Create database mysql untuk website joomla &amp;amp; grant user.&lt;br /&gt;- Gunakan putty atau phpmyadmin site untuk buat database baru.&lt;br /&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;# mysql -uroot -p&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;# create database web;&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;# grant all privileges on web.* to adminroot@localhost identified by "passw@rd";&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;# flush privileges;&lt;br /&gt;** Pastikan catit dulu nama database, username dan password database untuk kegunaan masa pre-installation.&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Unzipkan  installation file Joomla tadi dalam root folder(joomla).&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Tukar permission mode untuk folder joomla tu kepada 775 untuk memudahkan proses pre-installation nanti.&lt;br /&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;# chmod -R 775 joomla&lt;/span&gt;&lt;/li&gt;&lt;li&gt;Tukar juga owner file joomla kepada www&lt;br /&gt;&lt;span style="color: rgb(255, 102, 0);"&gt;# chown -R www:www joomla&lt;/span&gt;&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Setup dns untuk website  joomla tadi di dns server.  Satu url akan dibuat di sini. cth: http://webjoomla.domain.com.my&lt;br /&gt;(Bolehlah minta bantuan network admin(NA) kalau tak tau)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Bukak url tadi dekat browser IE atau Firefox. Ikut jer apa yang diarahkan dalam pre-installation joomla punya wizard. Senang jer. Pastikan ingat  katalaluan admin yang dibuat semasa proses pre-installation ni untuk login administrator page nanti.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Selesai jer pre-installation,kena buang dulu forlder installation dalam folder joomla tadi. Buat melalui &lt;a href="http://www.chiark.greenend.org.uk/%7Esgtatham/putty/download.html"&gt;putty&lt;/a&gt; atau &lt;a href="http://winscp.net/eng/download.php"&gt;winscp&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Kemudian barulah website joomla yang kita setup tu boleh keluar melalui url tadi http://webjoomla.domain.com.my&lt;/li&gt;&lt;li&gt;Untuk customize template, component, module, plug-in semua boleh dibuat melalui administrator page. Cuma taipkan url tadi dan tambahkan administrator di hujungnya. http://webjoomla.domain.com.my/administrator&lt;br /&gt;**Gunakan login dan katalaluan admin tadi untuk masuk.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Rujuk di laman web &lt;a href="http://extensions.joomla.org/"&gt;joomla&lt;/a&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://extensions.joomla.org/"&gt;&lt;img style="cursor: pointer; width: 108px; height: 21px;" src="http://www.joomla.org/templates/joomla08/images/logo.png" alt="" border="0" /&gt;&lt;/a&gt; untuk download macam2 extension yang sedia untuk digunakan. Mudah diinstall dan yang penting percuma!&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-6074397282526445526?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/6074397282526445526/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/selama-aku-involve-buat-website-ni-aku.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/6074397282526445526'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/6074397282526445526'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/05/selama-aku-involve-buat-website-ni-aku.html' title=''/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-4999477317987751114.post-717672889202685408</id><published>2009-01-04T20:15:00.000-08:00</published><updated>2009-05-10T20:47:03.103-07:00</updated><title type='text'>Myself</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_BxG6dhw7_cc/SSoBvm0dltI/AAAAAAAAAAU/GYaLVB4G_E4/s1600-h/781114105332.jpg"&gt;&lt;img id="BLOGGER_PHOTO_ID_5272028231176656594" style="margin: 0pt 10px 10px 0pt; float: left; width: 101px; cursor: pointer; height: 138px;" alt="" src="http://4.bp.blogspot.com/_BxG6dhw7_cc/SSoBvm0dltI/AAAAAAAAAAU/GYaLVB4G_E4/s320/781114105332.jpg" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 102, 102);font-size:85%;" &gt;&lt;b&gt;&lt;span style="color: rgb(102, 102, 0);"&gt;Salina Binti Abdi&lt;/span&gt;&lt;span style="color: rgb(102, 102, 0);"&gt; &lt;/span&gt;&lt;span style="color: rgb(102, 102, 0);"&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style="color: rgb(153, 153, 153);"&gt;Taman Perwira,&lt;/span&gt;&lt;span style="color: rgb(153, 153, 153);"&gt; &lt;/span&gt;&lt;span style="color: rgb(153, 153, 153);"&gt;&lt;br /&gt;Telok Panglima Garang,&lt;/span&gt;&lt;span style="color: rgb(153, 153, 153);"&gt; &lt;/span&gt;&lt;span style="color: rgb(153, 153, 153);"&gt;&lt;br /&gt;Kuala Langat Selangor.&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="color: rgb(102, 102, 0);font-size:78%;" &gt;salina.abdi@gmail.com&lt;/span&gt;&lt;br /&gt;&lt;/b&gt;&lt;br /&gt;&lt;b&gt;&lt;br /&gt;&lt;br /&gt;Curriculum Vitae&lt;/b&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Date and Place of Birth: November 14, 1978 Selangor, Malaysia. &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Undergraduate School: University Science of Malaysia(USM) Pulau Pinang. 1998-2001 Bachelor of Computer Science (Major in Management Information System &amp;amp; Minor in Management). &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Second Secondary Education: Sek. Men. Sains Selangor, Cheras, Kuala Lumpur. 1994-95, SPM(Grade 1).&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;First Secondary Education: Sek. Men. Keb. Telok Datok Banting Selangor. 1991-93, PMR(7A 2B)&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Primary Education: Sekolah Kebangsaan Kebun Baharu, Selangor. 1985 -1990, UPSR.&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-size:85%;"&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;Work Experience&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Nov 2007 - current, IT Executive(Web Developer) - Al-Madinah International University, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;responsible to develop, design and maintain company website.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Oct 2001 - Nov 2007, Assistant &lt;/span&gt;&lt;span style="font-size:85%;"&gt;Officer &lt;/span&gt;&lt;span style="font-size:85%;"&gt;of Information Technology(F29) cum&lt;br /&gt;&lt;span style="color: rgb(51, 153, 153);"&gt;Head Of System Development Unit&lt;/span&gt;(2001 - 2005) - Responsible to manage and coordinate outsource development, plan, study &amp;amp; develop in-house system required.&lt;br /&gt;&lt;span style="color: rgb(51, 153, 153);"&gt;Head of Corporate and Multimedia Unit&lt;/span&gt;(2006 - 2007) - Responsible to develop, design and maintain company website, corporate video, manage IT training and manage practical trainee student.&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Sept 2001, Part time Lecturer - Kolej Professional Mara Beranang, Teach Visual Basic Programming for Diploma In Business IT Program. &lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:85%;"&gt;Nov 1995 - June 1996, Machine Operator in NEC Semiconductor(M) Sdn. Bhd. - Semiconductor production in assembly division.&lt;/span&gt; &lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Areas Of Expertise&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;FreeBSD, Linux Suse X, Windows 98/2000/XP.&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Apache Webserver, WAMP, XAMP, PHP Dev.&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;ASP, PHP, C, C++, Visual Basic, VB Script, Java Script, CSS, XML.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;MS Sql Server, Mysql, Oracle, MS Access.&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Mambo, Joomla, Web CMS Technology.&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;Adobe Photoshop, Adobe Illustrator, Adobe Flash, Adobe Dreamweaver.&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style="font-size:100%;"&gt;MS Office (Words, Powerpoint, Excell ect.)&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;font-size:100%;" &gt;Project Experience&lt;/span&gt;&lt;span style="font-size:100%;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;ul&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2001 -&lt;b&gt; Hisbah Online&lt;o:p&gt;&lt;/o:p&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="SV"  style="font-size:85%;"&gt;: MS SQL Server 7.0, IIS, Micromedia Dreamwaver, ASP&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span lang="SV"  style="font-size:85%;"&gt;2003 - 2005 - &lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="SV"&gt;Upgrading Hisbah Online&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="SV"  style="font-size:85%;"&gt;: &lt;/span&gt;&lt;span style="font-size:85%;"&gt;PostgresSQL, PHP, Apache, PDF&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span lang="SV"  style="font-size:85%;"&gt;2003 - 2005 - &lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="SV"&gt;Sistem Nikah, Cerai dan Rujuk Online JAIS&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="SV"  style="font-size:85%;"&gt;: &lt;/span&gt;&lt;span style="font-size:85%;"&gt;PostgresSQL, PHP, Apache, CMS, PDF, HTML&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2003 - &lt;b&gt;UDSK Online &lt;/b&gt;&lt;/span&gt;&lt;span lang="SV"  style="font-size:85%;"&gt;: &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2004 - &lt;b&gt;JAIS Website (new version)&lt;/b&gt; &lt;/span&gt;&lt;span lang="SV"  style="font-size:85%;"&gt;: &lt;/span&gt;&lt;span style="font-size:85%;"&gt;HTML, PHP, Apache&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2005 - &lt;b&gt;&lt;span lang="FI"&gt;Sistem Pemarkahan Peperiksaan Sekolah Agama &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;:&lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt; MySQL, PHP, Apache,TMS&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;2005 -&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="FI"&gt; Sistem E-Halal JAIS &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="SV"  style="font-size:85%;"&gt;: &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2005 -&lt;b&gt;&lt;span lang="FI"&gt; Sistem Perakaunan Kerajaan Negeri Selangor(SPEKS)&lt;br /&gt;&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;Role:&lt;/span&gt;&lt;span style="font-size:85%;"&gt;&lt;b&gt;&lt;span lang="FI"&gt; &lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;SPEKS Technical Officer for JAIS that responsible to implement application, maintain computer equipment for SPEKS and system installation in headquarters, learning centre and JAIS branchers in all Selangor District.&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;2006 -&lt;span style="font-weight: bold;"&gt; JAIS Website versi 6.0&lt;/span&gt; : Mambo, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache, CMS, CSS, HTML.&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2006 -&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt; ICT JAIS Website&lt;/span&gt;&lt;span style="font-size:85%;"&gt; : &lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;Mambo, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache, CMS, CSS, HTML.&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2006 -&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt; Selangor State Mosque Website&lt;/span&gt;&lt;span style="font-size:85%;"&gt; : &lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;Mambo, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache, CMS, CSS, HTML.&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2007 -&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt; JAIS Question &amp;amp; Answer Website&lt;/span&gt;&lt;span style="font-size:85%;"&gt; : &lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;Mambo, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache, CMS, CSS, HTML.&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2007 -&lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt; JAIS Photo Gallery Website&lt;/span&gt;&lt;span style="font-size:85%;"&gt; : &lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;Mambo, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache, CMS, CSS, HTML.&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2007 - &lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;JAIS Corporate Video&lt;/span&gt;&lt;span style="font-size:85%;"&gt; : .avi and DVD&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2007 - &lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;JAIS Interactive Video&lt;/span&gt;&lt;span style="font-size:85%;"&gt; : Flash, Adobe Photoshop, Micromedia Director 8.0&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span style=";font-family:arial;font-size:85%;"  &gt;2007 -&lt;span style="font-weight: bold;"&gt; JAIS Website versi 7.0&lt;/span&gt; : &lt;/span&gt;&lt;span style=";font-family:arial;font-size:85%;"  lang="FI" &gt;Mambo, &lt;/span&gt;&lt;span style=";font-family:arial;font-size:85%;"  &gt;MySQL, PHP, Apache, CMS, CSS, HTML.&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2008 - &lt;/span&gt;&lt;span style="font-weight: bold;font-size:85%;" &gt;Al-Madinah International University Website versi 3.0&lt;/span&gt;&lt;span style="font-size:85%;"&gt; :&lt;/span&gt;&lt;span lang="FI"  style="font-size:85%;"&gt;Joomla, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache, CMS, CSS, HTML.&lt;/span&gt;&lt;/li&gt;&lt;li  style="font-family:arial;"&gt;&lt;span style="font-size:85%;"&gt;2009 - New Website version 4.0 : Wordpress 2.7, &lt;/span&gt;&lt;span style="font-size:85%;"&gt;MySQL, PHP, Apache, CMS, CSS, HTML.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/4999477317987751114-717672889202685408?l=salinaitmind.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://salinaitmind.blogspot.com/feeds/717672889202685408/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://salinaitmind.blogspot.com/2009/01/myself.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/717672889202685408'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/4999477317987751114/posts/default/717672889202685408'/><link rel='alternate' type='text/html' href='http://salinaitmind.blogspot.com/2009/01/myself.html' title='Myself'/><author><name>sutera14</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='24' src='http://2.bp.blogspot.com/_BxG6dhw7_cc/STVF7fC52sI/AAAAAAAAADA/TvKiHn68MYY/S220/DSC01987.JPG'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_BxG6dhw7_cc/SSoBvm0dltI/AAAAAAAAAAU/GYaLVB4G_E4/s72-c/781114105332.jpg' height='72' width='72'/><thr:total>1</thr:total></entry></feed>
