blackjak231
02-08-2008, 11:09 AM
-100% iPod/iPhone website-
I created a website about 3 months ago, and i recently decided to do a make over of the interface, and of its purpose. I will post here the important news about it, and what changes were made.
I also need some feedback to impove it!
Thanks!
UPDATE!
-A new interface is on its way. more colors, user friendly, new menus...
-New server with no ads.
-Still a subdomain, donations are greatly appreciated to buy a domain!!!
If you would like to see the website improve and have even more features such as movies, tv shows...etc, please donate. Small or big donations, they are all welcome!
link to the website in my sig!
kitren2
02-08-2008, 07:24 PM
swet can you help me with a website?
capcadetjc
02-08-2008, 08:45 PM
Hey, my website is done. Its to download themes for ipod touch and iphone. Its designed to be viewed on the computer, but im sure it works on the iPot/iPhone. If you'd like to check it out, www.ipotthemes.com.
For all you theme creators, sign up and start uploading so your fellow iPot users can use them too.
blackjak231
02-09-2008, 06:55 AM
Good idea for a website! Now people won't have to search everywhere for themes!
And kitren2, PM me to give me more details about it! I might say yes....
tyman71491
02-10-2008, 12:19 PM
My website is done as well. It has a repo with the feature of when you click info, it actually shows the theme. Right now, you can't download the themes on the website, but i always thought the repo was more important. A blog is also on the way for news and updates on the iPod world
www.pimpmypod.org (http://pimpmypod.org)
michigan033
02-11-2008, 07:25 PM
These sites are all very nice.
Vision_Again
02-11-2008, 07:33 PM
very nice good job guys=]
blackjak231
02-11-2008, 07:36 PM
Thanks everyone!!
I'm working on some stuff to improve it, but its probably going to be a week or two until i release the new stuff!
Don't forget to tell me what i could or should add!
I am also having a problem to add the icon that will show on the spring board! I cant't get it to work... I follow the steps, add the line and everything, but it never works!
Thanks!
killerjak7
02-18-2008, 05:21 PM
go to my site jacobmeinecke.com on a computer.... then go on it with a ipod. see the difference?
jchaike
02-22-2008, 10:46 PM
wheres the link to your site blackjack lol
and btw killerjak7 how the hell did you do that?!!!? thats so awesome!!!!
blackjak231
02-26-2008, 05:07 PM
bump for the update!!:D
stillercity
02-27-2008, 07:46 PM
Sweet job BJ (hehehe)
So Killerjak what tutorial did you use for this one?
blackjak231
02-28-2008, 06:28 PM
Sweet job BJ (hehehe)
So Killerjak what tutorial did you use for this one?
Here is how you could do it!
Originally posted by Scythal.
To answer your question, you have to put this piece of code in the index.php file, which supposes the server is PHP-enabled: you have packages with Apache+PHP (even MySQL) that install like a breeze, and most website hosting companies propose that in the base package so it shouldn't be a concern hopefully.
Don't use another index.*-named file (like index.html) in the same directory, to make sure the index.php will be chosen when someone browses on your website.
Also, to create your index.php file, you can simply rename an index.html file and insert the code to optionally display the applications for the Install.app, or a link, as long as you insert this code between the <?php and ?> tags, it's very easy.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>My Repository</title>
</head>
<body>
<?php
$agent = $_SERVER["HTTP_USER_AGENT"];
if ((strstr($agent, "iPod") !== FALSE) || (strstr($agent, "iPhone") !== FALSE)) {
// The following is for iPod and iPhone devices:
//-------------------------------------------------------------------------
?>
<a href="/files/y.tiff">Install AppSnapp</a>
<?php
//-------------------------------------------------------------------------
} else {
// The following is for other browsers:
//-------------------------------------------------------------------------
?>
<em>You must surf here with your iPod!</em>
<?php
//-------------------------------------------------------------------------
}
?>
</body>
</html>
So you have the choice, either you put all the HTML in a separate file, or you mix HTML and PHP code. In the latter case, the server sends everything not PHP, and interprets the bits in PHP to know what to do next. It less readable though.
jchaike
03-23-2008, 05:33 PM
The PHP code isnt working for me:
http://jchaike.110mb.com/test.htm
any ideas?
and once I do get it working in the middle instead of putting "install appsnapp" and "you must use an iPod" can you help me change the code to make it redirect to a new page?