Jump to content

d22552000

Members
  • Posts

    535
  • Joined

  • Last visited

    Never

Posts posted by d22552000

  1. idk... I might use wamp for my EXTERNAL servers so I don't have to manually set it up.. but for my internal server imma continue with my apache, oracle, mssql, mysql, php, asp, and python setup...

     

    uh,... im using...

     

    A MOM PAP lol.

    Apache Mysql Oracle Mssql PHP Asp Python

     

    AHAHA A MOM POP!!

  2. It's not the "NOT NULL" clause... I removed those and got:

     

    #1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''customavatar' (
      'userid' int(10) unsigned default '0',
      'filedata' mediumb' at line 1 
    

     

    CREATE TABLE 'customavatar'(
    
    'userid'int( 10 ) unsigned default '0',
    'filedata'mediumblob,
    'dateline'int( 10 ) unsigned default '0',
    'filename'varchar( 100 ) default '',
    'visible'smallint( 6 ) default '1',
    'filesize'int( 10 ) unsigned default '0',
    'width'smallint( 5 ) unsigned default '0',
    'height'smallint( 5 ) unsigned default '0',
    PRIMARY KEY ( 'userid' ) 
    ) 

  3. use scheduled tasks if under windows to do:

     

    run *browser name here* *url here*

     

    to secure it make the url goto like:

     

    example.php?p=longpasswordhahaahah&d=currentdate&do=yesterday

     

    ... CRONTAB is much easier.

  4. For the life of me I can't figure out what's wrong with this code...

     

    CREATE TABLE `cronlog` (
      `cronlogid` int(10) unsigned NOT NULL auto_increment,
      `varname` varchar(100) NOT NULL default '',
      `dateline` int(10) unsigned NOT NULL default '0',
      `description` mediumtext,
      `type` smallint(5) unsigned NOT NULL default '0',
      PRIMARY KEY  (`cronlogid`),
      KEY `varname` (`varname`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;
    
    CREATE TABLE `customavatar` (
      `userid` int(10) unsigned NOT NULL default '0',
      `filedata` mediumblob,
      `dateline` int(10) unsigned NOT NULL default '0',
      `filename` varchar(100) NOT NULL default '',
      `visible` smallint(6) NOT NULL default '1',
      `filesize` int(10) unsigned NOT NULL default '0',
      `width` smallint(5) unsigned NOT NULL default '0',
      `height` smallint(5) unsigned NOT NULL default '0',
      PRIMARY KEY  (`userid`)
    ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
    

     

    I get:

    You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '; CREATE TABLE `customavatar` ( `userid` int(10) unsigned NOT NULL default' at line 9
    

     

    Line 9 is:

    ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1;
    

     

    What's wrong?

  5. I want things to happen in this order:

     

    page loads shows text at the top...

    fuction do1 is executed.

    more text shows

    function do2 .. text...

     

    and continue until functions are done...

     

    How can you make it so the page shows text BEFORE the php script is done.. I have seen some websites do it..

     

    http://www.checker.freeproxy.ru/checker/ - When you submit, it checks each proxy 1 by 1 and outputs the data as it finishes...

     

    How do I do someting like that?

  6. How would I delay a scripts loading, without using sleep?

     

    I want things to happen in this order:

     

    page shows text at the top...

    fuction do1 is executed.

    a delayed wait is put in

    more text shows

    function do2 .. wait.. text...

     

    and continue until functions are done...

     

    How can you make it so the page shows text BEFORE the php script is done.. I have seen some websites do it..

     

    http://www.checker.freeproxy.ru/checker/ - When you submit, it checks each proxy 1 by 1 and outputs the data as it finishes...

     

    How do I do someting like that?

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.