Category Archives: server

htaccess, apache, server related

TAR command

Sharecreate: tar -cvf mystuff.tar mystuff/ tar -czvf mystuff.tgz mystuff/ extracting: tar -xvf mystuff.tar tar -xzvf mystuff.tgz testing/viewing: tar -tvf mystuff.tar tar -tzvf mystuff.tgz Note that .tgz is the same thing as .tar.gz Tar “tars up” a bunch of files into … Continue reading

Posted in apache, linux, server, ssh | Tagged , , , | Leave a comment

what is SOAP

Share How is SOAP Used? There are many possible applications for SOAP, here are just a couple: Business to Business integration – SOAP allows businesses to develop their applications, and then make those applications available to other companies Distributed applications … Continue reading

Posted in developer's Guide, server, xml | Tagged , , | Leave a comment

cannot send out mails

ShareFor some reasons I cannot send out mails using the mail() in php and even trying out any other phpmailer and it only happens with my own domain name but when tyring to send mail to gmail.com it went through. … Continue reading

Posted in server | Tagged , , , , , , , | Leave a comment

domain redirection

ShareAs far as SEO is concerned 301 redirect is the most effecient way of domain redirection. Some ways of doing it: PHP Redirect <? Header( “HTTP/1.1 301 Moved Permanently” ); Header( “Location: http://www.new-url.com” ); ?> .htaccess Options +FollowSymlinks RewriteEngine on … Continue reading

Posted in apache, SEO, server | Tagged , | Leave a comment

error 500

Shareproblem: error 500 on xampp when using htaccess: solution: Locate this file httpd.conf and uncomment this LoadModule mod_rewrite modules/mod_rewrite.sop and restart apache

Posted in apache, server | Tagged , , , | Leave a comment