|
View unanswered posts | View active topics
|
Page 1 of 1
|
[ 14 posts ] |
|
Author |
Message |
Tammy
|
Posted: Thu Aug 19, 2004 7:45 am |
|
|
Major Poster |
|
Joined: Sat Feb 21, 2004 12:05 pm Posts: 84 Location: Iowa,USA Been Liked: 0 time
|
Is it just me,or is everyone having some trouble getting around in Singers Show Case? Heres how its going for me (and I have internet speeds a little better than dsl)
Takes....30 seconds,just to get on the SS site,from the time I click GO.
(That is like DIAL UP Dejavu)
Takes ....12 seconds to get back to the main Submissions page after
viewing a singers submission.
The songs come up at a good rate,but getting back to the
main page to listen to others,isnt as easy.
Its putting a damper on how many song subs I am
able to listen to in a day.
Basically the inhability to move around the site,is making
it so that I am not listening to as many subs because it just
takes too long.
Is anyone else having this problem?
|
|
Top |
|
|
ritisroo
|
Posted: Thu Aug 19, 2004 7:55 am |
|
|
Advanced Poster |
|
Joined: Wed Feb 25, 2004 8:13 pm Posts: 344 Been Liked: 0 time
|
Don't worry, I am having the same problem too
I have cable internet at home and a good computer with a lot of memory/power, so I know it is not that. It does take around 30 secs for the site to load......And the same when you listen to a sub and try to get back.
Same thing at work...........still very slow.......
And I agree, it makes for listening to be a pain sometimes
|
|
Top |
|
|
Tony
|
Posted: Thu Aug 19, 2004 7:57 am |
|
|
Super Poster |
|
Joined: Fri May 07, 2004 7:05 am Posts: 1383 Been Liked: 2 times
|
Hi Tammy
Here's some information regarding your issue. Phil (webguru) is working on this issue, let me point you to
All Forums ยป Singer's Forum: Get out of your little BOX!!!!!!!!!!!
webguru Quote: Give me time to figure out how to do this... I'm still trying figure out to have the pages load faster
This is alot of work, but I do enjoy it!
I am also working on some other features to make this more enjoyable for all! (That's the toughest part! - Pleasing everyone...)
Now, there is a work-around, that I use, because like you, I cannot wait, even with cable or DSL.
Open the Singer's Showcase page and login (on the top)
Wait 'till the page comes back, and showing you've logged in.
Now, DO NOT click the on the song title, BUT
press the SHIFT key and then click on the song title. This way a new page opens, and you can liste, rank, post and when done, just close the window!
Now you're instantly back on the Singer's Showcase page and repeat the steps. Once you're done all the subs, just do a refresh on the Singer's Showcase page and all will be updated. Possibly have new subs to listen too as well.
Hope this helps.
|
|
Top |
|
|
Tammy
|
Posted: Thu Aug 19, 2004 11:43 am |
|
|
Major Poster |
|
Joined: Sat Feb 21, 2004 12:05 pm Posts: 84 Location: Iowa,USA Been Liked: 0 time
|
Ahhhhhhhhhh...thanks Allstar,I will try that
and if for some reason,its not faster,,well...I'll
buy some yarn,and knit a few pair of socks in
between subs... ol.
|
|
Top |
|
|
cerealsinger
|
Posted: Thu Aug 19, 2004 12:10 pm |
|
|
Novice Poster |
|
Joined: Mon Jul 26, 2004 11:22 am Posts: 32 Location: NY Been Liked: 0 time
|
Yeah someone dropped a monkey wrench into the machinery..the server is just slow as molasses..I have 3meg cable, takes like 20 secs to load singersshowcase page up! Nothing wrong at your end!
|
|
Top |
|
|
Phill Cross
|
Posted: Fri Aug 20, 2004 2:19 am |
|
Joined: Sun Jul 01, 2001 4:00 am Posts: 2807 Images: 36 Location: Anaheim, Orange County, CA Been Liked: 122 times
|
Hey folks -
I know, I know!
I "really" am working on this.
It is very slow... I have four computers here - one with 14.4 modem you should see how slow that is!
It is because of the search queries being conducted by the scripts. I have hired an outside developer to research, investigate, and assist in repairing.
Hopefully soon. We tried yesterday, but to no avail... We'll keep trying.
Phill
|
|
Top |
|
|
SMs GONE
|
Posted: Sat Aug 21, 2004 4:11 am |
|
|
Non-Member |
Joined: Sat Jul 24, 2004 7:00 pm Posts: 188 Been Liked: 0 time
|
I feel for the web guru. This stuff isn't as easy as some may think. As a matter of fact, it's not easy at all! I dabble in website development and I know the hassles!! It can be extremely frustrating, even for a pro!
|
|
Top |
|
|
Phill Cross
|
Posted: Sat Aug 21, 2004 5:57 am |
|
Joined: Sun Jul 01, 2001 4:00 am Posts: 2807 Images: 36 Location: Anaheim, Orange County, CA Been Liked: 122 times
|
Thank you, I was begining to think nobody believed me...
Hey anybody want to help figure it out?
Here is a portion of the code from the latest submissions page.
Code: <? if ($id=="topSong") { if($genre=='%') $genre_str = " genere like '%$genre%' "; else $genre_str = " genere = '$genre' "; } if (empty($offset)) { $offset=0; } if (strlen($records)) { $dispPages=$records; } else { $dispPages=10; } $wcnt=$offset; $num31=$dispPages*10;
// $sql = "select songs.*, unix_timestamp(date) as date1 from songs where $genre_str order by $sort_column $sort_type limit $offset,$dispPages";
$sql= "select s.*, unix_timestamp(s.date) as date1,u.username from
songs s, user_profile u where s.uid=u.uid and $genre_str order by $sort_column $sort_type limit $offset,$dispPages";
$db1=mysql_query($sql);
echo mysql_error();
if (mysql_num_rows($db1)==0) {
echo "<center><span class=warning>No Submissions Found.</span></center><br>";
} else { ?> <table width="100%" border="0" cellpadding="2" cellspacing="1"> <tr> <th> <? if($sort_column=="title") { if($sort_type=="desc") { $sort_type="asc"; $img="images/up.gif"; } else { $sort_type="desc"; $img="images/down.gif"; } ?> <a class=thnav href=index.php?<? echo "sort_column=title&genre=" .urlencode($genre)."&sort_type=$sort_type&records=$records"; ?>>Song Title</a> <img border="0" src="<? echo $img; ?>" width="10" height="10"> <? } else { ?> <a class=thnav href=index.php?<? echo "sort_column=title&genre=" .urlencode($genre)."&sort_type=asc&records=$records"; ?>>Song Title</a> <? } ?> </th> <th><span style="font-size:12px">Genre</span></th> <th><span style="font-size:11px">Comments</span></th> <th><span style="font-size:11px">Rank</span></th> <th><span style="font-size:11px">Submitted</span></th> <th> <? if($sort_column=="username")
{
if($sort_type=="desc")
{ $sort_type="asc"; $img="images/up.gif"; }
else
{ $sort_type="desc"; $img="images/down.gif"; }
?>
<a class=thnav href=index.php?<? echo "sort_column=username&genre=" .urlencode($genre)."&sort_type=$sort_type&records=$records"; ?> >Member</a>
<img src=<? echo $img; ?> height=10 width=10 align=absbottom >
<? } else { ?>
<a class=thnav href=index.php?<? echo "sort_column=username&genre=" .urlencode($genre)."&sort_type=$sort_type&records=$records"; ?> >Member</a>
<? } ?>
</th> </tr> <? $db2=mysql_query("select count(*) from songs s, user_profile u where s.uid=u.uid and $genre_str");
$rrr = mysql_fetch_array($db2); $num = $rrr[0]; $link2 = "index.php?records=$records"; $gotopage =table_offset($pageno,$num,$wcnt,$dispPages,$num31,$link2);
while ($r1=mysql_fetch_array($db1)) { $db2=mysql_query("select * from users where user_id='$r1[uid]'"); $r2=mysql_fetch_array($db2);
$db3=mysql_query("select * from genere where id='$r1[genere]'"); $r3=mysql_fetch_array($db3); ?>
<tr> <??> <td class="row1" onmouseover="this.style.backgroundColor='666666'; " onmouseout="this.style.backgroundColor='333333';" align=center><b><a href="song.php?<? echo "id=$r1[uid]&act1=$r1[genere]&act2=$r1[song_id]"; ?>"><? echo $r1[title]; ?></a></b></td>
<td class="row2" align=center><span style="font-size:11px"><? echo $r3[genere]; ?></span></td> <? // insert # of comments $res_com = mysql_query("SELECT count(cid) FROM rank WHERE songid = ' $r1[song_id]'"); $row_com = mysql_fetch_array($res_com); ?> <td class="row2" align=center><span class=tinywht><? echo $row_com[0]; ?></span></td> <? // Determines if singer wants to be ranked if ($r1[rankit] == "n") { $song_rank2 = ""; } else { // Inserts individual song rank $sql_song2 = "select sum(rank),count(cid) from rank where songid = '$r1[song_id]' and rank > 0"; $res_song2 = mysql_query($sql_song2); $row_song2 = mysql_fetch_array($res_song2);
if ($row_song2[1] <= 2) { $song_rank2 = "-"; } else { $song_rank2 = $r1[ranking]; } }?> <td class="row2" align=center><span class=tinywht><? echo $song_rank2; ?></span></td> <td class="row2" align=center><span class=tinywht><? echo date('M jS',$r1[date1]); ?></span></td>
<td class="row1" onmouseover="this.style.backgroundColor='666666'; " onmouseout="this.style.backgroundColor='333333';" align=center><b><a href="profile.php?id=<? echo $r1[uid]; ?>"><? echo $r2[username]; ?></a></b></td>
</tr>
<? } ?> <tr> <td colspan="6" class="gensmall"><? echo $gotopage; ?></td> </tr> <? } ?> </table> If anyone has an idea - please feel free to give feedback...
Thanks,
Phill
|
|
Top |
|
|
Phill Cross
|
Posted: Sat Aug 21, 2004 6:19 am |
|
Joined: Sun Jul 01, 2001 4:00 am Posts: 2807 Images: 36 Location: Anaheim, Orange County, CA Been Liked: 122 times
|
I thought that may be one reaction...
Also, wanted people to know how much coding work goes into displaying some of the info. Plus that is only a portion of the entire code. But where I believe the troubles are.
Just maybe there is another developer on here who could help...
If not - oh well - I'll keep "pluggin' away" - buggy dang stuff. - One incorrect code entry can really thow a glitch in the works...
Phill
|
|
Top |
|
|
Tony Sotomayor
|
Posted: Sat Aug 21, 2004 2:06 pm |
|
Joined: Fri Jul 18, 2003 1:24 pm Posts: 84 Songs: 25 Location: Central Florida, USA Been Liked: 0 time
|
Phill You have my admiration and you can count on all my patience. Wish I could be of more help. Thanks for all you've done so far.
You're the man
_________________ I dream of songs of love, peace and harmony.
|
|
Top |
|
|
A NEW DAY
|
Posted: Sat Aug 21, 2004 3:50 pm |
|
Joined: Sat Feb 21, 2004 6:04 pm Posts: 398 Been Liked: 0 time
|
I KNOW WHAT IT SAID..
IT WAS GURUISH FOR
HELP?
HEHE HUGS PHIL WE KNOW UR JOB ISNT EASY AND TRUST ME WE APPRECIATE YOU .. HUGSS AGIN
|
|
Top |
|
|
Terry Richards
|
Posted: Sat Aug 21, 2004 3:56 pm |
|
|
Major Poster |
|
Joined: Sat Nov 29, 2003 4:07 pm Posts: 71 Location: Boise, Idaho Been Liked: 0 time
|
Hey Phil.............
Thanks for all you do......
Wish I could help you///but Im a computer dunce...
This is a wonderful site...and worth the wait...
Keep up the good job..
WE ALL APPRECIATE YOU!! and your efforts in our behalf..
|
|
Top |
|
|
Tammy
|
Posted: Sat Aug 21, 2004 6:47 pm |
|
|
Major Poster |
|
Joined: Sat Feb 21, 2004 12:05 pm Posts: 84 Location: Iowa,USA Been Liked: 0 time
|
Phil,I am wondering if the Route that SS is going may have something to do with speeds? Heres an exaple of whats happeneing here when I am on SS.
Firstly My internet goes thru Desmoines Iowa..to Yours in NY,
but then,,it goes from NY,to the other side of the Country,
which is Cal.
So~ My question is,why not skip NY,and just go straight to Cal
rather than heading to the NY server?
Am I making sense? gosh,I could use a coffee.
|
|
Top |
|
|
|
Page 1 of 1
|
[ 14 posts ] |
|
Who is online |
Users browsing this forum: No registered users and 537 guests |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|
|