Ir para conteúdo
Fórum Script Brasil

gladiador

Veteranos
  • Total de itens

    2.281
  • Registro em

  • Última visita

Posts postados por gladiador

  1. /* Acho que se tá tentando fazer uma inserção de um arquivo né ?

    
       <?
    ..........
          if (file_exists("$caminho/.../...."))
            die ("Arquivo já existe");
          }
    else
          {
              print "Arquivo copiado com sucesso";
    .........
             
    ?>
    

    e ai vai lógica condicional

    */

  2. /* E ai moçadinha novamente o tio Gladiador pede a avaliação da moçada K manja do negócio da uma zoiada ai eu tentei faze CERTIM + sei -lá sempre é bom mais opniões para corrigir algo algumas dicas para aperfeiçoamento , etc....

    Conto com vocês dessam a marretada smile.gif

    BRIGADÃO moçada retirei o Link por motivo de que vocês já me deram uma força e tentarei estar me aprefeiçoando T+

    */

  3. /* Você acessa por que você é o local ou seja só você enxerga a tua configuração tá errada só isso !! como você fez para que eles tentassem enxergar sua página no seu micro ? fala ai que eu te mostro onde tu errou */

  4. /* Meu desculpe + tá + ou - só aquele ENTRAR já mata se eu entrei é porque quero visitar então num precisa daquilo outra coisa melhor visualizado em res 800 X 600 isso não existe fça pelo menos para 800 e 1024 é muito fácil ou seja num tá profissional pode melhorar muito senão cai naquele lema efeito sobrinho ou seja quem fez seu site? há foi meu sobrinho tá aprendendo html . bom num leva a mal + é isso ai */

  5. /* Bem veja isso é muito fácil :

    Operador ++ tem prioridade sobre operadores + e *

    logo vamos ver :

    pelo que observo a primeira operação foi ++$num

    ou seja pegou la em cima o

    
    $num= 5;
    ..................... ++$num;
    
    ou seja 5 incrementando + 1 = 6 certo ? logo o primeiro resultado foi 6 agora o 20 o segundo operador de maior precedência é * ou seja multiplicação então :
    
    $res = 8 + 3 * 2 ++$num  // observe 3*2 = 6  pega-se 6+ 6 do ++$num = 12 
    
    pronto 
    
    8 + 12 = 20 
    

    fácil né ?

    */

  6. /* Resumindo va até phpdemos.com baixe o conversor html para php se isso te faz feliz um exemplo :

    pagina1.html

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Untitled Document</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    </head>
    
    <body>
    Teste de Convers&atilde;o PHP para HTML
    </body>
    </html>
    
    pagina1.php
    
    <?php
    
    echo "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">\n";
    echo "<html>\n";
    echo "<head>\n";
    echo "<title>Untitled Document</title>\n";
    echo "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\">\n";
    echo "</head>\n";
    echo "\n";
    echo "<body>\n";
    echo "Teste de Convers&atilde;o PHP para HTML\n";
    echo "</body>\n";
    echo "</html>\n";
    echo "<p>Created by <a href=\"http://www.dpaehl.de/\">HTML TO PHP (c) by Dirk Paehl</a></p>\n";
    ?>
    

    se achar vantagem nisso é só ir lá e baixar

    */

  7. /* Rodar para receber e-mail local é embaçado mesmo tem que saber configurar o SMTP e não o script é lógico que o script pode estar bugado também + de ante mão localhost é broca tem que saber config o SMTP como já dito */

  8. /* Tó ai maluco :

    
    ServerType standalone
    ServerRoot "C:/apache"
    PidFile logs/httpd.pid
    ScoreBoardFile logs/apache_runtime_status
    Timeout 300
    KeepAlive On
    MaxKeepAliveRequests 100
    KeepAliveTimeout 15
    MaxRequestsPerChild 0
    ThreadsPerChild 50
    LoadModule status_module modules/mod_status.so
    LoadModule info_module modules/mod_info.so
    LoadModule rewrite_module modules/mod_rewrite.so
    LoadModule headers_module modules/mod_headers.so
    LoadModule php4_module C:/php/sapi/php4apache.dll
    AddType application/x-httpd-php .php4 .php .htm .php3 .inc .fire
    AddType application/x-httpd-php-source .phps
    ClearModuleList
    AddModule mod_mime.c
    AddModule mod_negotiation.c
    AddModule mod_status.c
    AddModule mod_info.c
    AddModule mod_include.c
    AddModule mod_autoindex.c
    AddModule mod_dir.c
    AddModule mod_isapi.c
    AddModule mod_cgi.c
    AddModule mod_asis.c
    AddModule mod_imap.c
    AddModule mod_actions.c
    AddModule mod_userdir.c
    AddModule mod_alias.c
    AddModule mod_rewrite.c
    AddModule mod_access.c
    AddModule mod_auth.c
    AddModule mod_headers.c
    AddModule mod_so.c
    AddModule mod_setenvif.c
    AddModule mod_php4.c
    ExtendedStatus On
    Port 80
    ServerAdmin server_admin@httpd.conf
    ServerName localhost
    DocumentRoot "C:/apache/www/"
    <Directory />
    Options FollowSymLinks MultiViews
    AllowOverride None
    </Directory>
    <Directory "C:/apache/www/">
    Options All MultiViews
    AllowOverride AuthConfig FileInfo
    Order allow,deny
    Allow from localhost 127.0.0.1
    </Directory>
    <IfModule mod_userdir.c>
    UserDir "C:/apache/users/"
    </IfModule>
    <IfModule mod_dir.c>
    DirectoryIndex index.html index.php
    </IfModule>
    AccessFileName .htaccess
    <Files ~ "^\.ht">
    Order allow,deny
    Deny from all
    Satisfy All
    </Files>
    UseCanonicalName On
    <IfModule mod_mime.c>
    TypesConfig conf/mime.types
    </IfModule>
    DefaultType text/plain
    <IfModule mod_mime_magic.c>
    MIMEMagicFile conf/magic
    </IfModule>
    HostnameLookups Off
    ErrorLog logs/error.log
    LogLevel warn
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    LogFormat "%{Referer}i -> %U" referer
    CustomLog logs/access.log common
    ServerSignature On
    <IfModule mod_alias.c>
    Alias /icons/ "C:/apache/icons/"
    <Directory "C:/apache/icons">
    Options Indexes MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    Alias /site/ "C:/www/phpwebsite_en/"
    <Directory "C:/www/phpwebsite_en/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    DirectoryIndex index.php index.htm
    </Directory>Alias /private/ "C:/private/"
    <Directory "C:/php/private/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from localhost 127.0.0.1
    </Directory>
    Alias /public/ "C:/www/public/"
    <Directory "C:/www/public/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    DirectoryIndex index.htm
    </Directory>
    Alias /phpdev/ "C:/php/"
    <Directory "C:/php/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from localhost 127.0.0.1
    DirectoryIndex index.htm
    </Directory>
    Alias /phpmyadmin/ "C:/www/phpmyadmin/"
    <Directory "C:/www/phpmyadmin/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from localhost 127.0.0.1
    DirectoryIndex index.php
    </Directory>
    Alias /AnalogX/ "C:/php/AnalogX/PHPconfig/"
    <Directory "C:/php/AnalogX/PHPconfig/">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from localhost 127.0.0.1
    IndexIgnore phpconfu.exe
    </Directory>
    #manuals (if installed)
    Alias /apache "C:/man/apache"
    Alias /php "C:/man/php"
    Alias /gtk "C:/man/gtk"
    Alias /mysql "C:/man/mysql"
    <Directory "C:/man">
    Options Indexes FollowSymLinks MultiViews
    AllowOverride None
    Order allow,deny
    Allow from localhost 127.0.0.1
    DirectoryIndex index.html index.html.var index.htm default.htm default.html
    </Directory>
    ScriptAlias /cgi-bin/ "C:/apache/www/cgi-bin/"
    <Directory "C:/apache/www/cgi-bin">
    <IfModule mod_perl.c>
    Sethandler perl-script
    PerlHandler Apache::Registry
    PerlSendHeader On
    </IfModule>
    Options All MultiViews
    AllowOverride None
    Order deny,allow
    Allow from all
    </Directory>
    </IfModule># End of aliases.
    IndexOptions FancyIndexing FoldersFirst
    AddIconByEncoding (CMP,/icons/compressed.gif) x-compress x-gzip
    AddIconByType (TXT,/icons/text.gif) text/*
    AddIconByType (IMG,/icons/image2.gif) image/*
    AddIconByType (SND,/icons/sound2.gif) audio/*
    AddIconByType (VID,/icons/movie.gif) video/*
    AddIcon /icons/binary.gif .bin .exe
    AddIcon /icons/binhex.gif .hqx
    AddIcon /icons/tar.gif .tar
    AddIcon /icons/world2.gif .wrl .wrl.gz .vrml .vrm .iv
    AddIcon /icons/compressed.gif .Z .z .tgz .gz .zip
    AddIcon /icons/a.gif .ps .ai .eps
    AddIcon /icons/layout.gif .html .shtml .htm .pdf
    AddIcon /icons/text.gif .txt
    AddIcon /icons/c.gif .c
    AddIcon /icons/p.gif .pl .py
    AddIcon /icons/f.gif .for
    AddIcon /icons/dvi.gif .dvi
    AddIcon /icons/uuencoded.gif .uu
    AddIcon /icons/script.gif .conf .sh .shar .csh .ksh .tcl
    AddIcon /icons/tex.gif .tex
    AddIcon /icons/bomb.gif core
    AddIcon /icons/back.gif ..
    AddIcon /icons/hand.right.gif README
    AddIcon /icons/folder.gif ^^DIRECTORY^^
    AddIcon /icons/blank.gif ^^BLANKICON^^
    DefaultIcon /icons/unknown.gif
    AddDescription "GZIP compressed document" .gz
    AddDescription "tar archive" .tar
    AddDescription "GZIP compressed tar archive" .tgz
    AddDescription "PHP PHP hypertext PreProcessor" .php
    IndexIgnore .??* *~ *# HEADER* README* RCS CVS *,v *,t
    </IfModule>
    <IfModule mod_mime.c>
    AddEncoding x-compress Z
    AddEncoding x-gzip gz tgz
    AddLanguage da .dk
    AddLanguage nl .nl
    AddLanguage en .en
    AddLanguage et .ee
    AddLanguage fr .fr
    AddLanguage de .de
    AddLanguage el .el
    AddLanguage he .he
    AddCharset ISO-8859-8 .iso8859-8
    AddLanguage it .it
    AddLanguage já .já
    AddCharset ISO-2022-JP .jis
    AddLanguage kr .kr
    AddCharset ISO-2022-KR .iso-kr
    AddLanguage nn .nn
    AddLanguage no .no
    AddLanguage pl .po
    AddCharset ISO-8859-2 .iso-pl
    AddLanguage pt .pt
    AddLanguage pt-br .pt-br
    AddLanguage ltz .lu
    AddLanguage ca .ca
    AddLanguage es .es
    AddLanguage sv .sv
    AddLanguage cz .cz
    AddLanguage ru .ru
    AddLanguage tw .tw
    AddLanguage zh-tw .tw
    AddCharset Big5 .Big5 .big5
    AddCharset WINDOWS-1251 .cp-1251
    AddCharset CP866 .cp866
    AddCharset ISO-8859-5 .iso-ru
    AddCharset KOI8-R .koi8-r
    AddCharset UCS-2 .ucs2
    AddCharset UCS-4 .ucs4
    AddCharset UTF-8 .utf8
    <IfModule mod_negotiation.c>
    LanguagePriority en da nl et fr de el it já kr no pl pt pt-br ru ltz ca es sv tw
    </IfModule>
    AddType application/x-tar .tgz
    AddType text/html .shtml
    AddHandler server-parsed .shtml
    </IfModule>
    <IfModule mod_setenvif.c>
    BrowserMatch "Mozilla/2" nokeepalive
    BrowserMatch "MSIE 4\.0b2;" nokeepalive downgrade-1.0 force-response-1.0
    BrowserMatch "RealPlayer 4\.0" force-response-1.0
    BrowserMatch "Java/1\.0" force-response-1.0
    BrowserMatch "JDK/1\.0" force-response-1.0
    </IfModule>
    <Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost 127.0.0.1
    </Location>
    <Location /server-info>
    SetHandler server-info
    Order deny,allow
    Deny from all
    Allow from localhost 127.0.0.1
    </Location>
    <IfModule mod_perl.c>
    <Files ~ (\.asp)> 
    SetHandler perl-script
    PerlModule Apache::ASP
    PerlHandler Apache::ASP
    PerlSetVar Global .
    </Files>
    <Files ~ (\.pl)> 
    Sethandler perl-script
    PerlHandler Apache::Registry.
    PerlSendHeader On
    </Files>
    PerlModule Apache::Registry
    Alias /perl/ "C:/apache/perl/"
    <Location /perl>
    Sethandler perl-script
    PerlHandler Apache::PerlRun
    Options +ExecCGI
    PerlSendHeader On
    </Location>
    PerlModule Apache::Hello
    <Location /hello>
    SetHandler perl-script
    PerlHandler Apache::Hello
    </Location>
    </IfModule>
    Alias /work/ "F:/apache/www/"
    <Directory "F:/apache/www/">
    Options All MultiViews
    AllowOverride None
    Order allow,deny
    Allow from all
    </Directory>
    
    

    o que faltou ai é porque ta comentado

    T+

    */

  9. /*

    É Gladiador webservice ta pegando legal, eu to Fazendo um para empresas de Host, para locar.. ter painel de controle de Clientes, e todo o Controle Financeiro.. logo passo o Link do sistema completo "se alguém quiser ver antes a Ideia" www.isps.infinitehost.com.br
    

    Tá 10 em Jissa muito bom

    */

  10. /* O jissa legal esse sistema ai hein !!! agora quanto ao rapaz ai tu tem conta em banco né ? bom num vem ao caso falar aqui onde possuo a minha mas da uma olhadinha com seu gerente que a maioria dos bancos faz de graça e implanta para você foi meu caso E DE GRATIS , isso em tese pois, eles tiram na cobrança 2, 00 reais */

×
×
  • Criar Novo...