<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1028578" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1028578</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-source-code-protection#comment-1168543</link>
    <description> &lt;p&gt;I agree with Busy&#039;s observation:&lt;/p&gt;
&lt;p&gt;&quot;If the orginals are ever lost, the pages must first be un-encrypted (if possible)&quot;&lt;/p&gt;
&lt;p&gt;So by encrypting a file you can end up blocking yourself when you come to doing some editing and updating, unless you know how to unecrypt it or are meticulous about keeping an unecrypted copy somewhere &quot;safe&quot;.&lt;/p&gt;
 </description>
     <pubDate>Fri, 25 Mar 2005 02:58:30 +0000</pubDate>
 <dc:creator>harryd</dc:creator>
 <guid isPermaLink="false">comment 1168543 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-source-code-protection#comment-1168236</link>
    <description> &lt;p&gt;one addition to Busy&#039;s comment, if you don&#039;t have php enabled on the server, it will show the php source.&lt;/p&gt;
 </description>
     <pubDate>Sun, 20 Mar 2005 01:29:13 +0000</pubDate>
 <dc:creator>CptAwesome</dc:creator>
 <guid isPermaLink="false">comment 1168236 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-source-code-protection#comment-1168197</link>
    <description> &lt;p&gt;encrypting php or any web site files is more trouble than it&#039;s worth, editing, modifing or replacing is a nightmare.&lt;br /&gt;
If the orginals are ever lost, the pages must first be un-encrypted (if possible) then re-encrypted when done.&lt;/p&gt;
&lt;p&gt;As mentioned above, no one can see the source of a server side file (unless server adjusted or you adjust to show), if you don&#039;t believe us, try the following, just copy and paste and name the page testcode.php and upload to your server&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* this is a comment */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;echo &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;Hello, you are now reading me&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;/* my secret is very secret and only I will know it, the secret is ... */&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;echo &lt;/span&gt;&lt;span style=&quot;color: #DD0000&quot;&gt;&quot;&amp;lt;h1&amp;gt;My secret is:&amp;lt;/h1&amp;gt;&quot;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #FF8000&quot;&gt;// this is also a comment &lt;br /&gt;// changed my mind, I&#039;m not going to tell you that my secret is &quot;post-it notes&quot;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$a &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$b &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$c &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$a &lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;- &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$b&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;print &lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;$c&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt; &lt;/p&gt;
&lt;p&gt;what you will see in the source code (view/page source) of the above is:&lt;/p&gt;
&lt;p&gt;Hello, you are now reading me&lt;br /&gt;
My secret is:&lt;br /&gt;
0&lt;/p&gt;
 </description>
     <pubDate>Sat, 19 Mar 2005 08:40:54 +0000</pubDate>
 <dc:creator>Busy</dc:creator>
 <guid isPermaLink="false">comment 1168197 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-source-code-protection#comment-1168194</link>
    <description> &lt;p&gt;This is a php encryptor:&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.ioncube.com/online_encoder.php&quot; class=&quot;bb-url&quot;&gt;http://www.ioncube.com/online_encoder.php&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Seems good to me, but I&#039;m by no means an expert. I&#039;ve noticed that some software vendors use ioncube encoded scripts for their key files.&lt;/p&gt;
&lt;p&gt;You can try it with a simple file first.&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Harry  &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 19 Mar 2005 08:10:00 +0000</pubDate>
 <dc:creator>harryd</dc:creator>
 <guid isPermaLink="false">comment 1168194 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-source-code-protection#comment-1168153</link>
    <description> &lt;p&gt;well, saving it as anything other than a php enabled extension on your server will allow it to be seen, but people will only be able to see the end result because it&#039;s server side.&lt;/p&gt;
 </description>
     <pubDate>Fri, 18 Mar 2005 15:38:11 +0000</pubDate>
 <dc:creator>CptAwesome</dc:creator>
 <guid isPermaLink="false">comment 1168153 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/php-source-code-protection#comment-1168133</link>
    <description> &lt;p&gt;People won&#039;t be able to see your PHP source code unless you actually show them by saving it as a .phps file.&lt;/p&gt;
 </description>
     <pubDate>Fri, 18 Mar 2005 09:32:55 +0000</pubDate>
 <dc:creator>Renegade</dc:creator>
 <guid isPermaLink="false">comment 1168133 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
