View Single Post
  #3  
Old 01-24-2009, 07:15 PM
livingingc livingingc is offline
Member
 
Join Date: Jan 2009
Posts: 36
Credits: 4,813
livingingc
Default RE: Terms of Service Violation

ohh k. what do i change the code to? whats the new url? im also donating 10
Quote:
Originally Posted by BMR777
Quote:
Originally Posted by livingingc
I was testing the pet output and its saying "Terms of service violation" on myspace. Apparantly, the code isnt allowed there. Is there a way around this?
You could try adding the following code to a .htaccess file in your public_html folder (Change pets to the location of your installation):

Code:
RewriteEngine On
RewriteBase /pets/

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^pets/get/([0-9]+).gif$ /pets/get.php?id=$1 [L]
Then you would have to edit the bbcode generator in manage.php so that the new URLs for the images are reflected. The code above will hopefully trick MySpace into seeing the dynamic images as static ones, thus hopefully solving the problem.

For more info see: http://www.arvyre.com/forum/viewtopic.php?f=6&t=238

Brandon
[hr]
i figured it out, i forgot to change the path at the rewriterule part at the bottom. Wow. imm glad thats fixed.
Reply With Quote