<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<title><![CDATA[SKSA Technology]]></title>
<link><![CDATA[https://support.internet-webhosting.com/]]></link>
<description />
<generator><![CDATA[Kayako fusion v4.93.03]]></generator>
<item>
<title><![CDATA[.htaccess Tutorial for Beginners]]></title>
<link><![CDATA[https://support.internet-webhosting.com/index.php?/Knowledgebase/Article/View/]]></link>
<guid isPermaLink="false"><![CDATA[182be0c5cdcd5072bb1864cdee4d3d6e]]></guid>
<pubDate><![CDATA[Tue, 16 Sep 2008 19:44:33 +0800]]></pubDate>
<dc:creator><![CDATA[- NA -]]></dc:creator>
<description><![CDATA[
This tutorial will demonstrate how to use .htaccess files to perform several basic 
Apache and PHP configurations at the directory level.  This tutorial makes the following assumptions:


You are using Apache as your webserver.Your web host has enab...]]></description>
<content:encoded><![CDATA[<p style="font-family: tahoma,arial,helvetica,sans-serif;">
This tutorial will demonstrate how to use .htaccess files to perform several basic 
Apache and PHP configurations at the directory level.  This tutorial makes the following assumptions:
</p>

<ul style="font-family: tahoma,arial,helvetica,sans-serif;"><li>You are using Apache as your webserver.</li><li>Your web host has enabled .htaccess override for your account.</li><li>For the PHP configuration, you must be running PHP as an Apache module.</li></ul>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">
If you're not sure about whether these statements are true, check with your web host's technical support department.
</p>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">
There several types of configuration that can be performed using a
.htaccess file. These include authorization, redirects, changing the
index file name, displaying custom error pages, and changing PHP
configuration settings. </p>
<p style="font-family: tahoma,arial,helvetica,sans-serif;">
To perform such configuration, simply create a file named .htaccess
(the dot in front is required) in the folder where you would like the
settings to be applied. Any settings you configure for this directory
will also be applied recursively to all of its sub directories. Note
that some FTP clients may be configured to hide files that start with a
dot. If this is the case, you may need to reconfigure your FTP client
to display these files.
</p>

<h3 style="font-family: tahoma,arial,helvetica,sans-serif;">Changing the index file name</h3>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">The index file is the file that gets displayed automatically when a
user browses to a directory. Historically, the index file is called
index.html or index.htm. On a PHP powered site, you may want your index
file to be named index.php. This can be accomplished by putting the
following line in your .htaccess file:
</p>

<code style="font-family: tahoma,arial,helvetica,sans-serif;">
DirectoryIndex index.php index.html
</code>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">The directive above instructs Apache to use index.php as the index
file if it exists, otherwise it should look for a file named
index.html. If neither file exists in the requested directory, the user
will usually get a directory listing.
</p>

<h3 style="font-family: tahoma,arial,helvetica,sans-serif;">Using a custom error page</h3>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">Everyone at one point or another encounters the dreaded &quot;HTTP 404 -
File Not Found&quot; error message. Perhaps the user followed a broken link,
or mistyped the URL of the page they were looking for. The default
error page is usually quite ugly. However, it is possible to use a
custom error page for this or any other HTTP error. This can be done by
placing the line below in your .htaccess file:
</p>

<pre style="font-family: tahoma,arial,helvetica,sans-serif;">ErrorDocument 404 http://www.mysite.com/404.html<br /></pre>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">
Replace &quot;http://www.mysite.com/404.html&quot; with the URL for the page you want the user to see when they request a missing file.
</p>
<p style="font-family: tahoma,arial,helvetica,sans-serif;">
It is important that your custom &quot;file not found&quot; page returns the HTTP 404 
status code, otherwise your site could be penalized by the search engines.  
You can do this by adding the following PHP code at the top of your 404 page.
</p>

<pre style="font-family: tahoma,arial,helvetica,sans-serif;">&lt;?php<br />   header(&quot;HTTP/1.0 404 Not Found&quot;);<br />?&gt;<br /></pre>

<h3 style="font-family: tahoma,arial,helvetica,sans-serif;">Denying access to a directory</h3>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">Sometimes, there may be directories on your website that the user
shouldn't be able to directly request files from. For example, you may
have a directory that stores data files for your scripts, or a set of
PHP includes. Placing the lines below in the .htaccess file for that
directory will block direct requests for those files:
</p>

<pre style="font-family: tahoma,arial,helvetica,sans-serif;">Order Deny,Allow<br />Deny from all <br /></pre>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">The first line ensures that the deny directive is evaluated before
any allow directives that may have been defined elsewhere in the
directory hierarchy.
</p>

<h3 style="font-family: tahoma,arial,helvetica,sans-serif;">Redirecting requests</h3>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">Over time, files on a website may get moved or renamed. Rather than
letting the user to see a 404 error message when requesting the old
file, you can redirect them to the new file using the following
directive:
</p>

<pre style="font-family: tahoma,arial,helvetica,sans-serif;">Redirect permanent /old.php http://www.mysite.com/new.php<br /></pre>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">
The <code>permanent</code> keyword indicates that an HTTP 301 (&quot;resource has moved permanently&quot;) status code should be returned to the web browser.
Replace &quot;old.php&quot; with the path to the old file, and &quot;http://www.mysite.com/new.php&quot; with the URL to the new file.
</p>

<h3 style="font-family: tahoma,arial,helvetica,sans-serif;">PHP configuration</h3>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">Lastly, .htaccess files can be used to change PHP settings when
running as an Apache module. Such configuration is performed using the <code>php_value</code> and <code>php_flag</code>
directives. Use the later when the setting takes a boolean value. For
example, to turn off register globals from .htaccess, use the following
line:
</p>

<pre style="font-family: tahoma,arial,helvetica,sans-serif;">php_flag register_globals off<br /></pre>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">The following directive can be used to turn off magic quotes for all PHP scripts in a directory:</p>

<pre style="font-family: tahoma,arial,helvetica,sans-serif;">php_flag magic_quotes_gpc off<br /></pre>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">To enable or disable error reporting, use the <code>php_flag</code> directive to set the <code>display_errors</code> flag.  Enabling this flag will cause error messages to be displayed in the browser, e.g.:</p>

<pre style="font-family: tahoma,arial,helvetica,sans-serif;">php_flag display_errors on<br /></pre>

<p style="font-family: tahoma,arial,helvetica,sans-serif;">
To hide error messages from the end user, simply disable the <code>display_errors</code> flag:
</p>

<pre style="font-family: tahoma,arial,helvetica,sans-serif;">php_flag display_errors off<br /></pre>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How to move my Joomla application to a different folder?]]></title>
<link><![CDATA[https://support.internet-webhosting.com/index.php?/Knowledgebase/Article/View/]]></link>
<guid isPermaLink="false"><![CDATA[19ca14e7ea6328a42e0eb13d585e4c22]]></guid>
<pubDate><![CDATA[Tue, 08 Jun 2010 11:01:14 +0800]]></pubDate>
<dc:creator><![CDATA[- NA -]]></dc:creator>
<description><![CDATA[Many web designers prefer to build their websites in test 
folders and when their development is over to move their Joomla 
applications to the root folder of their hosting accounts.

For the purpose of this article let us presume that we have a Jooml...]]></description>
<content:encoded><![CDATA[<p>Many web designers prefer to build their websites in test 
folders and when their development is over to move their Joomla 
applications to the root folder of their hosting accounts.<br />
<br />
For the purpose of this article let us presume that we have a Joomla 1.5
 installed in the <em>public_html/<strong>test</strong></em> folder in 
our account and we want to move it to the <em>public_html</em> directory
 so that it will be directly accessible through <em>www.yourdomain.com</em>.<br />
<br />
This change consists of the following steps:<br />
<br />
1. Move all of the files and folders from your Joomla folder to the new 
directory. In our case from <em>public_html/test</em> to <em>public_html</em></p>
<p><br />
2. Reconfigure your application. You should edit your <strong>configuration.php</strong>
 file and make the following changes in it:<br />
<br />
Change: <em>var $log_path = '/home/user/public_html/test/logs';</em><br />
To: <em>var $log_path = '/home/user/public_html/logs';</em><br />
<br />
Change: <em>var $tmp_path = '/home/user/public_html/test/tmp';</em><br />
To: <em>var $tmp_path = '/home/user/public_html/tmp';</em><br />
<br />
Change: <em>var $ftp_root = '/public_html/test';</em><br />
To:<em> var $ftp_root = '/public_html';</em><br />
<br />
Change: <em>var $live_site = '<a class="moz-txt-link-freetext" href="http://www.yourdomain.com/testing">http://www.yourdomain.com/test</a>';</em><br />
To: <em>var $live_site = '<a class="moz-txt-link-freetext" href="http://www.yourdomain.com/">http://www.yourdomain.com</a>';</em></p>
<p>&nbsp;</p>
3. Remove the content of your cache folder (<em>public_html/cache</em>
 in our case)
]]></content:encoded>
</item>
<item>
<title><![CDATA[Make PHP to work in your HTML files with .htacess ]]></title>
<link><![CDATA[https://support.internet-webhosting.com/index.php?/Knowledgebase/Article/View/]]></link>
<guid isPermaLink="false"><![CDATA[1c383cd30b7c298ab50293adfecb7b18]]></guid>
<pubDate><![CDATA[Fri, 07 May 2010 13:01:40 +0800]]></pubDate>
<dc:creator><![CDATA[- NA -]]></dc:creator>
<description><![CDATA[By default most web servers across the internet are configured to treat 
as PHP files only files that end with .php. In case you need to have 
your HTML files parsed as PHP (e.g .html)you can do the following:AddHandler application/x-httpd-php5 .html .h...]]></description>
<content:encoded><![CDATA[By default most web servers across the internet are configured to treat 
as PHP files only files that end with .php. In case you need to have 
your HTML files parsed as PHP (e.g .html)<br /><br />you can do the following:<br /><br /><span class="mediumtext">AddHandler application/x-httpd-php5 .html .htm 
.php</span><br /><br />]]></content:encoded>
</item>
<item>
<title><![CDATA[Setting Up Dreamweaver (or Dreamweaver MX with a Cpanel Hosting a...]]></title>
<link><![CDATA[https://support.internet-webhosting.com/index.php?/Knowledgebase/Article/View/]]></link>
<guid isPermaLink="false"><![CDATA[a5bfc9e07964f8dddeb95fc584cd965d]]></guid>
<pubDate><![CDATA[Mon, 28 Nov 2011 14:03:43 +0800]]></pubDate>
<dc:creator><![CDATA[M.Irwan]]></dc:creator>
<description><![CDATA[There are many ways to connect and update your files on your
hosting account (FTP, Frontpage, Cpanel File Manager).Â  One of the
most popular is Dreamweaver.Â  We have assembled this easy to use
guide to connecting Dreamweaver to your account.

Will ...]]></description>
<content:encoded><![CDATA[<b>There are many ways to connect and update your files on your
hosting account (FTP, Frontpage, Cpanel File Manager).Â  One of the
most popular is Dreamweaver.Â  We have assembled this easy to use
guide to connecting Dreamweaver to your account.<br />
<br />
Will Dreamweaver work with my hosting account?</b>
<ul>
Yes.Â  Dreamweaver will connect directly to your hosting account
and will sync with it.Â  DW should be able to upload all of your
files and you may use it to update your site easily.Â  Please make
sure to know where your local web files are stores on your PC before
starting this tutorial.Â  Or if you are creating a new website, you
can choose any location on your PC to start a site with.<br />
</ul>
<b>What initial data do I need?</b>
<blockquote>Your domain name.Â  Your ftp username and
password.Â  You should have all of this information from your
welcome email that we sent you.Â  If you do not have this connect
us ASAP.<br />
</blockquote>
<b>CONNECTION PROCEDURE:</b>
<blockquote>To use Dreamweaver you must connect your PC to our server
using the Dreamweaver program.Â  The following covers that
procedure.<br />
  
<img src="http://www.webcs.com/help/docs5/dm1.gif" /><br />
  <img alt="connecting Dreamweaver to Cpanel" src="dreamweaver_files/dm1.gif" /><br />
  <br />

Lanch Dreamweaver on your PC.<br />
Use the menu at the top and select SITE, then select MANGE SITES.<br />
Click NEW SITE<br />
Name your site anything, like myWebSite<br />
ok now click on the ADVANCED TAB<br />
  <br />
  <img vspace="0" hspace="0" border="0" src="http://www.webcs.com/help/docs5/dm2.gif" /><br />
  <br />
You should see Local info and Remote info now.Â  Local info is
where your website files reside on you PC, that is why it is called
local.Â  Remote info is the info on your server account here.<br />
  <br />
You should already see your site name filled in.Â  Press on the
icon to the right of Local root folder and find where your website
files are on your PC.Â  If it is an existing website, choose that
existing folder.Â  If it is a new website, create a new
folder.Â  Do the same with the default images folder.Â  (Note
that only you will know where your local PC files are).<br />
  <br />
For http:// address enter your domain name you registered with
us.Â  IE if your domain is rabbit.com, you would enter
http://rabbit.com<br />
  <br />
Ok your local info is now defined.Â  Now click on the REMOTE INFO
tab.<br />
  <br />
  <img vspace="0" hspace="0" border="0" src="http://www.webcs.com/help/docs5/dm3.gif" /><br />
  <br />
  <br />
Select REMOTE INFO<br />
Set Access to mode FTP<br />
  <span style="font-weight: bold;">FTP HOST</span>:Â  Will be your
domain name minus any http://www.Â  Ie if your domain name is
rabbit.com then that is all you enter here.Â  Do not enter www.<br />
  <span style="font-weight: bold;">Host Directory</span>: For all
Cpanel enabled accounts enter <span style="font-weight: bold;">public_html/</span><br />
make sure to include the backslash /<br />
  <span style="font-weight: bold;">Username:</span> Enter your master
FTP username as stated in your welcome email<br />
  <span style="font-weight: bold;">Password:</span> Enter your master
FTP password as stated in your welecome email<br />
Click on SAVE PASSWORD so you don't have to re-enter it<br />
  <span style="font-weight: bold;">Passive transfers:</span> click this
box ON (if you have connection troubles you can try clicking it off).<br />
Firewall: You usually leave this checked off<br />
SFTP: You usually leave this checked off<br />
Checkin and checkout:Â  Use this option if you only want altered
files to transfer to the server.Â  Leave it off if you want the
entire site to transfer each time.<br />
  <br />
Click on test to test your logon.Â  If it does not work, try
tweaing your Passive and Firewall settings.<br />
If it works of press OK at the bottom of the page to exit this page.<br />
  <br />
  <img vspace="0" hspace="0" border="0" style="width: 292px; height: 277px;" src="http://www.webcs.com/help/docs5/dm4.gif" alt="dreamweaver setup cpanel" /><br />
  <br />
Ok now click on DONE and your project should appear in the RIGHT
SIDEBAR of DreamWeaver as shown below.<br />
  <br />
  <img src="dreamweaver_files/dm5.gif" /><br />
  <br />
You have successfully setup Dreamweaver to connect with the
server.Â  If you run into any problems please contact support and
we will assist you.<br />
  <br />
Ok now how do I FTP my webfiles to the Server?<br />
  <br />
In the right sidebar, shown above.Â  Select your project, IE
myWebSite.Â  <br />
Now click on the first PLUG icon (it is the little blue PLUG icon just
to the left of the circular arrow icon.<br />
If you get a POP-UP screen at this point requesting local or remote
info then you did not correctly configure your connection.Â  Repeat
the steps at the start of this page.Â  Assuming you do not get that
pop-up page, Dreamweaver should now connect.<br />
If you get no connection errors continue.<br />
  <br />
  <img vspace="0" hspace="0" border="0" src="http://www.webcs.com/help/docs5/dm6.gif" /><br />
  <br />
  <br />
You should not be connected to the server. <br />
To view the files on the remote server connect on the icon shown above,<br />
This should open a view of the local server (your PC on the right) and
the server (on the left).<br />
  <br />
  <img vspace="0" hspace="0" border="0" src="http://www.webcs.com/help/docs5/dm7.gif" /><br />
  <br />
Assuming you have not transfered files yet, or you have added or edited
files, the remote side will not look like the local side. You need to
SYNC your files so the PC looks like the server.<br />
Click on SITE -&gt; SYNCHRONIZE<br />
You can then choose to SYNC specific files you highlighted in the file
menu above or all of the files.<br />
  <br />
  <img vspace="0" hspace="0" border="0" src="http://www.webcs.com/help/docs5/dm8.gif" /><br />
  <br />
If you want to send ALL files from your PC to the SERVER select Put
newer files to remote.<br />
If you want to send ALL files from the server to your PC select put
newer files to local.<br />
Be careful of the DELETE REMOTE FILES option.Â  If selected it
usually will delete<br />
files that do not appear on on side or the other.<br />
Click Preview<br />
Click OK<br />
Your PC and server should be in SYNC<br />
  <br />
You can also move just one file by selecting it in the sidebar menu and
pressing on the UP or DOWN<br />
arrows.<br />
</blockquote>
<b>I see a file list when I goto my domain but not my website?</b>
<blockquote>Make sure to name your welcome page index.html then upload
it.Â  This will fix this.<br />
  <br />
  <object width="982" height="719" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><br />
  <br />
  </object></blockquote>



]]></content:encoded>
</item>
<item>
<title><![CDATA[Website with font-awesome slow]]></title>
<link><![CDATA[https://support.internet-webhosting.com/index.php?/Knowledgebase/Article/View/maxcdn-bootstrap-cdn-font-awesome-slow]]></link>
<guid isPermaLink="false"><![CDATA[7f39f8317fbdb1988ef4c628eba02591]]></guid>
<pubDate><![CDATA[Tue, 05 Jul 2022 15:58:20 +0800]]></pubDate>
<dc:creator />
<description><![CDATA[If you are using font-awesome via maxcdn there are possibilities your website become slow. The issue is related with MCMC blocked URL causing delay on loading the website which is using the service.
This workaround is applicable to Linux and Windows host...]]></description>
<content:encoded><![CDATA[<p>If you are using font-awesome via maxcdn there are possibilities your website become slow. The issue is related with MCMC blocked URL causing delay on loading the website which is using the service.</p>
<p>This workaround is applicable to Linux and Windows hosting.</p>
<p>You can check at browser loading status at the bottom of the browser during site loading, if they are url like 'maxcdn.bootstrapcdn.com', this may be related with the issue.</p>
<p>If you find files that use the maxcdn link, you can refer to the link below to get a replacement</p>
<p><strong>https://cdnjs.com/libraries/font-awesome/</strong></p>
<p>e.g. replacement:-</p>
<p>original link: <strong>https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css</strong><br />new link: <strong>https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css</strong></p>
<p>make sure the version and link type are the same</p>
<p><strong>css replace with css</strong><br /><strong>font replace with font</strong></p>]]></content:encoded>
</item>
</channel>
</rss>