Web based operating systems
- bad_brain
- Site Owner
- Posts: 11638
- Joined: 06 Apr 2005, 16:00
- 19
- Location: In your eye floaters.
- Contact:
I took a look at the source, it's no Flash, it's a .gif in a table cell in combination with some Javascript and CSS.
what is the structure of this webspace? is there just a directory where you can upload your files to or are there also some directories above like cgi_bin or phptemp? if yes you could try to place a website in one of these folders and then redirect to it from the actual website directory (by using ../), maybe the banner is only displayed in there.....just the first idea that came to my mind....
what is the structure of this webspace? is there just a directory where you can upload your files to or are there also some directories above like cgi_bin or phptemp? if yes you could try to place a website in one of these folders and then redirect to it from the actual website directory (by using ../), maybe the banner is only displayed in there.....just the first idea that came to my mind....
Okay, that was an easy coding project, but i have yet to see if it works on your website. Right now, the red background page you have on your site, rename that "index2.php".
index.php should be this:
index.php should be this:
Code: Select all
<?PHP
$index = file('index2.php'); //the original index page with an ad
echo "<link rel=\"stylesheet\" type=\"text/css\" href=\"stylesheets/indexcss.css\">"; // pointer to your CSS file
for($a = 111; $a < count($index); $a++)
{
echo $index[$a];
}
?>
¯\_(ツ)_/¯ It works on my machine...
- knightm4r3
- suck-o-fied!
- Posts: 74
- Joined: 28 Dec 2006, 17:00
- 17