Monday, 17 October 2011

WHAT THE HELL HAPPEND TO MY PAGE!?!?

i was going to edit some stuff on my myspace profile and when i clicked preview profile it said something about Profile 2.0 %26quot;check it out you can always go back%26quot;

so i did then it showed me my page like this:http://profile.myspace.com/index.cfm?fus鈥?/a>



so i didnt like it and i hit discard changes and then it left my page like that please help!!!!



how can i make it go back to the old profile???WHAT THE HELL HAPPEND TO MY PAGE!?!?step-by-step instructions (with pictures)

http://www.myspace-compilation.com/switc鈥?/a>
WHAT THE HELL HAPPEND TO MY PAGE!?!?
click go back to old version...its on there somewhere...keep looking
WHAT THE HELL HAPPEND TO MY PAGE!?!?
i like your hair
haha. i did that too. go to edit profile or customize profile and then press switch back to old version
go to my account



go to customize my profile



2.0 will show up



up in the center of page, you will see %26quot;change back to 1.0 profile



click it and go from there.
no need to shout I am not deaf, yes it on an an austrailian site?
  • programming
  • channel
  • How do you get rid of the top part of my myspace? http://profile.myspace.com/index.cfm?fuseaction=user.viewpr?

    the blue part on top of my page. where the home links use to be at? or at least change the colorHow do you get rid of the top part of my myspace? http://profile.myspace.com/index.cfm?fuseaction=user.viewpr?myspacegens.com is a great codes website.

    the link below is what your lookinq for i think.





    http://www.myspacegens.com/handler.php?p鈥?/a>

    Can't login to myspace, keeps redirecting me back to homepage? Anybody with technical knowledge?

    I have a problem logging into myspace. I am entering the correct info, my account has not been hacked (I am able to login with another comp), and I've tried logging in with different browsers. I enter in my info, i click the login button, and it just directs me to this page:



    http://myspace.com/Modules/Splash/Pages/Index.aspx



    It's been a couple of days now, and still nothing has changed. Is it something specifically that's interfering with my logging into myspace? I've used spyware software, virus scan, etc.. and it still doesn't work. I've cleared out temp internet files and cookies.. still nothing. System restore.. still nothing.



    I've tried everything.. and it still just brings me back to the same page.. the homepage.. with that address in the address bar.



    I need some good technical assistance. Thanks.Can't login to myspace, keeps redirecting me back to homepage? Anybody with technical knowledge?From what I can tell this getting to be a common problem...We are having the same difficulties...



    Sorry I wish I could help....Just wanted you to know alot of people are having the same issue not just you and me...
    Can't login to myspace, keeps redirecting me back to homepage? Anybody with technical knowledge?
    It's not a problem with your computer it is a problem myspace is having. I could log in after the second try of it yesterday and my friend who lives down the street couldn't after many many tries. It should eventually work though, I think this is worth contacting Myspace over, 2 days is too long lol Good Luck!!
    Can't login to myspace, keeps redirecting me back to homepage? Anybody with technical knowledge?
    I'm having the same problem. %26amp; i can't figure out how to fix it either. I guess your supposed to wait it out? But it's been about a week now %26amp; it's still the same. Answers please...
    It could be the page being blocked by the owner of the computer. In IE, you can block pages by going to TOOLS%26gt;INTERNET OPTIONS%26gt;SECURITY and scroll over to double click on RESTRICTED SITES (a red circle with a white line through it). On this screen, press the SITES button to see if MySpace is listed. If it is, unblock it by clicking on it and choosing REMOVE.



    Hope this helps!
    I'm having the same exact prob...as a matter of fact, this is the 2nd time this month. The 1st time I just deleted cookies and temp int files. But this time it seems more major...I've contacted MySpace twice since the 26th, and still no response. I've done all the steps of deleting cookies and temp internet files, so on and so on. I guess this is a global issue...I've run out of ideas.
    It's doing the exact same thing to me. Log in...http://www.myspace.com/Modules/Splash/Pa鈥?/a>

    I can get in just fine at the library. I've contacted Customer Service like 4 times, and I haven't recieved anything back yet. At least I'm not alone.
    don't worrie i've been trying to for this couple of minutes and it does the same thing........i believe it is and i feel much better knowing i'm not the only one having this problem lol
    me too!!=( I had the same problem I even tried everything I'm so desperate I even tried to get into my myspace but went back to the same homepage.good thing I'm not the only one whose having difficult problems
    i just tried it july 6 th 2007 at 11:41 AM and I have the same problem



    thats the very first time I had any problems with myspace
    once you get to this page, you ARE pressing %26quot;home%26quot; once again, right?

    after logging into myspace, everybody sees that page. but then you are supposed to click %26quot;home%26quot; and you will be directed to your main profile page.



    if clicking %26quot;home%26quot; does not work, try clicking %26quot;mail%26quot; or %26quot;search%26quot; or %26quot;music%26quot; or any of the other links that are listed across the top of the page in small letters.....Clicking on one of these should redirect you to another place in the site.



    you may have already done all of this, but i just wanted to throw it out there just incase.....

    PHP Question (easy points for a pro)?

    Okay I have my personal website hosted using apache and PHP 5 on my PC.

    I have it so that when you click on a link in the menu, it uses the GET function to get a certain html page. This allows me to change my template on my index page without having to change every single page.

    For example:

    %26lt;?php

    include(%26quot;/pages/%26quot; . $_GET['id'] . %26quot;.html%26quot;);

    ?%26gt;



    I am still learning PHP, and need some help with this:

    If the id is invalid, and doesn't have an html file in %26quot;pages%26quot;, how can I have it redirect to another page instead of displaying a PHP error? I think its something like %26quot;if doesnotexist%26quot; or something.



    Sorry if I made that too complicating, but i'm not good at writing in a %26quot;techy%26quot; way.

    ALSO: Please don't suggest that I start using databases instead of my html pages, I prefer it the way it is.PHP Question (easy points for a pro)?if (file_exists (%26quot;/pages/{$_GET['id']}.html%26quot;))

    {

    include(%26quot;/pages/{$_GET['id']}.html%26quot;);

    } // if

    else

    {

    include(%26quot;otherFile.html%26quot;);

    } // else
    PHP Question (easy points for a pro)?
    you will need an if statement todo this something like.

    string goto = $_GET['id'];



    if ( goto != %26quot;%26quot; )

    {

    include(%26quot;/pages/%26quot; . $_GET['id'] . %26quot;.html%26quot;);

    }else

    {

    //goto the redirect page

    }



    this is based on the presumtion that get will return %26quot;%26quot; if there is no id
    PHP Question (easy points for a pro)?
    Maybe something like include($_GET['id'] == %26quot;%26quot; ? %26quot;/pages/otherpage.html%26quot; : %26quot;/pages/%26quot;$_GET['id'].%26quot;.html%26quot;);



    or if the id is populated but invalid then



    include(file_exists( %26quot;/pages/%26quot;$_GET['id'].%26quot;.html%26quot;) ? %26quot;/pages/%26quot;$_GET['id'].%26quot;.html%26quot; : %26quot;/pages/otherpage.html%26quot;);





    an inline if statement



    Hope that helps

    Friday, 7 October 2011

    How do you get your main photo on myspace to change every second?

    Take a look @ this person's profile please...http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile%26amp;friendid=36811982. Now in photo album, under %26quot;My Photos%26quot; on the 4th page, that last picture of hers changes every few seconds. I want to know if someone knew how I could that. If you also check out Saaphyri from Charm School's myspace, http://www.myspace.com/saaphyri, she has that on her main photo as well, it changes. Their is a website on the side of that picture, but I can't make it out...if someone could please help me out and let me know how I can get my main Myspace photo on my profile to constantly change every second or so I'd really appreciate it.How do you get your main photo on myspace to change every second?Your links are no good, so I'm afraid I can't look at your examples. However, if you're talking about what I think you're talking about, try



    www.blibs.com



    It allows you to animate pictures so that it flashes different pictures. You can also do anything you can imagine to your pictures, right on the site without buying or downloading anything. It's really great.
    How do you get your main photo on myspace to change every second?
    use a graphics program to animate some photos and then stick the animation in as your pic
    How do you get your main photo on myspace to change every second?
    You can use a generator, like this one:



    http://www.freecodesource.com/index.php?鈥?/a>



    to make and animated image like those ones.
    Try this.



    http://www.banner-maker.net/



    -----
    LUNAPICS.COM OR MYTHEME.COM have the generator to make animated gifs.
    You would have to animate your pictures, either from a site or download a software.

    I have changed my homepage to index.html and now i cannot see any images on my homepage?

    just uploaded my files to geocities and replaced the index file with my homepage file that is also renamed to index.html. when i go to view my site the page comes up but i cannot see any images or anything else for that matter. just red x's where my images should be. any advice out there???I have changed my homepage to index.html and now i cannot see any images on my homepage?Did you also upload the images?

    A typical html link code to an image is:

    %26lt;img src=%26quot;imagename.jpg%26quot;%26gt;

    or

    %26lt;img alt=%26quot;background text%26quot; src=%26quot;imagename.jpg%26quot;

    These files could also be .gif

    Now 'imagename.jpg' must also exist in your root folder (public_html) sometimes they are placed in a separate folder called images.

    So just make sure that your images are also located in your 'public_html' as well as index.html folder and all the other folders that make up your website.

    Regards, Emily
    I have changed my homepage to index.html and now i cannot see any images on my homepage?
    re-upload photos
    I have changed my homepage to index.html and now i cannot see any images on my homepage?
    red 'x's mean that the HTML is fine, but the link to the images is not. Open up the index.html file and see if you have given the right path. Best in this situation is to give 'relative path' and not 'absolute path'.



    ie, just include the file name for the 'src' tag and dump all the htmls and images in the main directory
    hi



    there are few things that u have to check out



    - make sure that the links to the pictures are correct.

    - and that the pictures are in the same folder as yo index.html (this will depend in the point above)



    also check that you file names are correct and that u have used the correct file extentions for the pictures (.gif or .jpg)



    visit the link below for more practice



    hope this will help



    Spiceboy
  • excel
  • software
  • What does the "#" mean in this java script code and why am I getting a # symbol in my title of my webpage?

    function MM_preloadImages() { //v3.0

    var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();

    var i,j=d.MM_p.length,a=MM_preloadImages.arg鈥?for(i=0; i%26lt;a.length; i++)

    if (a[i].indexOf(%26quot;#%26quot;)!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}



    I am not sure what the # is in this java script code. It is colored blue in dreamweaver and I was wondering if I need to change it - like it affects the title or something somewhere in the page.



    I also have a funky problem in my webpage title - the # symbol appears at the end of whatever I type and I dont know how to get rid of it. This is the index page of a website and the page includes a couple of cf includes that have navigation browsers in them. That is it- no content yet.



    How do I fix that problem?What does the %26quot;#%26quot; mean in this java script code and why am I getting a # symbol in my title of my webpage?The # is related to the HTML href property.



    Example:



    %26lt;a href=%26quot;#section1%26quot;%26gt;Jump to section 1%26lt;/a%26gt;



    is an anchor that will jump to this anchor on the page:



    %26lt;a name=%26quot;section1%26quot;%26gt;Section 1%26lt;/a%26gt;



    When you click on the first anchor, the page will then jump to the position of the named anchor.



    So this is really a link to an element within the same page rather than a jump to another page.



    That's exactly what the javascript is attempting to ignore - it only wants to preload images with a src that points to a direct URL. So if (a[i].indexOf(%26quot;#%26quot;)!=0) is making sure

    that arguments to the function should be URLS and not relative jumps within this page (in which case you would have a # at position 0 like in the example above).





    Your other problem can be demonstrated by looking at



    %26lt;a href=#%26gt;Click and watch the title%26lt;/a%26gt;



    When you click on this, the # gets appended to the URL of the current web page so you will see an extra # next to the URL in the address bar. It's the same effect as



    %26lt;a href=%26quot;anotherURL#%26quot;%26gt;Another page with #%26lt;/a%26gt;



    because you can also jump to a position in another web page like this.



    Hope this helps
    What does the %26quot;#%26quot; mean in this java script code and why am I getting a # symbol in my title of my webpage?
    I think it means number. IDK really
    What does the %26quot;#%26quot; mean in this java script code and why am I getting a # symbol in my title of my webpage?
    The hash/pound symbol has no special meaning native to JavaScript. In this context, it is being used to mark a condition that was designed into the data-model that your preload function expects. The programmer and data-designer agreed to that having the hash symbol in the first position of certain data elements would indicate a particular state to the function. In this case, if the # is NOTt the first character in a string item, then the program believes it to be the URL of an image file. This implies the use of a mixed datastructure (MM_preload.... - whatever that name refers to) of some sort with special characters used to mark particular types of data items.



    Pre-loading images is a standard practice. It improves the user experience by ensuring that all images that will be used are actually available before they are referenced by a function.



    I don't know what you mean by %26quot;the # symbol appears at the end of whatever I type.%26quot;