Archive for the 'Programming & Design' Category
I’m looking for someone who may be able to help, and come up with a great idea for a site, and host it with me. I currently don’t have a domain, don’t have hosting, or a license. Pretty much, nothing. So I was wondering if someone would be generous or lucky enough to have these things. (Except for Domain. I would still need to think of name.) So pretty much, anyone that knows anyone or is here right now that can host me, and build an IPB Forum with me. That would be great. Speak Up.
(This question May Expire. Please look at replies for updates. Anyway, Thx.)
I want it to pop up anytime you go to the page.
—
/*
One Time Popup Script
By Website Abstraction (http://www.wsabstract.com) and
Java-Scripts.net (http://www.java-scripts.net)
Over 200+ free scripts here!
*/
//number of days the cookie should
//last (0 will cause it to always pop up)
var expDays = 1;
//url of the page you want to popup
var page = “http://www.codearena.com”;
var windowprops = “width=650, height=500, location=yes, toolbar=no, menubar=no, scrollbars=yes, resizable=yes”;
function GetCookie (name) {
var arg = name + “=”;
var alen = arg.length;
var clen = document.cookie.length;
var i = 0;
while (i 2) ? argv[2] : null;
var path = (argc > 3) ? argv[3] : null;
var domain = (argc > 4) ? argv[4] : null;
var secure = (argc > 5) ? argv[5] : false;
document.cookie = name + “=” + escape (value) +
((expires == null) ? “” : (”; expires=” + expires.toGMTString())) +
((path == null) ? “” : (”; path=” + path)) +
((domain == null) ? “” : (”; domain=” + domain)) +
((secure == true) ? “; secure” : “”);
}
function DeleteCookie (name) {
var exp = new Date();
exp.setTime (exp.getTime() – 1);
var cval = GetCookie (name);
document.cookie = name + “=” + cval + “; expires=” + exp.toGMTString();
}
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000));
function amt(){
var count = GetCookie(’count’)
if(count == null) {
SetCookie(’count’,'1′)
return 1
} else {
var newcount = parseInt(count) + 1;
DeleteCookie(’count’)
SetCookie(’count’,newcount,exp)
return count
}
}
function getCookieVal(offset) {
var endstr = document.cookie.indexOf (”;”, offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function checkCount() {
var count = GetCookie(’count’);
if (count == null) {
count=1;
SetCookie(’count’, count, exp);
window.open(page, “”, windowprops);
} else {
count++;
SetCookie(’count’, count, exp);
}
}
window.onload=checkCount
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
<?
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="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 |
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
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.
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
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!















