RoXbY 3 Denunciar post Postado Agosto 28, 2006 Fala galera do fórum, tudo certo? Estou fazendo uma Loja Virtual para um cliente, porém gostaria de dar um UP na loja virtual oscommerce. O negócio é que na própria Loja já é disponibilizada um banner no label do site, no sistema de administração dela, vocÊ pode adicionar quantos banners quiser e ela alterna os que estão cadastrados em um único lugar, no label do site, aonde existe um espaço para o banner. O que eu preciso seria criar uma função que permitisse que mostrasse um número definido por mim, pode ser no código do site mesmo, por exemplo, 5 banners. fiz um código: require(DIR_WS_INCLUDES . 'counter.php');?><table border="0" width="100%" cellspacing="0" cellpadding="1"> <tr class="footer"> <td class="footer"> <?php echo strftime(DATE_FORMAT_LONG); ?> </td> <td align="right" class="footer"> <?php echo $counter_now . ' ' . FOOTER_TEXT_REQUESTS_SINCE . ' ' . $counter_startdate_formatted; ?> </td> </tr></table><br><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td align="center" class="smallText"><?php echo FOOTER_TEXT_BODY; ?></td> </tr></table>//alterei esta parte abaixo<?phpif ($temBanner = tep_banner_exists('dynamic', '468x50')) {$banner = array();while(count($banner)<5) $banner[] = tep_banner_exists('dynamic', '468x50');?><br><table border="0" width="100%" cellspacing="0" cellpadding="0"><?php foreach($banner as $b){ ?><tr><td align="center"><?php echo tep_display_banner('static', $b); ?></td></tr><?php } ?></table><?php}?> então... isto funciona, porém se o número de banners ali definido for inferior a 5 cadastrados no sistema, ele duplica, triplica até suprir os 5 espaços ali indicados.. alguém poderia me dar uma ajuda? um amigo me fez isso, mas não funcionou: <?php if ($temBanner = tep_banner_exists('dynamic', '468x50')) { $servidor = "servidor"; $banco = "bancodedados"; $usuario = "usuario"; $senha = "senha"; $coneccao = mysql_connect($servidor, $usuario, $senha) or trigger_error(mysql_error(),E_USER_ERROR); mysql_select_db($banco, $coneccao); $contaBanners = " SELECT COUNT(banners_id) as total FROM TABLE_BANNERS WHERE status = '1'"; $contaBanners = mysql_query($coneccao) or die(mysql_error()); $numBanners = mysql_fetch_assoc($contaBanners); $numBanners = ($numBanners["total"] > 5) ? 5 : $numBanners[0]; mysql_free_result($contaBanners); $banner = array(); while(count($banner)<$numBanners){ $tmp = tep_banner_exists('dynamic', '468x50'); if(!in_array($tmp,$banner)) $banner[] = $tmp; }?><br><table border="0" width="100%" cellspacing="0" cellpadding="0"><?php foreach($banner as $b){ ?><tr><td align="center"><?php echo tep_display_banner('static', $b); ?></td></tr><?php } ?></table><?php}?> Compartilhar este post Link para o post Compartilhar em outros sites
RoXbY 3 Denunciar post Postado Agosto 29, 2006 esqueci de fala..o código que fiz, além de mandar sempre 5 .. ele repete os mesmos bannersalguém me ajuda :( Compartilhar este post Link para o post Compartilhar em outros sites
Vitor Oliveira 26 1 Denunciar post Postado Junho 30, 2009 você consegui ???? porque estou com a mesma duvida em 2009 Compartilhar este post Link para o post Compartilhar em outros sites
jhoy_source 0 Denunciar post Postado Junho 30, 2009 Dei uma procurada e achei isso aqui nos meus arquivos está estremamente simples e no momento estou ocupado pra arrumar ele, você precisa implementar para mostrar do tamanho que você deseja e pra pegar o banner do database mas já dá pra tirar um idéia. <?php $banners = array( 'http://img231.imageshack.us/img231/3928/presenteguigo.jpg', 'http://img269.imageshack.us/img269/2372/7sins.jpg', 'http://img20.imageshack.us/img20/6640/guildwarsbox.jpg', 'http://img261.imageshack.us/img261/6905/hacked.gif', 'http://img521.imageshack.us/img521/7007/janela.png', 'http://img218.imageshack.us/img218/9837/crepusculo.png', 'http://img301.imageshack.us/img301/7576/shapedupla.png', 'http://img156.imageshack.us/img156/6936/berserk.png', 'http://img240.imageshack.us/img240/5839/soldados.png'); /* aqui é criada uma variável do tipo array aonde você deverá colocar o nome das imagens que comporão o seu banner rotativo. */ $totalbanners = count($banners); /* aqui usamos a instrução count para fazer uma contagem das imagens dentro da variável $banners */ $totalbanners--; /*aqui fazemos um decremento do total retornado pela instrução count, já que um array começa com o índice 0 */ $randombanners = rand(0,$totalbanners); /*usamos aqui a instrução rand que sorteia uma das imagens (números) gerados pelo count usado anteriormente */ echo "<center><a href=http://jhoysource.justfree.com><img src=$banners[$randombanners]></a></center>" ?> Compartilhar este post Link para o post Compartilhar em outros sites
Vitor Oliveira 26 1 Denunciar post Postado Junho 30, 2009 O meu problema é no caso do gerenciador de banners no painel admin da loja oscommerce. Eu deletei o banner incluso que tinha lá de padrão e coloquei um novo só que não aparece nenhum banner no topo. se você souber disso !!! Compartilhar este post Link para o post Compartilhar em outros sites
jhoy_source 0 Denunciar post Postado Julho 1, 2009 Amigo posta o código que insere o banner e a parte onde exibe o banner pra podermos tentar encontrar o seu erro. Compartilhar este post Link para o post Compartilhar em outros sites
Vitor Oliveira 26 1 Denunciar post Postado Julho 1, 2009 Primeira Parte <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html dir="ltr" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Administração osCommerce</title> <link rel="stylesheet" type="text/css" href="includes/stylesheet.css"> <script language="javascript" src="includes/general.js"></script> <script language="javascript"><!-- function popupImageWindow(url) { window.open(url,'popupImageWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,res izable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,le ft=150') } //--></script> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="#FFFFFF"> <div id="spiffycalendar" class="text"></div> <!-- header //--> <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td colspan="2"><a href="http://www.durigonfilmes.com.br/admin/index.php"><img'>http://www.durigonfilmes.com.br/admin/index.php"><img src="images/oscommerce.png" border="0" alt="osCommerce Online Merchant v2.2 RC1" title=" osCommerce Online Merchant v2.2 RC1 "></a></td> </tr> <tr class="headerBar"> <td class="headerBarContent"> <a href="http://www.durigonfilmes.com.br/admin/index.php" class="headerLink">Administração</a> | <a href="http://www.durigonfilmes.com.br/" class="headerLink">Catálogo Online</a> | <a href="http://www.oscommerce.com" class="headerLink">Suporte da Loja</a></td> <td class="headerBarContent" align="right">Logged in as: durigon (<a href="http://www.durigonfilmes.com.br/admin/login.php?action=logoff" class="headerLink">Logoff</a>) </td> </tr> </table><!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="2" cellpadding="2"> <tr> <td width="125" valign="top"><table border="0" width="125" cellspacing="1" cellpadding="1" class="columnLeft"> <!-- left_navigation //--> <!-- configuration //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/configuration.php?gID=1&selected_box=configuration'"> <a href="http://www.durigonfilmes.com.br/admin/configuration.php?gID=1&selected_box=configuration" class="menuBoxHeadingLink">Configuração</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- configuration_eof //--> <!-- catalog //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/categories.php?selected_box=catalog'"> <a href="http://www.durigonfilmes.com.br/admin/categories.php?selected_box=catalog" class="menuBoxHeadingLink">Produtos</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- catalog_eof //--> <!-- modules //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/modules.php?set=payment&selected_box=modules'"> <a href="http://www.durigonfilmes.com.br/admin/modules.php?set=payment&selected_box=modules" class="menuBoxHeadingLink">Módulos</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- modules_eof //--> <!-- customers //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/customers.php?selected_box=customers'"> <a href="http://www.durigonfilmes.com.br/admin/customers.php?selected_box=customers" class="menuBoxHeadingLink">Clientes</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- customers_eof //--> <!-- taxes //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/countries.php?selected_box=taxes'"> <a href="http://www.durigonfilmes.com.br/admin/countries.php?selected_box=taxes" class="menuBoxHeadingLink">Locais/ Taxas</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- taxes_eof //--> <!-- localization //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/currencies.php?selected_box=localization'"> <a href="http://www.durigonfilmes.com.br/admin/currencies.php?selected_box=localization" class="menuBoxHeadingLink">Localização</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- localization_eof //--> <!-- reports //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/stats_products_viewed.php?selected_box=reports'"> <a href="http://www.durigonfilmes.com.br/admin/stats_products_viewed.php?selected_box=reports" class="menuBoxHeadingLink">Estatísticas</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- reports_eof //--> <!-- tools //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/backup.php?selected_box=tools'"> <a href="http://www.durigonfilmes.com.br/admin/backup.php?selected_box=tools" class="menuBoxHeadingLink">Ferramentas</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxContent"><a href="http://www.durigonfilmes.com.br/admin/backup.php" class="menuBoxContentLink">Cópia do banco de dados</a><br><a href="http://www.durigonfilmes.com.br/admin/banner_manager.php" class="menuBoxContentLink">Gerenciador de Banners</a><br><a href="http://www.durigonfilmes.com.br/admin/cache.php" class="menuBoxContentLink">Controle de Cache</a><br><a href="http://www.durigonfilmes.com.br/admin/define_language.php" class="menuBoxContentLink">Definir Línguas</a><br><a href="http://www.durigonfilmes.com.br/admin/file_manager.php" class="menuBoxContentLink">Gerenciador de Arquivos</a><br><a href="http://www.durigonfilmes.com.br/admin/mail.php" class="menuBoxContentLink">Enviar Email</a><br><a href="http://www.durigonfilmes.com.br/admin/newsletters.php" class="menuBoxContentLink">Gerenciador de Newsletter</a><br><a href="http://www.durigonfilmes.com.br/admin/server_info.php" class="menuBoxContentLink">Informações de Servidor</a><br><a href="http://www.durigonfilmes.com.br/admin/whos_online.php" class="menuBoxContentLink">Quem está online?</a></td> </tr> </table> </td> </tr> <!-- tools_eof //--> <!-- left_navigation_eof //--> </table></td> <!-- body_text //--> <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading">Administração</td> <td class="pageHeading" align="right"><img src="images/pixel_trans.gif" border="0" alt="" width="57" height="40"></td> </tr> </table></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="dataTableHeadingRow"> <td class="dataTableHeadingContent">Banners</td> <td class="dataTableHeadingContent" align="right">Grupos</td> <td class="dataTableHeadingContent" align="right">Vistos / Clicados</td> <td class="dataTableHeadingContent" align="right">Status</td> <td class="dataTableHeadingContent" align="right">Ações </td> </tr> <tr id="defaultSelected" class="dataTableRowSelected" onmouseover="rowOverEffect(this)" onmouseout="rowOutEffect(this)" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/banner_statistics.php?page=1&bID=12'"> <td class="dataTableContent"><a href="java script:popupImageWindow('popup_image.php?banner=12')"><img src="images/icon_popup.gif" border="0" alt="View Banner" title=" View Banner "></a> basico.jpg</td> <td class="dataTableContent" align="right">basico.jpg</td> <td class="dataTableContent" align="right">0 / 0</td> <td class="dataTableContent" align="right"> <img src="images/icon_status_green.gif" border="0" alt="Active" title=" Active " width="10" height="10"> <a href="http://www.durigonfilmes.com.br/admin/banner_manager.php?page=1&bID=12&action=setflag&flag=0"><img src="images/icon_status_red_light.gif" border="0" alt="Set Inactive" title=" Set Inactive " width="10" height="10"></a></td> <td class="dataTableContent" align="right"><a href="http://www.durigonfilmes.com.br/admin/banner_statistics.php?page=1&bID=12"><img src="images/icons/statistics.gif" border="0" alt="Estatísticas" title=" Estatísticas "></a> <img src="images/icon_arrow_right.gif" border="0" alt=""> </td> </tr> <tr> <td colspan="5"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="smallText" valign="top">Mostrando <b>1</b> para <b>1</b> (de <b>1</b> banners)</td> <td class="smallText" align="right">Página 1 de 1</td> </tr> <tr> <td align="right" colspan="2"><a href="http://www.durigonfilmes.com.br/admin/banner_manager.php?action=new"><img src="includes/languages/portugues/images/buttons/button_new_banner.gif" border="0" alt="Novo Banner" title=" Novo Banner "></a></td> </tr> </table></td> </tr> </table></td> <td width="25%" valign="top"> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr class="infoBoxHeading"> <td class="infoBoxHeading"><b>basico.jpg</b></td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td align="center" class="infoBoxContent"><a href="http://www.durigonfilmes.com.br/admin/banner_manager.php?page=1&bID=12&action=new"><img src="includes/languages/portugues/images/buttons/button_edit.gif" border="0" alt="Editar" title=" Editar "></a> <a href="http://www.durigonfilmes.com.br/admin/banner_manager.php?page=1&bID=12&action=delete"><img src="includes/languages/portugues/images/buttons/button_delete.gif" border="0" alt="Apagar" title=" Apagar "></a></td> </tr> <tr> <td class="infoBoxContent"><br>Adicionado em : 30/06/2009</td> </tr> <tr> <td align="center" class="infoBoxContent"><br><img src="images/graphs/banner_infobox-12.png" border="0" alt=""></td> </tr> <tr> <td class="infoBoxContent"><img src="images/graph_hbar_blue.gif" border="0" alt="Blue" title=" Blue " width="5" height="5"> Banner Vistos<br><img src="images/graph_hbar_red.gif" border="0" alt="Red" title=" Red " width="5" height="5"> Banner Clicados</td> </tr> <tr> <td class="infoBoxContent"><br>Expira após : <b>500</b> impressões</td> </tr> </table> </td> </tr> </table></td> </tr> </table></td> <!-- body_text_eof //--> </tr> </table> <!-- body_eof //--> <!-- footer //--> <br> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td align="center" class="smallText"> osCommerce Online Merchant Copyright © 2007 <a href="http://www.oscommerce.com" target="_blank">osCommerce</a><br> osCommerce provides no warranty and is redistributable under the <a href="http://www.fsf.org/licenses/gpl.txt" target="_blank">GNU General Public License</a> </td> </tr> <tr> <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="5"></td> </tr> <tr> <td align="center" class="smallText">Powered by <a href="http://www.oscommerce.com" target="_blank">osCommerce</a></td> </tr> </table> <!-- footer_eof //--> <br> </body> </html> formulário para envio <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN"> <html dir="ltr" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <title>Administração osCommerce</title> <link rel="stylesheet" type="text/css" href="includes/stylesheet.css"> <script language="javascript" src="includes/general.js"></script> <script language="javascript"><!-- function popupImageWindow(url) { window.open(url,'popupImageWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,res izable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,le ft=150') } //--></script> </head> <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" bgcolor="#FFFFFF"> <div id="spiffycalendar" class="text"></div> <!-- header //--> <table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td colspan="2"><a href="http://www.durigonfilmes.com.br/admin/index.php"><img src="images/oscommerce.png" border="0" alt="osCommerce Online Merchant v2.2 RC1" title=" osCommerce Online Merchant v2.2 RC1 "></a></td> </tr> <tr class="headerBar"> <td class="headerBarContent"> <a href="http://www.durigonfilmes.com.br/admin/index.php" class="headerLink">Administração</a> | <a href="http://www.durigonfilmes.com.br/" class="headerLink">Catálogo Online</a> | <a href="http://www.oscommerce.com" class="headerLink">Suporte da Loja</a></td> <td class="headerBarContent" align="right">Logged in as: durigon (<a href="http://www.durigonfilmes.com.br/admin/login.php?action=logoff" class="headerLink">Logoff</a>) </td> </tr> </table><!-- header_eof //--> <!-- body //--> <table border="0" width="100%" cellspacing="2" cellpadding="2"> <tr> <td width="125" valign="top"><table border="0" width="125" cellspacing="1" cellpadding="1" class="columnLeft"> <!-- left_navigation //--> <!-- configuration //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/configuration.php?gID=1&selected_box=configuration'"> <a href="http://www.durigonfilmes.com.br/admin/configuration.php?gID=1&selected_box=configuration" class="menuBoxHeadingLink">Configuração</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- configuration_eof //--> <!-- catalog //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/categories.php?selected_box=catalog'"> <a href="http://www.durigonfilmes.com.br/admin/categories.php?selected_box=catalog" class="menuBoxHeadingLink">Produtos</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- catalog_eof //--> <!-- modules //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/modules.php?set=payment&selected_box=modules'"> <a href="http://www.durigonfilmes.com.br/admin/modules.php?set=payment&selected_box=modules" class="menuBoxHeadingLink">Módulos</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- modules_eof //--> <!-- customers //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/customers.php?selected_box=customers'"> <a href="http://www.durigonfilmes.com.br/admin/customers.php?selected_box=customers" class="menuBoxHeadingLink">Clientes</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- customers_eof //--> <!-- taxes //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/countries.php?selected_box=taxes'"> <a href="http://www.durigonfilmes.com.br/admin/countries.php?selected_box=taxes" class="menuBoxHeadingLink">Locais/ Taxas</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- taxes_eof //--> <!-- localization //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/currencies.php?selected_box=localization'"> <a href="http://www.durigonfilmes.com.br/admin/currencies.php?selected_box=localization" class="menuBoxHeadingLink">Localização</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- localization_eof //--> <!-- reports //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/stats_products_viewed.php?selected_box=reports'"> <a href="http://www.durigonfilmes.com.br/admin/stats_products_viewed.php?selected_box=reports" class="menuBoxHeadingLink">Estatísticas</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> </table> </td> </tr> <!-- reports_eof //--> <!-- tools //--> <tr> <td> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxHeading" onmouseover="this.style.cursor='hand'" onclick="document.location.href='http://www.durigonfilmes.com.br/admin/backup.php?selected_box=tools'"> <a href="http://www.durigonfilmes.com.br/admin/backup.php?selected_box=tools" class="menuBoxHeadingLink">Ferramentas</a> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="menuBoxContent"><a href="http://www.durigonfilmes.com.br/admin/backup.php" class="menuBoxContentLink">Cópia do banco de dados</a><br><a href="http://www.durigonfilmes.com.br/admin/banner_manager.php" class="menuBoxContentLink">Gerenciador de Banners</a><br><a href="http://www.durigonfilmes.com.br/admin/cache.php" class="menuBoxContentLink">Controle de Cache</a><br><a href="http://www.durigonfilmes.com.br/admin/define_language.php" class="menuBoxContentLink">Definir Línguas</a><br><a href="http://www.durigonfilmes.com.br/admin/file_manager.php" class="menuBoxContentLink">Gerenciador de Arquivos</a><br><a href="http://www.durigonfilmes.com.br/admin/mail.php" class="menuBoxContentLink">Enviar Email</a><br><a href="http://www.durigonfilmes.com.br/admin/newsletters.php" class="menuBoxContentLink">Gerenciador de Newsletter</a><br><a href="http://www.durigonfilmes.com.br/admin/server_info.php" class="menuBoxContentLink">Informações de Servidor</a><br><a href="http://www.durigonfilmes.com.br/admin/whos_online.php" class="menuBoxContentLink">Quem está online?</a></td> </tr> </table> </td> </tr> <!-- tools_eof //--> <!-- left_navigation_eof //--> </table></td> <!-- body_text //--> <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading">Administração</td> <td class="pageHeading" align="right"><img src="images/pixel_trans.gif" border="0" alt="" width="57" height="40"></td> </tr> </table></td> </tr> <link rel="stylesheet" type="text/css" href="includes/javascript/spiffyCal/spiffyCal_v2_1.css"> <script language="JavaScript" src="includes/javascript/spiffyCal/spiffyCal_v2_1.js"></script> <script language="javascript"> var dateExpires = new ctlSpiffyCalendarBox("dateExpires", "new_banner", "expires_date","btnDate1","",scBTNMODE_CUSTOMBLUE); var dateScheduled = new ctlSpiffyCalendarBox("dateScheduled", "new_banner", "date_scheduled","btnDate2","",scBTNMODE_CUSTOMBLUE); </script> <tr> <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="10"></td> </tr> <tr><form name="new_banner" action="http://www.durigonfilmes.com.br/admin/banner_manager.php?action=insert" method="post" enctype="multipart/form-data"> <td><table border="0" cellspacing="0" cellpadding="2"> <tr> <td class="main">Título do Banner:</td> <td class="main"><input type="text" name="banners_title"> <span class="fieldRequired">* Obrigatório</span></td> </tr> <tr> <td class="main">Endereço do Banner:</td> <td class="main"><input type="text" name="banners_url"></td> </tr> <tr> <td class="main" valign="top">Grupo do Banner:</td> <td class="main"><select name="banners_group"><option value="basico.jpg">basico.jpg</option></select>, ou entre com um novo grupo de banner abaixo<br><input type="text" name="new_banners_group"></td> </tr> <tr> <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="10"></td> </tr> <tr> <td class="main" valign="top">Imagem:</td> <td class="main"><input type="file" name="banners_image"> , ou entre com o arquivo local abaixo<br>/home/durigonfilmes/www/images/<input type="text" name="banners_image_local"></td> </tr> <tr> <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="10"></td> </tr> <tr> <td class="main">Imagem (Salvar como):</td> <td class="main">/home/durigonfilmes/www/images/<input type="text" name="banners_image_target"></td> </tr> <tr> <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="10"></td> </tr> <tr> <td valign="top" class="main">Texto HTML :</td> <td class="main"><textarea name="banners_html_text" wrap="soft" cols="60" rows="5"></textarea></td> </tr> <tr> <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="10"></td> </tr> <tr> <td class="main">Programado para:<br><small>(dd/mm/yyyy)</small></td> <td valign="top" class="main"><script language="javascript">dateScheduled.writeControl(); dateScheduled.dateFormat="dd/MM/yyyy";</script></td> </tr> <tr> <td colspan="2"><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="10"></td> </tr> <tr> <td valign="top" class="main">Expira Em:<br><small>(dd/mm/yyyy)</small></td> <td class="main"><script language="javascript">dateExpires.writeControl(); dateExpires.dateFormat="dd/MM/yyyy";</script>, ou após<br><input type="text" name="expires_impressions" maxlength="7" size="7"> impressões/vistas.</td> </tr> </table></td> </tr> <tr> <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="10"></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><b>Nota sobre o Banner:</b><ul><li>Use uma imagem ou um texto HTML para o banner - não ambos.</li><li>o Texto HTML tem prioridade sobre uma imagem</li></ul><br><b>Nota sobre a Imagem:</b><ul><li>Os diretórios de upload(envio) devem ter as permissões de escrita(CHMOD) apropriadas!</li><li>Não preencha o campo 'Salvar Como' se você não estiver fazendo o upload de uma imagem para o servidor (ie, se estiver usando uma imagem local).</li><li>O campo 'Salvar Como' deve ser um diretório existente e terminar com uma barra (ex, banners/).</li></ul><br><b>Nota sobre a expiração:</b><ul><li>Apenas um dos dois campos deve ser preenchido</li><li>Se o banner não expira automaticamente, deixe ambos em branco</li></ul><br><b>Nota sobre a Programação:</b><ul><li>Se uma programação foi definida, o baner será ativado naquela data.</li><li>Todos os baners programados são marcados como desativados até que aquela data tenha chegado, e então serão marcados como ativos.</li></ul></td> <td class="main" align="right" valign="top" nowrap><input type="image" src="includes/languages/portugues/images/buttons/button_insert.gif" border="0" alt="Inserir" title=" Inserir "> <a href="http://www.durigonfilmes.com.br/admin/banner_manager.php"><img src="includes/languages/portugues/images/buttons/button_cancel.gif" border="0" alt="Cancelar" title=" Cancelar "></a></td> </tr> </table></td> </form></tr> </table></td> <!-- body_text_eof //--> </tr> </table> <!-- body_eof //--> <!-- footer //--> <br> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td align="center" class="smallText"> osCommerce Online Merchant Copyright © 2007 <a href="http://www.oscommerce.com" target="_blank">osCommerce</a><br> osCommerce provides no warranty and is redistributable under the <a href="http://www.fsf.org/licenses/gpl.txt" target="_blank">GNU General Public License</a> </td> </tr> <tr> <td><img src="images/pixel_trans.gif" border="0" alt="" width="1" height="5"></td> </tr> <tr> <td align="center" class="smallText">Powered by <a href="http://www.oscommerce.com" target="_blank">osCommerce</a></td> </tr> </table> <!-- footer_eof //--> <br> </body> </html> Compartilhar este post Link para o post Compartilhar em outros sites