Log In · Register

 
 
Closed TopicStart new topic
Please Help!, Comment box and Message
Sassystar42
post Sep 3 2006, 04:45 PM
Post #1


Newbie
*

Group: Member
Posts: 4
Joined: Sep 2006
Member No: 461,084



I recently used one of the layouts I got from here and it has a comment box and the comments are hidden. But when someone tries to comment me or message me it says that they have to be added as a friend in order to do so... but they are friends. How can I change this?
 
adafsdfasdfadasd...
post Sep 3 2006, 04:50 PM
Post #2


-Lost in the void-
****

Group: Member
Posts: 103
Joined: Aug 2006
Member No: 452,563



What's the code you're using? It probably says add you're friend id here which is the long number found in you're myspace url...

CODE
Ex.

my myspace url: http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&friendid=106337778

my friend id: 106337778
 
Sassystar42
post Sep 3 2006, 04:56 PM
Post #3


Newbie
*

Group: Member
Posts: 4
Joined: Sep 2006
Member No: 461,084



I don't know the code so here it is.... also I put my user id... do I have to list all my friends' inorder for them to comment?


<div class="navigation">
<center>
<a href="http://home.myspace.com/index.cfm?fuseaction=user">home</a> | <a href="http://www.myspace.com/index.cfm?fuseaction=user.homeComments&friendID=26132088"comments</a> |
<a href="http://mail5.myspace.com/index.cfm?fuseaction=mail.message&friendID=26132088">message me</a> |
 
adafsdfasdfadasd...
post Sep 3 2006, 05:35 PM
Post #4


-Lost in the void-
****

Group: Member
Posts: 103
Joined: Aug 2006
Member No: 452,563



um can u post the full code for the layout that u got from here or a url to it? the comment box code should look something like this :

CODE
<form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"><input name="friendID" value="Your friend ID number" type="hidden"><textarea name="f_comments" cols="40" rows="7" style="border-width: 1px; border-style: solid; border-color: ######; font-family: Tahoma; font-size: 10px; color: ######; background-color: ######;" style="overflow:auto;"></textarea><br> <input value="add comment" style="border-width: 1px; border-style: solid; border-color: ######; font-family: Tahoma; font-size: 10px; color: ######; background-color: ######;" type="submit"> <input value="clear" style="border-width: 1px; border-style: solid; border-color: ######; font-family: Tahoma; font-size: 10px; color: ######; background-color: ######;" type="reset"></form>


and you'll notice where it says
CODE
value="Your friend ID number"


you would replace the "Your friend ID number" with the number to get a correct and working code which would look like this if you were me:

CODE
<form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"><input name="friendID" value="106337778" type="hidden"><textarea name="f_comments" cols="40" rows="7" style="border-width: 1px; border-style: solid; border-color: black' font-family: Tahoma; font-size: 10px; color: black; background-color: white;" style="overflow:auto;"></textarea><br> <input value="add comment" style="border-width: 1px; border-style: solid; border-color: black; font-family: Tahoma; font-size: 10px; color: black; background-color: white;" type="submit"> <input value="clear" style="border-width: 1px; border-style: solid; border-color: black; font-family: Tahoma; font-size: 10px; color: black; background-color: white;" type="reset"></form>



Edit:

the

CODE
<div class="navigation">
<center>
<a href="http://home.myspace.com/index.cfm?fuseaction=user">home</a> | <a href="http://www.myspace.com/index.cfm?fuseaction=user.homeComments&friendID=26132088"comments</a>[code] |
<a href="http://mail5.myspace.com/index.cfm?fuseaction=mail.message&friendID=26132088">message me</a> |


has an error in it at "friendID=26132088"comments"

it should be "friendID=26132088"> comments "

so the correct/working code for you're navigation would be

CODE
<center>
<a href="http://home.myspace.com/index.cfm?fuseaction=user">home</a> | <a href="http://www.myspace.com/index.cfm?fuseaction=user.homeComments&friendID=26132088">comments</a>[code] |
<a href="http://mail5.myspace.com/index.cfm?fuseaction=mail.message&friendID=26132088">message me</a> |


This post has been edited by ximonolithix: Sep 3 2006, 05:38 PM
 
Sassystar42
post Sep 3 2006, 05:39 PM
Post #5


Newbie
*

Group: Member
Posts: 4
Joined: Sep 2006
Member No: 461,084



Here's the url to the codes for the layout.

layout
 
adafsdfasdfadasd...
post Sep 3 2006, 05:44 PM
Post #6


-Lost in the void-
****

Group: Member
Posts: 103
Joined: Aug 2006
Member No: 452,563



Okay thanks to get the comment box working look for where summa placed this code

CODE
<div class="comment">
<center><form method="post" action="http://comments.myspace.com/index.cfm?fuseaction=user.ConfirmComment"><input name="friendID" value="*****YOUR USER ID HERE*****" type="hidden"><textarea name="f_comments" style="width: 375; height: 75px;" cols="40" rows="7" style="border-width: 1px; border-style: solid; border-color: 000000; font-family: small fonts; text-transform:uppercase; letter-spacing:1pt;font-size: 7px; color: 000000; background-color: ffffff;" style="overflow:auto;">hey. </textarea> <br> <input value="feel free" style="border-width: 1px; border-style: solid; border-color: 000000; font-family: small fonts; text-transform:uppercase; letter-spacing:1pt;font-size: 7px; color: 000000; background-color: ffffff;" type="submit"> <input value="clear" style="border-width: 1px; border-style: solid; border-color: 000000; font-family: small fonts; text-transform:uppercase; letter-spacing:1pt;font-size: 7px; color: 000000;  background-color: ffffff;" type="reset"></form></center>
</div>


you will have to change
CODE
value="*****YOUR USER ID HERE*****"
to whatever you user id is [example. mine would be
CODE
value="106337778"


also you will need to make the following adjustments for this code which was given

CODE
<div class="navigation">
<center>
<a href="http://home.myspace.com/index.cfm?fuseaction=user">home</a> | <a href="http://www.myspace.com/index.cfm?fuseaction=user.homeComments&friendID=*****YOUR USER ID HERE*****">comments</a> |
<a href="http://mail5.myspace.com/index.cfm?fuseaction=mail.message&friendID=*****YOUR USER ID HERE*****">message me</a> |
<a href="http://vids.myspace.com/index.cfm?fuseaction=vids.showvids&friendID=*****YOUR MYSPACE ID HERE*****">view videos</a> |
<a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=*****YOUR MYSPACE ID HERE*****">add me</a> |
<a href="http://viewmorepics.myspace.com/index.cfm?fuseaction=user.viewPicture&friendID=*****YOUR USER ID HERE*****">view photos</a> |
<a href="http://home.myspace.com/index.cfm?fuseaction=user.viewfriends&friendID=*****YOUR USER ID HERE*****">view my friends</a></center>
</div>


once again replacing the friendID=*****YOUR USER ID HERE*****" with your own friend ID to get something like this if you had my friend id number
CODE
friendID="106337778"
 
Sassystar42
post Sep 3 2006, 05:54 PM
Post #7


Newbie
*

Group: Member
Posts: 4
Joined: Sep 2006
Member No: 461,084



THANK YOU!!!!!!!!!!!!!!!!!!
 
adafsdfasdfadasd...
post Sep 3 2006, 05:59 PM
Post #8


-Lost in the void-
****

Group: Member
Posts: 103
Joined: Aug 2006
Member No: 452,563



thumbsup.gif you're most welcome
 
*This Confession*
post Sep 3 2006, 06:41 PM
Post #9





Guest






okayyyyy
topic closed

have a nice night happy.gif
 

Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: