Archive for the 'Programming & Design' Category



Any ideas to why i get this error?

Monday 1 March 2010 @ 4:05 pm
expired domain names
Microanalyst asked:

i get this error when i execute the PHP here there is no problem entering data its only when the submit button is pressed that the error happens.Please help Im stuck and a newbie in php!

New member registration
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘ 1, 0, 0, 0, ‘2007-01-19 22:12:42′, 0, ‘2007-01-19 22:12:42′, ‘n

<?php
session_start();
session_register("sess_data");
session_register("ref");
session_register("sess_name");
session_register("sess_passwd");
include("vars.php");
include("headfoot.php");
mysql_connect($db_host, $db_user, $db_pwd);
mysql_select_db($db_name);
if ($_SERVER['REMOTE_ADDR']=='127.0.0.1') {$_SERVER['REMOTE_ADDR']=$_SERVER['HTTP_X_FORWARDED_FOR'];}
if ($_GET['ref'] && is_numeric($_GET['ref'])) {
$rck = mysql_query("SELECT * FROM user WHERE id=$_GET[ref] && status='Active'");
if (mysql_num_rows($rck) != 0) {
$acctype = mysql_result($rck, 0, "acctype");
$creditme = mysql_result(mysql_query("SELECT rpgebonus FROM acctype WHERE id=$acctype"), 0);
$_SESSION['ref'] = $_GET['ref'];
$ipis = $_SERVER['REMOTE_ADDR'];
$validip = 'no';
if (is_string($ipis) && ereg('^([0-9]{1,3})\.([0-9]{1,3})\.' . '([0-9]{1,3})\.([0-9]{1,3})$', $ipis, $sect)) {
if ($sect[1] <= 255 && $sect[2] <= 255 && $sect[3] <= 255 && $sect[4] 0) {
$ressu = mysql_query(”SELECT * FROM referstats WHERE usrid=$_GET[ref] && refip=’$recip’”) or die (mysql_error());
if (mysql_num_rows($ressu) == 0) {
$todayis = date(”Y-m-d”);
$timeis = date(”H:i:s”);
$htt_ref = $_SERVER['HTTP_REFERRER'];
if ($htt_ref == “”) {
$htt_ref = “Direct Request/Referring Info Blocked”;
}
$updateit = mysql_query(”INSERT INTO referstats (usrid, orgip, refip, cdate, ctime, httpref, browser) VALUES ($_GET[ref], ‘$ipis’, ‘$recip’, ‘$todayis’, ‘$timeis’, ‘$htt_ref’, ‘”.$_SERVER['HTTP_USER_AGENT'].”‘)”) or die (mysql_error());
if ($creditme > 0) { $swe = mysql_query(”UPDATE user SET credits=credits+$creditme, rpage_credits=rpage_credits+$creditme, lifetime_credits=lifetime_credits+$creditme WHERE id=$_GET[ref]“) or die (mysql_error()); $iearned_n = “I just earned $creditme credit(s) for showing you this page!”; }
}
}
} else {
$_GET['ref'] = 0;
}
}
uheader();
include(”main_page.php”);
ufooter();
mysql_close;
exit;
?>

HERES THE BATABASE sqlinfo

CREATE TABLE 7stat (
usrid int(11) default NULL,
date date default NULL,
time time default ‘00:00:00′,
pg_views int(11) default ‘0′,
num float default NULL,
received_pay char(3) default ‘no’
) TYPE=MyISAM;

CREATE TABLE 7statsite (
siteid int(11) default NULL,
date date default NULL,
last_hit_time time default ‘00:00:00′,
num int(11) default NULL
) TYPE=MyISAM;

CREATE TABLE abuse (
id int(11) NOT NULL auto_increment,
siteid int(11) default NULL,
usrid int(11) default NULL,
text text,
date timestamp(14) NOT NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE acctype (
id int(11) NOT NULL auto_increment,
name varchar(100) default NULL,
descr text,
ratemin float default ‘0′,
ratemax float default ‘0′,
cost float default ‘0′,
cashout float default ‘0′,
commissions float default ‘0′,
min_sites int(11) default ‘0′,
monthly_bonus float default ‘0′,
upg_time int(11) default ‘0′,
rpgebonus float default ‘0′,
rbonuses varchar(100) default NULL,
levels varchar(100) default NULL,
ptc_levels varchar(100) default NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;

INSERT INTO acctype VALUES (1, ‘Free Member’, ‘Free account’, ‘0.5′, ‘0.8′, ‘0′, ‘15′, ‘0.1′, 10, ‘0′, 0, 0.5, ‘100,50,30,20,10′, ‘20,10,5,5,5′, ‘20,10,5,5,5′);
INSERT INTO acctype VALUES (2, ‘Upgraded Member’, ‘1:1 Upgraded Membership
\r\n1:1 Surf Ratio!
Purchase 1 Upgrade Credit and automatically upgrade to 1:1 Upgraded Status!’, ‘0.8′, ‘1′, ‘10′, ‘10′, ‘0.1′, 100, ‘1000′, 365, 1, ‘100,50,30,20,10′, ‘30,20,10,5,5′, ‘20,10,5,5,5′);

CREATE TABLE ad_info (
ad_id int(11) NOT NULL auto_increment,
ad_name varchar(100) NOT NULL default ”,
type int(11) NOT NULL default ‘0′,
link_url text NOT NULL,
banner_url text NOT NULL,
h int(11) NOT NULL default ‘0′,
w int(11) NOT NULL default ‘0′,
alt varchar(100) NOT NULL default ”,
bottom_text varchar(100) NOT NULL default ”,
mouse_text varchar(100) NOT NULL default ”,
html text NOT NULL,
num_allow_exp int(11) NOT NULL default ‘0′,
num_exp int(11) NOT NULL default ‘0′,
num_clicks int(11) NOT NULL default ‘0′,
prob int(11) NOT NULL default ‘0′,
win int(11) NOT NULL default ‘0′,
adv_user int(11) default ‘0′,
date varchar(10) NOT NULL default ”,
PRIMARY KEY (ad_id)
) TYPE=MyISAM;

CREATE TABLE admin (
field varchar(20) default NULL,
value varchar(255) default NULL
) TYPE=MyISAM;

INSERT INTO admin VALUES (’login’, ‘admin’);
INSERT INTO admin VALUES (’email’, NULL);
INSERT INTO admin VALUES (’passwd’, ‘admin’);
INSERT INTO admin VALUES (’lastaccess’, ‘0′);
INSERT INTO admin VALUES (’lastac’, ‘0′);
INSERT INTO admin VALUES (’lastacip’, ‘0.0.0.0′);
INSERT INTO admin VALUES (’lastip’, ‘0.0.0.0′);
INSERT INTO admin VALUES (’lstcrn’, ‘0000-00-00′);

CREATE TABLE adminprops (
field varchar(6) default NULL,
value float default ‘0′
) TYPE=MyISAM;

INSERT INTO adminprops VALUES (’inibon’, ‘1000′);
INSERT INTO adminprops VALUES (’insbon’, ‘1′);
INSERT INTO adminprops VALUES (’reftim’, ‘6′);
INSERT INTO adminprops VALUES (’negact’, ‘0′);
INSERT INTO adminprops VALUES (’contex’, ‘5′);
INSERT INTO adminprops VALUES (’contey’, ‘2′);
INSERT INTO adminprops VALUES (’contcx’, ‘6′);
INSERT INTO adminprops VALUES (’contcy’, ‘0.005′);
INSERT INTO adminprops VALUES (’surplu’, ‘0′);
INSERT INTO adminprops VALUES (’csurpl’, ‘0′);
INSERT INTO adminprops VALUES (’sharec’, ‘10′);
INSERT INTO adminprops VALUES (’sharea’, ‘1000′);
INSERT INTO adminprops VALUES (’inact’, ‘180′);

CREATE TABLE banned_emails (
id int(11) NOT NULL auto_increment,
value varchar(255) default NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;

INSERT INTO banned_emails VALUES (1, ‘*@mail.com’);

CREATE TABLE banned_ipadds (
id int(11) NOT NULL auto_increment,
value varchar(15) default NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE banned_sites (
id int(11) NOT NULL auto_increment,
domain varchar(255) default NULL,
type char(1) default NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE banner (
id int(11) NOT NULL auto_increment,
imgurl varchar(255) default NULL,
widtheight varchar(24) default NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE cashout_history (
id int(11) NOT NULL auto_increment,
usrid int(11) default ‘0′,
amount float(10,2) default ‘0.00′,
descr varchar(100) default NULL,
pay_merch varchar(50) default NULL,
paid_to varchar(150) default NULL,
cdate date default ‘0000-00-00′,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE comission_history (
id int(11) NOT NULL auto_increment,
paid_to int(11) default ‘0′,
usrid int(11) default ‘0′,
wasfor varchar(100) default NULL,
amount float(11,2) default ‘0.00′,
vdate date default ‘0000-00-00′,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE faq (
id int(11) NOT NULL auto_increment,
quest text,
answ text,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE gp_info (
gp_id int(11) NOT NULL auto_increment,
gid int(11) NOT NULL default ‘0′,
ad_id int(11) NOT NULL default ‘0′,
ad_prob int(11) NOT NULL default ‘0′,
PRIMARY KEY (gp_id)
) TYPE=MyISAM;

CREATE TABLE gp_name (
id int(11) NOT NULL auto_increment,
gp_name varchar(100) NOT NULL default ”,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE html (
type varchar(5) default NULL,
content text
) TYPE=MyISAM;

INSERT INTO html VALUES (’terms’, ‘Enter your site terms and conditions here’);
INSERT INTO html VALUES (’priva’, ‘Enter your site privacy-policy here’);
INSERT INTO html VALUES (’1page’, ‘Enter you program details here (signup bonuses, referral earnings etc.. etc..).’);

CREATE TABLE investment_history (
id int(11) NOT NULL auto_increment,
usrid int(11) default ‘0′,
amount float(10,2) default ‘0.00′,
descr varchar(100) default NULL,
is_from varchar(50) default ‘0′,
processor varchar(100) default NULL,
adate date default ‘0000-00-00′,
expired char(3) default ‘no’,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE member_refs (
mem_id int(11) NOT NULL default ‘0′,
ref_id int(11) NOT NULL default ‘0′,
UNIQUE KEY uniqueness (mem_id,ref_id),
KEY usersid (mem_id),
KEY upline (ref_id)
) TYPE=MyISAM;

CREATE TABLE merchant_codes (
id int(11) NOT NULL auto_increment,
name varchar(100) default NULL,
code text,
PRIMARY KEY (id)
) TYPE=MyISAM;

INSERT INTO merchant_codes VALUES (1, ‘PayPal’, ‘Code here’);
INSERT INTO merchant_codes VALUES (2, ‘E-Gold’, ‘E-Gold Code’);
INSERT INTO merchant_codes VALUES (3, ‘StormPay’, ‘Code with Substitutions here [user] [cost] etc…’);

CREATE TABLE monthly_stats (
id int(11) NOT NULL auto_increment,
usrid int(11) default ‘0′,
days_paid_roi int(11) default ‘0′,
past_earnings float(10,5) default ‘0.00000′,
roi_earned float(10,4) default ‘0.0000′,
coms_earned float(10,4) default ‘0.0000′,
sbcash_earned float(10,5) default ‘0.00000′,
ptc_cash_e float(10,4) default ‘0.0000′,
refptc_cash float(10,4) default ‘0.0000′,
misc_earned float(10,4) default ‘0.0000′,
tot_owed float(10,5) default ‘0.00000′,
paid_out float(10,3) default ‘0.000′,
monthis int(2) default ‘0′,
yearis int(4) default ‘0′,
this_month date default ‘0000-00-00′,
month_transfer char(3) default ‘no’,
earn_pay char(3) default ‘no’,
paidout char(3) default ‘no’,
finalized char(3) default ‘no’,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE other_history (
id int(11) NOT NULL auto_increment,
usrid int(11) default ‘0′,
amount float(10,2) default ‘0.00′,
descr varchar(100) default NULL,
is_from varchar(50) default ‘0′,
adate date default ‘0000-00-00′,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE ptc_orders (
ptcid int(11) NOT NULL auto_increment,
type enum(’banner’,'text’) NOT NULL default ‘banner’,
type2 enum(’cash’,'credit’) NOT NULL default ‘cash’,
userid int(11) default NULL,
linkid varchar(25) default NULL,
banurl varchar(200) default NULL,
linkurl text NOT NULL,
linktxt text,
clicks_remain int(11) NOT NULL default ‘0′,
amt_sent int(11) NOT NULL default ‘0′,
date_sent date default ‘0000-00-00′,
date_done date default ‘0000-00-00′,
cash_click float default ‘0′,
credit_click float default ‘0′,
adtimer int(5) NOT NULL default ‘0′,
day_lock int(5) NOT NULL default ‘0′,
PRIMARY KEY (ptcid)
) TYPE=MyISAM;

CREATE TABLE ptc_tracking (
userid int(11) default NULL,
banlinkid varchar(25) default NULL,
cdate date default NULL
) TYPE=MyISAM;

CREATE TABLE referstats (
id int(11) NOT NULL auto_increment,
usrid int(11) default ‘0′,
orgip varchar(15) default NULL,
refip varchar(15) default NULL,
httpref varchar(255) default NULL,
browser varchar(255) default NULL,
cdate date default NULL,
ctime time default NULL,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE sellcredit (
id int(11) NOT NULL auto_increment,
name varchar(255) default NULL,
descr text,
cost float default ‘0′,
PRIMARY KEY (id)
) TYPE=MyISAM;

INSERT INTO sellcredit VALUES (1, ‘1000 Site Credits’, ‘1000 Site Credits’, ‘5′);

CREATE TABLE site (
id int(11) NOT NULL auto_increment,
usrid int(11) default NULL,
name varchar(255) default NULL,
url varchar(255) default NULL,
lang varchar(30) default NULL,
state varchar(30) default NULL,
credits float default ‘0′,
totalhits int(11) default ‘0′,
hitslastmail int(11) default ‘0′,
hour varchar(13) default ‘0′,
cph int(11) default ‘0′,
cth int(11) default ‘0′,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE tads (
id int(11) NOT NULL auto_increment,
text text,
PRIMARY KEY (id)
) TYPE=MyISAM;

CREATE TABLE user (
id int(11) NOT NULL auto_increment,
name varchar(100) default NULL,
email varchar(100) default NULL,
passwd varchar(20) default NULL,
pay_to int(11) default ‘0′,
payout_address varchar(150) default NULL,
ref int(11) default ‘0′,
invested float(10,2) default ‘0.00′,
acctype int(11) default NULL,
credits float default ‘0′,
roi_cash float(10,4) default ‘0.0000′,
cshfrmallrefs float(10,5) default ‘0.00000′,
lifetime_cash float(10,3) default ‘0.000′,
lifetime_paid float(10,2) default ‘0.00′,
lifetot_roi float(10,5) default ‘0.00000′,
joindate datetime default NULL,
lastmail date default ‘0000-00-00′,
minmax int(11) default NULL,
crdsfrmallrefs float default ‘0′,
rbon_credits float default ‘0′,
rpage_credits float default ‘0′,
lifetime_credits float default ‘0′,
lifetime_pages int(11) default ‘0′,
sb_credits float default ‘0′,
sb_cash float(10,5) default ‘0.00000′,
ptc_clicks int(11) default ‘0′,
ptc_crds float default ‘0′,
ptc_cash float default ‘0′,
lastroi date default ‘0000-00-00′,
lastaccess datetime default NULL,
lastsurfed datetime default ‘0000-00-00 00:00:00′,
upgrade_ends date default NULL,
premregdate date default ‘0000-00-00′,
premmp int(11) default ‘0′,
toref float default ‘0′,
cshtoref float(10,5) default ‘0.00000′,
commstoref float(10,4) default ‘0.0000′,
allow_contact char(3) default ‘yes’,
status varchar(20) default NULL,
ip_address varchar(15) default NULL,
ac int(11) default ‘0′,
PRIMARY KEY (id),
UNIQUE KEY email (email)
) TYPE=MyISAM;

PLEASE HELP




does this script have to do with the siteheader?

Monday 1 March 2010 @ 12:01 pm
expired domain names
killamike513 asked:

<?
include("funcs.php");

function doswitch (){
global $tab, $time, $id, $tru;

$pimp = mysql_fetch_array(mysql_query("SELECT code FROM $tab[pimp] WHERE id='$id';"));
$user = mysql_fetch_array(mysql_query("SELECT username FROM $tab[user] WHERE code='$pimp[0]';"));

$getgames = mysql_query("SELECT round FROM $tab[game] WHERE starts$time ORDER BY round ASC;”);
while ($game = mysql_fetch_array($getgames))
{
if(fetch(”SELECT user FROM $tab[stat] WHERE user=’$user[0]‘ AND round=’$game[0]‘;”)){
?><a href="dologin.php?switch=game&tru=”>Round , <?
}
}

}

function ADMINHEADER ($title){
global $tab, $tru, $id;

$pimp = mysql_fetch_array(mysql_query("SELECT status FROM $tab[pimp] WHERE id='$id';"));
if($pimp[0] != admin){ echo"ACCESS DENIED!“; die(); }

header(”Cache-Control: no-cache, must-revalidate”);
Header(”Pragma: no-cache”);
Header(”Expires: Thu, 01 Jan 1970 00:00:00 GMT”);
?>

<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" 0){?>onLoad=”settimes()”>
3600){ header(”Location: ../play.php?msg=idle”); }
elseif ($boot[1] == banned){ header(”Location: ../play.php?msg=disabled”); }

$protection = mysql_fetch_array(mysql_query(”SELECT protection,protectstarted FROM $tab[pimp] WHERE id=’$id’;”));
$protect=$protection[0]+$protection[1]-$time;
if($protect

<!– Hide
function MM_jumpMenu(targ,selObj,restore){ //v3.0
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
if (restore) selObj.selectedIndex=0;
}

function MM_displayStatusMsg(msgStr) { //v1.0
status=msgStr;
document.MM_returnValue = true;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}

0){?>
function display(){
rtime=etime-ctime;
if (rtime>60)
m=parseInt(rtime/60);
else{
m=0;
}
s=parseInt(rtime-m*60);
if(s<10)
s=""+s
window.status="You have "+s+" seconds of protection left!"
window.setTimeout("checktime()",1000)
}

function settimes(){
var time= new Date();
secs= time.getSeconds();
etime=secs;
etime+=;
checktime();
}

function checktime(){
var time= new Date();
secs= time.getSeconds();
ctime=secs
if(ctime>=etime){
expired();
}
else
display();
}

function expired(){ window.status=”You have ran out of protection!!!”; }

alert (”");
// Done hiding –>

<body bgcolor="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" 0){?>onLoad=”settimes()”>

<a href="index.php?tru=”> switch rounds: contacts:  

<a href="scout.php?tru=”>scout •
<a href="produce.php?tru=”>produce •
<a href="collect.php?tru=”>collect •
<a href="travel.php?tru=”>travel •
<a href="purchase.php?tru=”>purchase •
<a href="ranks.php?tru=”>ranks


<a href="pimp.php?tru=”>find pimp •
<a href="crew.php?tru=”>find crew •
<a href="whosonline.php?tru=”>who’s online •
<a href="cranks.php?tru=”>crew ranks •
<a href="granks.php?tru=”>global ranks

<a href="board.php?tru=”>message board •
<a href="board.php?brd=recuit&tru=”>recuiting board •
<a href="pimpgods.php?tru=”>pimpgods


<a href="pimp.php?pid=&tru=”>my profile •
<a href="awards.php?tru=”>pimp awards •
game guide
game rules
<a href="options.php?tru=”>options •
<a href="logout.php?tru=”>logout
copyright © 2004 domain. all rights reserved



what wont my meta tags work on my web page?

Thursday 4 February 2010 @ 6:33 pm
expired domain names
grizzlymountainman33 asked:

when you type my site in on google (www.lowbudgeteating.com), no description or anything comes up…just the website name. The domain name is through godaddy and is redirected to 150m.com where it is hosted
here is my heading HTML code

This is a fairly new website.only a month or so old
also, SEO websites recognize my HTML title but all say I have no descriptive and keyword meta tags




CSS TEMPLATE WON’T WORK IN HTML?

Tuesday 2 February 2010 @ 4:17 am
expired domain names
Nicole S asked:

My domain: http://www.esthevision.cz/

This is the cause of my problem.
The template is supposed to look somewhat like this: PINK STRIPE
http://themebot.com/website-templates/html-templates
I created an extra copy of it called Natvrdo, since I modified the logo.

Okay, I have this in my HTML (Natvrdo being the CSS style sheet)
This is what I have in my index.html:

<<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-…

Ester Vision

Kosmetika Pro Vás

Menu

This is PINK CSS by itself, and I have all the pictures and files uploaded in the index.

body { margin: 0; padding: 0; background: #7F6D79 url(../images/b1r.jpg) repeat-x; font-family: Georgia, “Times New Roman”, Times, serif; font-size: 12px; color: #E3F3F5;} select, input, textarea { background-color: #A29390; border: 1px solid #5B3D3F; color: #5B3D3F; width: 280px; font-family: arial, tahoma, verdana, helvetica, sans serif; font-size: 9pt;} h1, h2, h3 { font-weight: normal; margin: 20px 0 10px; } margin-top: 0; font-weight: normal; } h1 { font-size: 32px; margin-bottom: 0px; margin-top: 10px; } font-size: 197%; color: #E788C2;} h2 { font-size: 28px; } font-size: 136%; color: #A8B4BE} h3 { font-size: 16px; } font-size: 100%; color: #381616; font-weight: bold;} h4 { font-size: 20px; } font-size: 105%; color: #A8B4BE; }p ul { list-style-image: url(images/bullet.jpg); } abbr, acronym { font-style: normal; border-bottom: 1px dotted #333333; cursor: help; } del { text-decoration: line-through; color: #999999; } ins { text-decoration: none; color: #009977; } ol { margin-bottom: 1.6em; line-height: 180%;} p {} blockquote { color: #EBE3EA;} ul {} ol {} a:link { text-decoration: none; color: #AAD0D0; } a: visited { text-decoration: none; color: #B5D5D0; } a:hover, a:active { color: #93BFBF;text-decoration: underline; } text-decoration: none;} small {} #header { width: 700px; height: 77px; margin: 0 auto;} /* Logo */ #logo { float: left; background: url(../images/aha.jpg) no-repeat;} #logo h1, #logo h2 { margin: 0;} #logo h1 { padding-left: 38px; font-size: 300%;} #logo h2 { padding-left: 35px;} #logo a { text-decoration: none; color: #7F7772;} #motif { float: right; width: 100px; padding-top: 20px; padding-left: 10px;} #menu { width: 700px; height: 50px; margin: 0 auto;} #menu ul { margin: 0; padding: 15px 0 0 0; list-style: none;} #menu li { display: inline;} #menu a { display: block; float: left; padding: 0 15px 0 15px; background: url(../images/menn.jpg) no-repeat left center; text-align: center; text-decoration: none; font-size: 154%; color: #D3B1B1;} #menu a:hover { color: #FFFFFF; background: url(../images/menn.jpg) repeat-x;} #menu .active a { color: #E47FB9; } #page { clear: both; width: 720px; margin: 0 auto 20px auto; padding: 120px 0 0 0; background: url(../images/top.jpg) no-repeat;} #content { float: right; width: 510px; padding: 10px 10px 20px 10px; background: #867480 url(../images/content.jpg) no-repeat} #content a { color: #C5C3C7;} .title { font-weight: normal; border-bottom-width: 0; font-size: 24px; text-decoration: none; } padding-bottom: 5px;.titles a:link, .titles a:visited, .titles a:active { text-decoration: none; font-size: 24px; font-weight: normal; border-bottom-width: 0; } #content ul { list-style: circle; font-size: 85%;} .list { margin-left: 0; padding-left: 0; list-style: none;} .list li { padding-left: 10px; } #sidebar { float: left; vertical-align: top width: 151px; padding: 22px 10px 30px 10px; background: #867480 url(../images/sidebar.jpg) no-repeat} #sidebar ul { margin: 0; padding: 0; list-style: none;} #sidebar li {} #sidebar li ul {} #sidebar li li { padding: 5px 0;} #sidebar h2 { font-size: 114%; font-weight: bold; color: #B5D5D0} #sidebar h3 { margin: 0;} #sidebar p { margin: 0; line-height: normal;} #sidebar a { text-decoration: none; } #sidebar a:hover { color: #
Now can someone PLEASE tell me why it won’t work? I’ve done all the steps and as you can see, the background and letters and it’s colors partially show.
ANd if it is emty (the template, can someone fill it in with headers and banners and logos and tabs and what not? I could modify or change it afterwards. I’m pretty much stuck here.
SO Please and Thank You Very Much?
Oh yeah, the tabs, the clickable links and the pictures should be or at least try to same as the pink stripe design.
SO why won’t the links I made won’t show as tabs? Someone please work (do) it for me.
The first answers:
Thanks for help, but it is just so complicated for me, could you just show me the “re=done” version, because I really am stuck on “this here is wrong, put this here and that in there”
CAN SOMEONE PLEASE REWRITE THE WHOLE THING FOR ME CORRECTLZ PLEASE?
I am sitting on the PC for two days, looking at various tutorials and still not achieving anything.
I did what Mr. TOP Contributor said and still it does not look like the Pink Stripe Layout.
Grah. I **** when my relatives ask me to make their webpages with beauty products when I barely know HTML and CSS. So, please, anyone, if you are willing to rewrite the ENTIRE THING so it IS AT LEAST COMPLETELY SAME AS THE PINK STRIDE WEBBIE, please do so. I’m going insane now.




Whois domain registration database?

Monday 18 January 2010 @ 5:20 pm
expired domain names
- asked:

I am attempting to restart a site I closed down a few years ago, but my domain appears to have be off limits temporarily,
“This domain is parked, pending renewal, or has expired.
Please contact the domain provider with questions.”
It does not look like it is being used at all.

I looked up the domain in the Whois database and here is what I receive.

Registry Data
ICANN Registrar: ONLINENIC, INC.
Created: 2008-03-03
Expires: 2010-03-03
Updated: 2009-03-06
Registrar Status: clientUpdateProhibited
Name Server: NS2.ONLINENIC.NET (has 41,892 domains)
Name Server: NS3.ONLINENIC.NET (has 41,892 domains)
Whois Server: whois.onlinenic.com

Whois Record
Registrant:
OliverIbbotson OLIVER.IBBOTSON@GMAIL.COM +44.7967436606
Paladin Noir
9C Brookside
Derby,Derbyshire,UNITED KINGDOM DE1 3LQ

Record last updated at 2008-03-03 20:10:57
Record created on 2008/3/3
Record expired on 2009/3/3

Domain servers in listed order:
ns2.onlinenic.net ns3.onlinenic.net

Administrator:
Name– OliverIbbotson
EMail-: (OLIVER.IBBOTSON@GMAIL.COM)
tel –: +44.7967436606
org: Paladin Noir
9C Brookside
Derby,Derbyshire,UNITED KINGDOM DE1 3LQ

Technical Contactor:
Name– OliverIbbotson
EMail-: (OLIVER.IBBOTSON@GMAIL.COM)
tel –: +44.7967436606
org: Paladin Noir
9C Brookside
Derby,Derbyshire,UNITED KINGDOM DE1 3LQ

Billing Contactor:
Name– OliverIbbotson
EMail-: (OLIVER.IBBOTSON@GMAIL.COM)
tel –: +44.7967436606
org: Paladin Noir
9C Brookside
Derby,South Yorkshire,UNITED KINGDOM DE1 3LQ

Registration Service Provider:
name: DNSPROTECT.COM
tel: 206-350-1777
fax: 206-350-1766
web:http://www.dnsprotect.com

Can anyone tell me how to identify the information I am looking for?
Is there any way for me to reobtain this domain?
Which date is the expiration date for it?

Thanks
Server Data
IP Address: 209.85.84.167 Whois | Reverse-IP | Ping | DNS Lookup | Traceroute
IP Location United States – Oregon – Beaverton – Optical Jungle
Response Code: 200
Domain Status: Registered And Active Website




Anyone know how to publish dreamweaver 8 sites?

Friday 15 January 2010 @ 1:07 pm
expired domain names
Helen asked:

I’ve connected to the server (FTP), Put my files in the Root site & it done it successfully. Now when I click on preview, it says:
Address Not Found

www.”mysite”.net could not be found. Please check the name and try again.

The browser could not find the host server for the provided address.

* Did you make a mistake when typing the domain? (e.g. “ww.mozilla.org” instead of

“www.mozilla.org”)

* Are you certain this domain address exists? Its registration may have expired.

* Are you unable to browse other sites? Check your network connection and DNS server settings.

* Is your computer or network protected by a firewall or proxy? Incorrect settings can interfere with Web browsing.

Can you even put dw sites on the internet? Can you put it on the internet as how you registered the domain? “www.mysite.com”? HELP!




I thought one could get an alert set up for when a domain name becomes available. Where can I find that?

Monday 7 December 2009 @ 10:16 pm
expired domain names
Nathana�l C asked:

If it exists, I’d like to know where it is found.
More precisely, I’m looking after a domain name that is set to expire soon and want to make sure I will be the first to register it.




Domain name unavilable. still can be obtained?

Friday 24 July 2009 @ 5:50 pm
expired domain names
Varun S asked:

i had booked a domain name which expired and now shows not avialable with locked statis. Can still register it for me? how?




domain name? account about to expire with IPOWER ? How can I keep the name but switch to yahoo?

Monday 20 April 2009 @ 12:08 am
expired domain names
sethajase asked:

while I’m at it? Can someone give a brief idiot’s guide to domain names, carriers, web hosters – consolidating all of this to make it no brainer with a carrier (like yahoo????) who would be very user-friendly when it comes time to create and run a website??




Does anyone know the best website to go to where you can backorder domain names?

Monday 9 March 2009 @ 9:45 am
expired domain names
Zac B asked:

Hi. I am interested in a domain name – but it is taken already and expires early 2009. I wanted to know if anyone knew any good websites to where you can backorder domain names. And if so, is it a guarantee if say the person who has the domain name right now, if he/she doesn’t renew it next year, will I get that domain name if I place a backorder now? Or is it just like a lottery where anyone who places a backorder can get that domain name?




«« Previous Posts