Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

TagMeIn - A revolutionary picture site

Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6
TagMeIn is a site where you upload images and have the ability to tag people in it or just upload images. It is written in Html, PHP, Javascript and more! Even if I have done this all myself I need loads of help.

Ashampoo_Snap_2013.05.29_15h28m20s_001_ - TagMeIn - A revolutionary picture site - RaGEZONE Forums

Here is some snippets of code:

Code:
<!DOCTYPE html>
<html>
<head>
<title>TagMeIn</title>

	<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
	<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
	<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
    <link rel="stylesheet" type="text/css" href="styles.css" media="all" />
    <link rel="stylesheet" type="text/css" href="demo.css" media="all" />
    <!-- For image slider! -->
     <link href="themes/1/js-image-slider.css" rel="stylesheet" type="text/css" />
    <script src="themes/1/js-image-slider.js" type="text/javascript"></script>
    <link href="generic.css" rel="stylesheet" type="text/css" />
    <!-- jQuery lib from google server ===================== -->
	<script src="js/jquery-1.7.2.min.js"></script>
<!--  javaScript -->
<script>  
<!--  // building select nav for mobile width only -->
$(function(){
	// building select menu
	$('<select />').appendTo('nav');

	// building an option for select menu
	$('<option />', {
		'selected': 'selected',
		'value' : '',
		'text': 'Choise Page...'
	}).appendTo('nav select');

	$('nav ul li a').each(function(){
		var target = $(this);

		$('<option />', {
			'value' : target.attr('href'),
			'text': target.text()
		}).appendTo('nav select');

	});

	// on clicking on link
	$('nav select').on('change',function(){
		window.location = $(this).find('option:selected').val();
	});
});

// show and hide sub menu
$(function(){
	$('nav ul li').hover(
		function () {
			//show its submenu
			$('ul', this).slideDown(150);
		}, 
		function () {
			//hide its submenu
			$('ul', this).slideUp(150);			
		}
	);
});
//end
</script>
<!-- end -->
</head>
<body>
<div class="container">
			<!-- freshdesignweb top bar -->
            <div class="freshdesignweb-top">
                <a href="http://www.freshdesignweb.com" target="_blank">Home</a>
            <a href="register.php" target="_blank">Register </a> 
                <span class="right">
                    <a href="http://www.freshdesignweb.com/drop-down-responsive-menu-with-css3-and-jquery.html">
                        <strong>Creators</strong>
                    </a>
                </span>
              <div class="clr"></div>
            </div><!--/ freshdesignweb top bar -->
			<header>
				<h1><span>Welcome To</span>TagMeIn</h1>
            </header>       
     <!-- start header here-->
	<header>
		<div id="fdw">
				<!--nav-->
					<nav>
						<ul>
							<li class="current"><a href="http://www.freshdesignweb.com">home<span class="arrow"></span></a>
								<ul style="display: none;" class="sub_menu">
									<li class="arrow_top"></li>
									<li><a class="subCurrent" href="http://www.freshdesignweb.com">Home Service</a></li>
									<li><a href="http://www.freshdesignweb.com">Home Responsive</a></li>
								</ul>
							</li>
							<li><a href="about.html">about</a></li>
							<li><a href="http://www.freshdesignweb.com">services</a></li>
							<li>
								<a href="http://www.freshdesignweb.com">portfolio<span class="arrow"></span></a>
								<ul style="display: none;" class="sub_menu">
									<li class="arrow_top"></li>
									<li><a href="http://www.freshdesignweb.com">Portfolio 3 </a></li>
									<li><a href="http://www.freshdesignweb.com">Portfolio 4 </a></li>
									<li><a href="http://www.freshdesignweb.com">Portfolio Single</a></li>
									<li><a href="http://www.freshdesignweb.com">Portfolio Two</a></li>
								</ul>
							</li>
							<li>
								<a href="http://www.freshdesignweb.com">blog<span class="arrow"></span></a>
								<ul style="display: none;" class="sub_menu">
									<li class="arrow_top"></li>
									<li><a href="http://www.freshdesignweb.com">Design</a></li>
									<li><a href="http://www.freshdesignweb.com/category/html5">HTML5</a></li>
									<li><a href="http://www.freshdesignweb.com/category/css-html">CSS3</a>
									</li><li><a href="http://www.freshdesignweb.com/category/ajax-jquery">jQuery</a></li>
								</ul>
							</li>
							<li><a href="http://www.freshdesignweb.com">contact</a></li>
						</ul>
					</nav>
		</div><!-- end fdw -->
	</header><!-- end header -->
    <div id="sliderFrame">
        <div id="ribbon"></div>
        <div id="slider">
            <a href="http://www.menucool.com/jquery-slider" target="_blank">
                <img src="http://forum.ragezone.com/images/image-slider-1.jpg" alt="Welcome to TagMeIn" />
            </a>
            <img src="http://forum.ragezone.com/images/image-slider-2.jpg" alt="For keeping the peice!" />
            <img src="http://forum.ragezone.com/images/image-slider-3.jpg" alt="Or Not!" />
            <img src="http://forum.ragezone.com/images/image-slider-4.jpg" alt="#htmlcaption" />
            <img src="http://forum.ragezone.com/images/image-slider-5.jpg" />
        </div>
        <div id="htmlcaption" style="display: none;">
            <em>Sign up now</em> Click <a href="register.php">here</a>.
        </div>
    </div>
    
</div>
</body>
</html>

Link :

Thanks if you want to help add me on skype : zolanyo

Thanks
 

Attachments

You must be registered for see attachments list
Last edited:
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6
Update -

Right it now look great in Internet explorer as well.

Can someone check in Mozilla Firefox
 
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6
Try a free webhost or get a cheap simple one
I am LOL here's link :

Update -

Need help with login and register I have a great base for it

Update -

New header and footer
New page slide

Need to fix or need help -

The page slide from html to php

Need Help please with login and internal structure of site because I am only 12 and it is harder than you think

Sorry Guys

I'm stopping at the moment I really need help



Go to to see site
 
Last edited by a moderator:
Watching from above
Legend
Joined
Apr 9, 2004
Messages
3,828
Reaction score
752
Seems nice however I don't understand what makes it revolutionary. You don't need to justify it to me of course, just curious about your idea and motives.
 
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6
Seems nice however I don't understand what makes it revolutionary. You don't need to justify it to me of course, just curious about your idea and motives.

I want to make a picture tagging site that can change our understanding of picture technology .
 
Web Developer
Loyal Member
Joined
Nov 5, 2009
Messages
1,229
Reaction score
309
It's nice to see your attempt but all you're doing is purchasing scripts from codecanyon and themeforest and claiming it as your project.
 
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6
It's nice to see your attempt but all you're doing is purchasing scripts from codecanyon and themeforest and claiming it as your project.
Not really because the mobile page is and some of the inserts are from them but I still am using my own code.
 
Web Developer
Loyal Member
Joined
Nov 5, 2009
Messages
1,229
Reaction score
309
What have you coded yourself in this?
 
Web Developer
Loyal Member
Joined
Nov 5, 2009
Messages
1,229
Reaction score
309


Effort finding the slider, But I've definitely came across it before. But you claim you've done all of the index. You have external sites written all over your code...
 
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6


Effort finding the slider, But I've definitely came across it before. But you claim you've done all of the index. You have external sites written all over your code...
I did say more or less and yes I do admint that! :)

You know what I give up on this project and I'll go back to my original project of a social network but it looks so ugly because I made it myself :-(
 
Google my name...
Joined
Nov 9, 2011
Messages
483
Reaction score
151


Effort finding the slider, But I've definitely came across it before. But you claim you've done all of the index. You have external sites written all over your code...

In addition the slideshow script is SlidesJS literally THE most used slideshow script - if you google "js slideshow" it's the first option. That green banner saying "What's Hot" was in one of the examples at one point although I struggle to find that exact theme right now. If you look at you'll see it's the top one and links to SlidesJS.

So... What did you actually make of this?

Even the current countdown script is using ...

I lack to see anything major actually written by you; which is a vital part of a project like this, you need original stuff to get anywhere, reusing public scripts will just make this site the same as any other development...

All the best,
Richard Komakech.
 
Revolution-Entrepreneur
Joined
Apr 2, 2009
Messages
451
Reaction score
19
People these days are going for stupid standards of revolutionary, even something that ISN'T revolutionary ends up hitting the mother load!
However, this seems promising if done well, with some marketing and some magic c:

- Please be informed that, a good user interface for the users to UPLOAD, TAG etc system, must be user-friendly.
- Interactive elements on the site.
- Responsive web design.
- SEO, which is highly challenging for your site if you are not sure what you are doing.

+ Idk about this, but what if someone uploads some sort of nudes or porns or whatever and tagged your sister's name on it? Idk, just a figure of thought.

Good luck.
 
Last edited:
Newbie Spellweaver
Joined
Jun 4, 2012
Messages
57
Reaction score
6
Some help would be appreciated ! :)

People these days are going for stupid standards of revolutionary, even something that ISN'T revolutionary ends up hitting the mother load!
However, this seems promising if done well, with some marketing and some magic c:

- Please be informed that, a good user interface for the users to UPLOAD, TAG etc system, must be user-friendly.
- Interactive elements on the site.
- Responsive web design.
- SEO, which is highly challenging for your site if you are not sure what you are doing.

+ Idk about this, but what if someone uploads some sort of nudes or porns or whatever and tagged your sister's name on it? Idk, just a figure of thought.

Good luck.
Thanks my vision of any nudity or porn or tagging relative of staff their IP will be automatically banned

And also does anyone think I should continue this?
And please I really need help!
 
Back
Top