Now, we all know that free hosts put on advertisement forcefully.
I am using a free host from a service ( i would like to keep it discreet ). they put a pretty big banner on my site.
while using HTML pages, i managed to remove the banner easily using <iframes> ..
however.. while using php files, i had some problems.
this morning, i installed wordpress there.
after wordpress has been installed, the installer sends u the pass using the STMP server of your host.
however, in this free hosting, STMP server was disabled.. thus, i could not get the pass and was stuck !
then, with no where to go .. i turned on the phpmyadmin and searched for the field that stored the password for my username
i got the password storage field ..
under the wp_users table ..
however, the password was not stored in plaintxt
so i asked hasin bhai, if there was a built in functionality to convert plaintxt to md5 hashes .. he said he was busy but added later that i should try using the md5() function.
i was lazy .. to make a new file n experiment ( but thats how u learn things ;P ) ..
anyway, what i did was encrypted a pass in md5 and replaced the value in the phpmyadmin table..
and after saving it and using that password in plaintxt worked

. . it was really amazing , first thing in the morning . .
sigh .. ( these are amazing things for comp nerds .. dunno about u sad folks :P )
word of the day "presto!"
so, the password problem was solved.
now the problem is with the banner they put on my site ( chk it out ehabmehedi.net )
i am still trying to solve it . .if there is anyone here who can find a way, please lemme know : )
here is the method i am trying to use right now ..
Quote:
<style><!--iframe{display:none;}--></style>
Put this after the <body> tag.
Don't forget to change your background.
<div style="position:relative;top:-135;z-index:0;background:red;">
Put this before the </body> tag.
</div>
|