Karaoke Scene's Karaoke Forums https://mail.karaokescene.net/forums/ |
|
Is it Just Me? https://mail.karaokescene.net/forums/viewtopic.php?f=1&t=2453 |
Page 1 of 1 |
Author: | Tammy [ Thu Aug 19, 2004 7:45 am ] |
Post subject: | Is it Just Me? |
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? |
Author: | ritisroo [ Thu Aug 19, 2004 7:55 am ] |
Post subject: | |
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 |
Author: | Tony [ Thu Aug 19, 2004 7:57 am ] |
Post subject: | |
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. |
Author: | Tammy [ Thu Aug 19, 2004 11:43 am ] |
Post subject: | |
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. |
Author: | cerealsinger [ Thu Aug 19, 2004 12:10 pm ] |
Post subject: | |
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! |
Author: | Phill Cross [ Fri Aug 20, 2004 2:19 am ] |
Post subject: | |
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 |
Author: | SMs GONE [ Sat Aug 21, 2004 4:11 am ] |
Post subject: | |
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! |
Author: | Phill Cross [ Sat Aug 21, 2004 5:57 am ] |
Post subject: | |
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 anyone has an idea - please feel free to give feedback...
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> Thanks, Phill |
Author: | SMs GONE [ Sat Aug 21, 2004 6:04 am ] |
Post subject: | |
! I can just hear evryone now, sayin HUH!!! |
Author: | Phill Cross [ Sat Aug 21, 2004 6:19 am ] |
Post subject: | |
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 |
Author: | Tony Sotomayor [ Sat Aug 21, 2004 2:06 pm ] |
Post subject: | |
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 |
Author: | A NEW DAY [ Sat Aug 21, 2004 3:50 pm ] |
Post subject: | OHHHH |
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 |
Author: | Terry Richards [ Sat Aug 21, 2004 3:56 pm ] |
Post subject: | |
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.. |
Author: | Tammy [ Sat Aug 21, 2004 6:47 pm ] |
Post subject: | |
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. |
Page 1 of 1 | All times are UTC - 8 hours |
Powered by phpBB® Forum Software © phpBB Group https://www.phpbb.com/ |