Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Problem installing advertising manager, please help

Asked Modified Viewed 3,817 times
J
jangermann
J
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
asked
Junior Member

I just copy the downloaded infusion folder to the other infusionsfolders on the server.
When I want to install the infusion the screen looks like this??
I am using V7.01.02.

What is going on?
jangermann attached the following file:
advertising_manager.gif [No information available / 94 Downloads]
0 replies

12 posts

S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
answered
Veteran Member

The error-message says that it can't find the file English.php

Make sure that file is on the following destination on your FTP:
/infusions/advertising_manager/locale/English.php
0 replies
J
jangermann
J
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
answered
Junior Member

Quote

smokeman wrote:
The error-message says that it can't find the file English.php

Make sure that file is on the following destination on your FTP:
/infusions/advertising_manager/locale/English.php


Great! thank, the file was called english.php (small letters). The infusion installed with no errors. I have installed the panel but when at greate a new advertise, I can not see it on the page :-(
Any ideas?
0 replies
S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
answered
Veteran Member

If you have enabled the panel (set it to active) - and you have a working advertising-code then it shall work.

Try with a simple code first - like eg;
<img src='http://www.phpfusion-tips.dk/images/phpf_tips_logo.jpg'>
0 replies
J
jangermann
J
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
answered
Junior Member

Well now It works, I can now show pictures and text.
What I did was remove the infusion at reinstall it.
I am almost there smile Not I just need it to play swf files. This code HTML work with Ads panel but not with Advertising manager:
Any idea?

<object classid="clsidgrin27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash4/cabs/swflash.cab#version=4,0,0,0"
id="name" width="468" height="60">
<param name="movie" value="http://www.gadeatv.dk/images/123.swf">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<embed name="name" src="http://www.gadeatv.dk/images/123.swf"
quality="high" wmode="transparent" width="468" height="60"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?
P1_Prod_Version=ShockwaveFlash">
</embed>
</object>
Edited by jangermann on 25-03-2011 17:54,
0 replies
S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
answered
Veteran Member

Try this code instead:
<center>
<object type='application/x-shockwave-flash' width='468' height='60' data='http://www.gadeatv.dk/images/123.swf'>
<param name='allowFullScreen' value='true'></param>
<param name='allowscriptaccess' value='always'></param>
<param name='movie' value='http://www.gadeatv.dk/images/123.swf' />
</object>
</center>
0 replies
G
GMUDuckman
G
  • Senior Member, joined since
  • Contributed 266 posts on the community forums.
  • Started 6 threads in the forums
answered
Senior Member

Hey smokeman, just an FYI the <center> tag is depreciated in favor of the <div> tag.

[syntaxhighlighter brush=html,first-line=1,highlight=0,collapse=false,html-script=false]
<div style='width: 100%' align='center'>
<object type='application/x-shockwave-flash' width='468' height='60' data='http://www.gadeatv.dk/images/123.swf'>
<param name='allowFullScreen' value='true'></param>
<param name='allowscriptaccess' value='always'></param>
<param name='movie' value='http://www.gadeatv.dk/images/123.swf' />
</object>
</div>[/syntaxhighlighter]
0 replies
S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
answered
Veteran Member

Ahh ok - thx for telling. ;)
0 replies
J
jangermann
J
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions
answered
Junior Member

IT WORKS!!!

Thanks a lot! this is so great!
Thanks again.
0 replies
S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
answered
Veteran Member

No Problem.

Just remember if you want other swf/flash shown - then use the code and just change the URL to the flash.

Thereby you have a "working example"-code you can use to other flash'es. ;)
0 replies
G
GMUDuckman
G
  • Senior Member, joined since
  • Contributed 266 posts on the community forums.
  • Started 6 threads in the forums
answered
Senior Member

Quote

smokeman wrote:
Ahh ok - thx for telling. wink


Yea, a lot tags that IMO shouldn't be depreciated are... like <center> <marquee> <dir> <font> <strike> (or <s>wink and <u>, actually upon further research MY code is still wrong... it should be something more like
[syntaxhighlighter brush=html,first-line=1,highlight=0,collapse=false,html-script=false]
<div style='width: 468px; margin-left: auto; margin-right:auto;'>
<object type='application/x-shockwave-flash' width='468' height='60' data='http://www.gadeatv.dk/images/123.swf'>
<param name='allowFullScreen' value='true'></param>
<param name='allowscriptaccess' value='always'></param>
<param name='movie' value='http://www.gadeatv.dk/images/123.swf' />
</object>
</div>[/syntaxhighlighter]

pretty stupid :-(
0 replies
S
smokeman
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
answered
Veteran Member

How about the use of CSS in the<div> tag for centering ?
<div style='text-align: center;'>
0 replies
G
GMUDuckman
G
  • Senior Member, joined since
  • Contributed 266 posts on the community forums.
  • Started 6 threads in the forums
answered
Senior Member

that will work in a lot of cases, but say you have text in the DIV that you want left or right justified... so you just want the block centered but the text left justified, you'd have to do what I did above anyways... so why not just do it in the first place.
0 replies

Category Forum

Panels and Infusions

Labels

None yet

Statistics

  • Views 0 views
  • Posts 12 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

S
S
  • Veteran Member, joined since
  • Contributed 920 posts on the community forums.
  • Started 79 threads in the forums
G
G
  • Senior Member, joined since
  • Contributed 266 posts on the community forums.
  • Started 6 threads in the forums
J
J
  • Junior Member, joined since
  • Contributed 14 posts on the community forums.
  • Started 2 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet