smiffy
02-14-2006, 01:55 AM
Does anyone know how to set up ioncube loaders? I'm tearing my hair out with it.
It appears I need to modify php.ini to set it to run and also the .htaccess file required for the site I'm trying to set up was modified by the server since it included a php_function, so I'm kinda lost.
As you may have noticed, I'm not a coder, just really good at cutting and pasting :o :p
Here's the .htaccess as it's supposed to be but as I said, it gets modified by the server.
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
php_flag session.use_trans_sid off
RewriteEngine On
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R,L]
RewriteRule ^profile\/([^\/]+)/([0-9]+) publicprofile.php?name=$1&id=$2
RewriteRule ^Category\/[^\/]+/([0-9]+) index.php?catid=$1&mode=category
RewriteRule ^Article/[^\/]+/([0-9]+)/?(.*) article.php?id=$1&act=$2
RewriteRule ^rss/[^\/]+/([0-9]+) rssarticle.php?id=$1
RewriteRule ^myarticles/(.*)$ index.php?mode=myarticles
RewriteRule ^(.*)topauthorslist/ topauthors.php?orderby=$1&ordertype=$2&namelike=$3&page=$4
RewriteRule ^(.*)popularlist/ populararticles.php?page=$2
RewriteRule ^(.*)searchresult/ indexser.php?page=$2
It appears I need to modify php.ini to set it to run and also the .htaccess file required for the site I'm trying to set up was modified by the server since it included a php_function, so I'm kinda lost.
As you may have noticed, I'm not a coder, just really good at cutting and pasting :o :p
Here's the .htaccess as it's supposed to be but as I said, it gets modified by the server.
# -FrontPage-
IndexIgnore .htaccess */.??* *~ *# */HEADER* */README* */_vti*
<Limit GET POST>
order deny,allow
deny from all
allow from all
</Limit>
<Limit PUT DELETE>
order deny,allow
deny from all
</Limit>
php_flag session.use_trans_sid off
RewriteEngine On
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R,L]
RewriteRule ^profile\/([^\/]+)/([0-9]+) publicprofile.php?name=$1&id=$2
RewriteRule ^Category\/[^\/]+/([0-9]+) index.php?catid=$1&mode=category
RewriteRule ^Article/[^\/]+/([0-9]+)/?(.*) article.php?id=$1&act=$2
RewriteRule ^rss/[^\/]+/([0-9]+) rssarticle.php?id=$1
RewriteRule ^myarticles/(.*)$ index.php?mode=myarticles
RewriteRule ^(.*)topauthorslist/ topauthors.php?orderby=$1&ordertype=$2&namelike=$3&page=$4
RewriteRule ^(.*)popularlist/ populararticles.php?page=$2
RewriteRule ^(.*)searchresult/ indexser.php?page=$2