FREE WEB HOSTING IS A MYTH
free web hosting doesn`t exist . those who are claming about free hosting are giving false clams. actually free web hosting is myth .
reliable and high performance web hosting is always charged , why ?
reliable and high performance web hosting is provided by good data center and 24×7 support
free web hosting can never solve the purpose of hosting ,different kind of website , portal and application requires different kind of hosting .
to maintain the server and data center huge money is invested and huge team of hosting expert works to provide high performance hosting .
always rember reliable web hosting is charged , the cost may vary according to the web hosting company
if u are looking to host your website and you are in india or you are a web master intrested in reselling then search in google search engine to find cheap web hosting , seo web hosting , reseller hosting and such kinds of keyword you will find good and reliable options for web hosting
live chat such as zopim is a great tool to capture and generate lead
much affordable option then click2call, click2sms
following are the benefits of live chat on your website
Increased Customer Satisfaction
real time way to interact which helps in lead generation & capturing and even satisfies customer and clients .
- Increased Sales and Improved Corporate Branding
- Reduced Operational Costs
- Live Chat Helps Optimize Your Website
imrionline is sharing great online marketing tips and knowledge . imrionline is very informative blog site with search engine optimization knowledge and soial media .the blogs are really impressive and informative with reach content on online marketing.
very important information is shared on that blog regarding online marketing . most importantly the language used is very simple and easy to understand .
those who are looking forward to get insight on online marketing do follow the blog
seo is search engine optimization means geting organic ranking on search engines using content ,
doing various online activity like blog writing , forum submission , online press release submmission , articleship , bookmarking etc . Here content is the king , public relation agency work on content . Traditional p.r agency do offline p.r in news paper , mazines etc so they outsource online agency to do there clients pr
SEM is outsourced by advertising agency as their advertising client who do advertising in print and television media wants to advertise online on google , yahoo , facebook using search engine marketing and other online ad programme .
Online marketing is a new form of media which is emerging day by day and advertising and pr agency have to tieup with speacialist online agency to full fill there clients requirements .
Query caching in Mysql
mysql
1) check whether query cacihng is enabled if ” NO”
2)mysql> show variables like ‘have_query_cache’;
3)SET GLOBAL query_cache_size = 8388608;
4)SET GLOBAL query_cache_type = 1;
5)Enable query caching in /etc/my.cnf
query_cache_size = 268435456
query_cache_type=1
Java Installation
I chose to install Sun’s Java 2 Platform, Standard Edition, which can be downloaded from http://java.sun.com/j2se/). I chose the J2SE v1.4.2 SDK Linux self-extracting binary file.
Change to the directory where you downloaded the SDK and make the self-extracting binary executable:
chmod +x j2sdk-1_4_2-linux-i586.bin
Run the self-extracting binary:
./j2sdk-1_4_2-linux-i586.bin
here should now be a directory called j2sdk1.4.2 in the download directory. Move the SDK directory to where you want it to be installed. I chose to install it in /usr/java. Create /usr/java if it doesn’t exist. Here is the command I used from inside the download directory:
mv j2sdk1.4.2 /usr/java
Set the JAVA_HOME environment variable, by modifying /etc/profile so it includes the following:
JAVA_HOME=”/usr/java/j2sdk1.4.2?
export JAVA_HOME
/etc/profile is run at startup and when a user logs into the system, so you will need to log out and log back in for JAVA_HOME to be defined.
You should have to logout from the server to check whether its workgin fine.
exit
su -
Check to make sure JAVA_HOME is defined correctly using the command below. You should see the path to your Java SDK.
Check to make sure JAVA_HOME is defined correctly using the command below. You should see the path to your Java SDK.
TOMCAT Installation
Download it from
http://tomcat.apache.org/
You will install and configure Tomcat as root; however, you should create a dedicated group and user account for Tomcat to run under as follows:
groupadd tomcat
useradd -g tomcat tomcat
tar xvzf apche-tomcat-5.0.28.tar.gz
mv jakarta-tomcat-5.0.28 /usr/local/
chown -R tomcat.tomcat /usr/local/apache-tomcat-5.0.28
cd /usr/local/apache-tomcat-5.0.28/bin
tar -xvzf jsvc.tar.gz
cd jsvc-src
chmod +x configure
./configure
make
cp jsvc ..
cd ..
./startup.sh
open web browser and type http://localhost:8080/ you should see the Tomcat Administration page
go to webapps/ROOT in the tomcat directory and create page hello.html and write in it
Hello Tomcat
open the URL http://localhost:8080/hello.html you should see your page
* Make JSP page
go to webapps/ROOT in the tomcat directory and create page hello.jsp and write in it the following lines
< %=new String(“Hello Ahmed Hashim”)% >
< %=new java.util.Date()% >
save and run the following URL http://localhost:8080/hello.jsp you should see my Name
* Monitor Tomcat
you can see the log file in the logs directory
* Stop Tomcat
go to the tomcat bin directory
#./shutdown.sh
You can add users in
cd /usr/local/tomcat/conf
vi tomcat-users.xml
And access it at
http://localhost:8080/manager/html
Username : from tomcat-users.xml
Password : l…
nstalling Ruby on cPanel
Here’s how to install Ruby on Rails on a cPanel system:
Update: These instructions were modified for Ruby 1.8.6, since 1.8.5 is no longer available!
First install Ruby:
wget ftp://ftp.ruby-lang.org/pub/ruby/1.8/ruby-1.8.6.tar.gz
tar -xvzf ruby-1.8.6.tar.gz
cd ruby-1.8.6
./configure
make
make install
Now, install the Gems and Rails:
wget http://rubyforge.org/frs/download.php/11289/rubygems-0.9.0.tgz
tar -xvzf rubygems-0.9.0.tgz
cd rubygems-0.9.0
ruby setup.rb
gem install rails
Install Fast CGI
wget fastcgi.com/dist/fcgi-2.4.0.tar.gz
tar -xvzf fcgi-2.4.0.tar.gz
cd fcgi-2.4.0
./configure
make
make install
wget fastcgi.com/dist/mod_fastcgi-2.4.2.tar.gz
tar -xvzf mod_fastcgi-2.4.2.tar.gz
cd mod_fastcgi-2.4.2
/usr/local/apache/bin/apxs -o mod_fastcgi.so -c *.c
/usr/local/apache/bin/apxs -i -a -n fastcgi mod_fastcgi.so
gem install fcgi
Edit the Apache config file and add the fcgi module:
pico /usr/local/apache/conf/httpd.conf
LoadModule fastcgi_module libexec/mod_fastcgi.so
FastCgiIpcDir /tmp/fcgi_ipc/
AddHandler fastcgi-script .fcgi
< /IfModule>
Then restart Apache
Install RMagick and GetText:
wget http://umn.dl.sourceforge.net/sourceforge/graphicsmagick/GraphicsMagick-1.1.7.tar.gz
tar -xvzf GraphicsMagick-1.1.7.tar.gz
cd GraphicsMagick-1.1.7
./configure
make
make install
Install MySQL for Ruby:
gem install mysql
Now make the test Installation. To do this, log in as your user (not root)
su user
cd ~
rails test
cd public_html
ln -s ../test/public/ rails
cd ../test/
chmod -Rf 777 tmp/
cd public
chmod 755 dispatch.fcgi
pico .htaccess
Now, find the line in the .htaccess that looks something like this:
RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
And change “dispatch.cgi” to “dispatch.fcgi”
To see if you’ve installed everything properly, just browse to the Rails folder:
http://yourdomain.com/rails/
———————————————————————————–
Also You can install ruby on rails using cpanel script
# ll /scripts/installruby (check whether the script has permission 755)
#chmod 755 /scripts/installruby
# vi /scripts/installruby
Change $INS{‘ruby’} = [1,8,0]; TO $INS{‘ruby’} = [1,8,2]; :: Save and Exit
#/scripts/installruby
After the completion of ruby installation you may need to run gems
#gem install ruby
Check the installation by ::
#ruby -v
#gem -v
Once this is done you may need to install more gems.
You can install that by
gem install gemname
if this doesn’t work try downloading gems from http://rubygems.org/gems/ and try
gem install gemname
1)Download latest version of php from www.php.net/downloads.php
2)unzip it
3)cd php.5.2.x
4) php -i | grep config > phpbuild.sh
5):%s// /g to remote all quotes
6)sh phpbuild.sh
7) make
backup libphp5.so from /usr/local/apache/modules or /usr/local/apache/libexec
9) make install
10) restart httpd
Steps to use Email on BlackBerry®
1.Activate it from Our Email Panel
2.You can directly access sent and spam mail folders
You can configure your BlackBerry® device to open mail from your sent folder (or spam folder) directly in your inbox. Simply configure the device to log into email using your email address, plus /sent or /spam, as the username (for example, user@example.com/sent).
BlackBerry® Level 3 Integration
If Research in Motion (RIM), recognizes you as a Mail Service Provider (MSP), this server can answer subscription requests at the following URLs: https://mail.yourdomain.com:2096/rim-bis/v1
https://webmail.yourdomain.com/rim-bis/v1
Note: For security, these URLs can only be accessed by a server running BIS.
You can use simple curl function in php for accessing sites using http proxy.
here is the sample code.
$loginpassw = 'login:password'; //your proxy login and password here $proxy_ip = '127.0.0.1'; //proxy IP here $proxy_port = 8080; //proxy port from your proxy list $url = 'http://ideastack.com'; //URL to get $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, 0); // no headers in the output curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // output to variable curl_setopt($ch, CURLOPT_PROXYPORT, $proxy_port); curl_setopt($ch, CURLOPT_PROXYTYPE, 'HTTP'); curl_setopt($ch, CURLOPT_PROXY, $proxy_ip); curl_setopt($ch, CURLOPT_PROXYUSERPWD, $loginpassw); $data = curl_exec($ch); curl_close($ch); echo $data;