Bitcoin Forum
April 18, 2024, 07:44:39 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: ***10 BTC Bounty*** Website Problems / Paypal Buy Now Button Problems  (Read 1427 times)
pocketartillery (OP)
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
October 28, 2011, 12:30:38 AM
 #1

http://www.pocketartillery.com

There are three issues with the site that I have found and need solved ASAP.  All of these errors I can't duplicate from my end and were reported by users except for the IE table one.

Some people are reporting not being able to checkout on the purchase page with the Buy Now button through Paypal .  Fix for 5 BTC

In internet explorer, there is a 1 pixel tall error somewhere on the page making the tables look jacked up.  Fix for 2 BTC

In google chrome some of the text in the disclaimer is 'leaking' onto the white part of the page and making it unreadable. Fix for 2 BTC

Any other errors, please let us know...I have 1 BTC left for one of those people that find one.

Thanks!

1713426279
Hero Member
*
Offline Offline

Posts: 1713426279

View Profile Personal Message (Offline)

Ignore
1713426279
Reply with quote  #2

1713426279
Report to moderator
"If you don't want people to know you're a scumbag then don't be a scumbag." -- margaritahuyan
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713426279
Hero Member
*
Offline Offline

Posts: 1713426279

View Profile Personal Message (Offline)

Ignore
1713426279
Reply with quote  #2

1713426279
Report to moderator
I.Goldstein
Newbie
*
Offline Offline

Activity: 14
Merit: 0


View Profile
October 28, 2011, 12:38:34 AM
 #2

Try using a doctype such as <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">

http://www.w3.org/QA/2002/04/valid-dtd-list.html

Getting Internet Explorer out of its quirky mode might resolve some issues.
Raoul Duke
aka psy
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002



View Profile
October 28, 2011, 01:33:41 AM
 #3

The disclaimer text needs to have
Code:
<td width="854px" height="216px" background="images/lowcontent.gif" colspan="20">
instead of simply
Code:
<td width="854" height="216" background="images/lowcontent.gif" colspan="20">

You are missing the px after the values of height and width Wink

You might want to check all the values on width and height if the all have width="100px" and not only width="100"


pocketartillery (OP)
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
October 28, 2011, 01:34:10 AM
 #4

That fixed the IE problem.  Winna Winna Chicken Dinna Mr. Goldstein!  What is your BTC receiving address.
pocketartillery (OP)
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
October 28, 2011, 02:03:36 AM
 #5

I fixed the white text leaking by changing a Colspan from 20 to 19.

Still need help with the Paypal Buy Now button. 
ineededausername
Hero Member
*****
Offline Offline

Activity: 784
Merit: 1000


bitcoin hundred-aire


View Profile
October 28, 2011, 02:13:59 AM
 #6

Your "View all Pictures & Video" isn't doing anything... just jumps to the top of the page.  Chrome 14.

(BFL)^2 < 0
Raoul Duke
aka psy
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002



View Profile
October 28, 2011, 02:29:28 AM
Last edit: October 28, 2011, 02:51:22 AM by psy
 #7

you might want to use an .htacess file on your root dir with the following in it because if i go to your site using the www it gives me a 404

Code:
RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

You might have changed it with the colspan, but the px missing also fixed it. If you try to change the width from 854 to any other value, even to 500 the width remains the same unless you insert the px after the numeric value.
In fact I would say that all those width and height there aren't doing anything. The width and height is being set by colspan and rowspan and not by those values. If I'm not mistaken height is not even used on table layouts.

Also you have margins has html attributes, which they are not. Margins need to be set inside style tags.
 style="margin-left:10px;margin-right-10px:margin-top:10px;margin-bottom:10px;"

Also:
    the MIME Media Type (text/html) can be used for XML or SGML document types
    No known Document Type could be detected
    No XML declaration (e.g <?xml version="1.0"?>) could be found at the beginning of the document.
    No XML namespace (e.g <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">) could be found at the root of the document.


 No wonder browsers have problems. The w3c validator can't even open the page to do the validation check.
pocketartillery (OP)
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
October 28, 2011, 02:50:36 AM
 #8

2 BTC to you also psy!  Thank you for your help.  What is your payment address?
Raoul Duke
aka psy
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002



View Profile
October 28, 2011, 03:05:33 AM
 #9

Edited my post above with new info about margin styling.

I advise you to follow the tips on the validator and go fixing what you can from there. Don't worry if there are still some validation errors in the end, it happens and doesn't stop the site from working on recent browsers. maybe IE6 will have trouble, but who cares about IE6 anyway Wink

http://validator.w3.org/check?uri=http%3A%2F%2Fpocketartillery.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0&user-agent=W3C_Validator%2F1.2

For the paypal button: Insert the same doctype tags that I.Goldstein told you about on the purchse.html page. I mean in ALL pages of the site, BEFORE the html tag
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">


Address: 112KDP8ogCe2a5aBbwoXEGLzNac4bjv1Xh

Out of curiosity: What did you use to build the site?

pocketartillery (OP)
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
October 28, 2011, 03:06:44 AM
 #10

Just photoshop and notepad.  Obviously I am a bit rusty.
Raoul Duke
aka psy
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002



View Profile
October 28, 2011, 03:11:01 AM
 #11

Just photoshop and notepad.  Obviously I am a bit rusty.

Well, I asked because sometimes there are those WYSIWYG editors that do really lousy jobs and was just checking to see if that was the case and to know not to recommend it to anyone.
If that was you in Photoshop and notepad, then you have my respect. Wink
pocketartillery (OP)
Newbie
*
Offline Offline

Activity: 40
Merit: 0


View Profile
October 28, 2011, 03:17:51 AM
 #12

I don't know how to use those new fangled WYSIWYG editors.
Raoul Duke
aka psy
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002



View Profile
October 28, 2011, 03:25:55 AM
Last edit: October 28, 2011, 03:48:09 AM by psy
 #13

Neither do I. Smiley

Little fix.

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html xmlns:"http://www.w3.org/HTML/TR/html401" lang="en">

Notice that you'll need to delete the previous doctype that you pasted and also the beginning html tag before pasting that code.

Also one of the style tags you have on the page header needs to be <style type=""text/css"> instead of just <style>. You got one right, the other is missing the type.

oops, one more: on your body tag.
<body bgcolor="#020201" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"></head>
remove the </head> at the end because it was closed before the body starting, can't close again, and shouldn't even be there.

Another one: <img src="images/titleblock.gif" width="600" height="142" border="0" alt="Chimera - "Perfection is in our blood.""></a>
Remove the " " around Perfection is in our blood. It's messing your javascript.
windywinter
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
October 29, 2011, 04:16:33 PM
 #14

Guys, did I miss something? Because I didn't see anything on the website mentioned 'paypal' except a background image called 'paypalcheckout.gif' which was a blank image actually...
Raoul Duke
aka psy
Legendary
*
Offline Offline

Activity: 1358
Merit: 1002



View Profile
October 29, 2011, 04:23:10 PM
 #15

Guys, did I miss something? Because I didn't see anything on the website mentioned 'paypal' except a background image called 'paypalcheckout.gif' which was a blank image actually...

It used to be on http://pocketartillery.com/purchase.htm but now it's using Google Checkout.
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!