Jump to content

gigamike187

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

gigamike187's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Guys, Is it possible that i can call a script or redirect users in Auth_MYSQL. Example AuthName "Private Area" AuthType Basic Auth_MySQL_Host 99.99.99.99 Auth_MySQL_Username xxx Auth_MySQL_Password yyy Auth_MySQL_DB myDB Auth_MySQL_Password_Table users Auth_MySQL_Username_Field user Auth_MySQL_Password_Field pass Auth_MySQL_Password_Clause " AND areaid=aaaa" Auth_MySQL_Encrypted_Passwords Off Auth_MySQL_Non_Persistent On Auth_MYSQL On Auth_MySQL_Empty_Passwords Off require valid-user ..>redirect/call url i.e. http://domain.com/checkuser.php?user=usernameentered Similar to $username=$_GET['user']; header("Location: http://domain.com/checkuser.php?user=$username); exit; Thanks, Mike
  2. Guys, , is there any alternative of instead using windows box, ill used linux server. Thanks, Mike
  3. Guys, i think http://www.websitescreenshots.com is fine. Ill just purchase one. Sample Code $command="C:\webfiles\webshotcmd.exe /url \"".$_POST['url']."\" /out test"; exec($command); Thanks, Mike
  4. Guys, Thanks for the quick help. But Demonic is right, ill setup a site with feature of where user enters a URL then provide screenshot. Almost like this http://www.webshotspro.com/ and http://www.thumbalizr.com/ Thanks again, Mike
  5. Guys, I badky need help, any idea on how to capture a site screenshot, an example site are http://www.webshotspro.com/ and http://www.thumbalizr.com/. My server is windows2003/apache2/php5, i already tried this one but no luck <?php $browser = new COM("InternetExplorer.Application"); $handle = $browser->HWND; $browser->Visible = true; $browser->Navigate("http://www.libgd.org"); /* Still working? */ while ($browser->Busy) { com_message_pump(4000); } $im = imagegrabwindow($handle, 0); $browser->Quit(); imagepng($im, "iesnap.png"); ?> any other ideas, please guys Thanks, Mike
×
×
  • 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.