*

Recent

Author Topic: Game Problem  (Read 4052 times)

am-fs

  • Owner
  • Developer
  • Full Member
  • ******
  • Posts: 228
  • Force: +1/-0
    • Great Flash Games
Game Problem
« on: October 23, 2011, 03:44:39 PM »
I use ibpro games and some have problems loading
when you go here
http://www.halloweenarcadegames.com//play/52-Moorhuhn-Halloween.html
the game dont load

but if i go to the source it works
http://www.halloweenarcadegames.com//arcade/MHhalloweenDR.swf

is this because of the seo setting?
not sure why i can get this to work




Adam LaCombe

  • Sr. Member
  • ****
  • Posts: 433
  • Force: +17/-0
    • My Blog
Re: Game Problem
« Reply #1 on: October 23, 2011, 05:25:39 PM »
Hmmm try displaying the flash game using this code:

Code: [Select]
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="512" height="384" id="test1">
<param name="movie" value="http://www.halloweenarcadegames.com/arcade/MHhalloweenDR.swf" /><embed src="http://www.halloweenarcadegames.com/arcade/MHhalloweenDR.swf" width="512" height="384" name="test1" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" /></object>

Flash isn't my strong point at all soo who knows if that will work lol I tried building a couple games and they were just terrible xD

am-fs

  • Owner
  • Developer
  • Full Member
  • ******
  • Posts: 228
  • Force: +1/-0
    • Great Flash Games
Re: Game Problem
« Reply #2 on: October 23, 2011, 05:57:36 PM »
not sure if im doing this right

this
Code: [Select]
echo ' <object width=\''.$r['width'].'\' height=\''.$r['height'].'\' align=\'center\'>
<param name=\'movie\' value=\''.$domain.'/'.$gamesfolder.'/'.$r['file'].'\'>
<embed src=\''.$domain.'/'.$gamesfolder.'/'.$r['file'].'\' width=\''.$r['width'].'\' height=\''.$r['height'].'\'></embed>
</object>';

to this (This Dont Work)
Code: [Select]
echo ' <object width=\''.$r['width'].'\' height=\''.$r['height'].'\' align=\'center\'>
<param name=\'movie\' value=\''.$domain.'/'arcade'/'.$r['file'].'\'>
<embed src=\''.$domain.'/'arcade'/'.$r['file'].'\' width=\''.$r['width'].'\' height=\''.$r['height'].'\'></embed>
</object>';

Adam LaCombe

  • Sr. Member
  • ****
  • Posts: 433
  • Force: +17/-0
    • My Blog
Re: Game Problem
« Reply #3 on: October 23, 2011, 06:07:12 PM »
nope..

Code: [Select]
echo '
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab" width="'.$r['width'].'" height="'.$r['height'].'" id="test1">
<param name="movie" value="'.$domain.'/'.$gamesfolder.'/'.$r['file'].'" /><embed src="'.$domain.'/'.$gamesfolder.'/'.$r['file'].'" width="'.$r['width'].'" height="'.$r['height'].'" name="test1" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" /></object>';

am-fs

  • Owner
  • Developer
  • Full Member
  • ******
  • Posts: 228
  • Force: +1/-0
    • Great Flash Games
Re: Game Problem
« Reply #4 on: October 23, 2011, 06:18:46 PM »
Nope, that didnt work either.

Adam LaCombe

  • Sr. Member
  • ****
  • Posts: 433
  • Force: +17/-0
    • My Blog
Re: Game Problem
« Reply #5 on: October 23, 2011, 06:25:43 PM »
Hmm either wait for an answer in here which would take a while most likely orr ask over at PHPFreaks.. http://phpfreaks.com/

Sorry I couldn't help ya.

a debugging step would be to take and place only the html of the game (the embedded code and what not) and place that inside a html file and access it. If it works then you're looking at a javascript problem most likely caused by the rating script or some other code being included inside the 'play game' page.

kurt

  • Developer
  • Hero Member
  • ******
  • Posts: 634
  • Force: +16/-1
Re: Game Problem
« Reply #6 on: October 24, 2011, 01:00:41 AM »
It may be because there is an extra "/" in the URL for some reason. Check to see if you have one in the settings field trailing the domain name. If there is, try and delete it and see if that works.