• 0

[PHP] System('wget') problem


Question

I'm trying to download a file through php using wget. I have the wget exe in system32 and I can use it successfully over the command line but when I try to use it through php I get a 'wget' not found error as shown below.

NoJdJ.png

Here's the code:

<?php 
	system('wget http://site.com/stuff.sql -O data/tmp.sql');
?>

I'm very new to php so if it's something simple don't hurt me :p

Am using Windows 7, PHP 5.3 and also IIS though I haven't show it above.

Thanks!

Link to comment
https://www.neowin.net/forum/topic/821596-php-systemwget-problem/
Share on other sites

9 answers to this question

Recommended Posts

  • 0

I'm not using apache however if I use the code:

<?php

	  echo '<pre>';

	  system('cmd /c "dir"', $retval);

	  echo '
	  </pre>
	  <hr />Return value: ' . $retval;

?>

It shows the current directory list on the webpage and works fine =/

I will look through the php.ini file to see where I can declare wget.

  • 0

<?php
if(false === file_exists('wget.exe'))
{
	printf(
		"I cannot find wget.exe, the current working directory is '%s'",
		getcwd()
	);
}
?>

Explorer has global scope, so there can be called regardless of the CWD.

Check your CWD using getCWD().

  • 0

Ah thanks SilverBullet - I've just found that by copying the exe to the root of the C: drive it seems to all work okay.

So now I'm just wondering how do I make it so I can access the wget when it is stored in the System32 directory?

edit: I can also access print the output of the command 'Shutdown.exe -?' which is also only in System32 whereas 'wget' just won't happen :(

Edited by aexphoric
  • 0
  aexphoric said:
Ah thanks SilverBullet - I've just found that by copying the exe to the root of the C: drive it seems to all work okay.

So now I'm just wondering how do I make it so I can access the wget when it is stored in the System32 directory?

edit: I can also access print the output of the command 'Shutdown.exe -?' which is also only in System32 whereas 'wget' just won't happen :(

Certain commands such as explorer, tasman, cmd, shutdown etc are accessible without specifying a path (as SilverBulletUK said). However wget isn't installed by default on Windows computers (I presume you've found a Linux port on the internet somewhere) so you need to specify the full path to the executable. For example instead of just doing system("wget ...."); run system("C:\WINDOWS\System32\wget.exe ....");

  • 0
  Mike said:
if you just want to get a remote file and save it, why not use file_get_contents and file_put_contents?

I didn't know about them, as I said I'm new to php so I'll see what I can find out about them.

  -Alex- said:
Certain commands such as explorer, tasman, cmd, shutdown etc are accessible without specifying a path (as SilverBulletUK said). However wget isn't installed by default on Windows computers (I presume you've found a Linux port on the internet somewhere) so you need to specify the full path to the executable. For example instead of just doing system("wget ...."); run system("C:\WINDOWS\System32\wget.exe ....");

I did try that however it still could not be found, I have no idea why but it just wouldn't happen.

system('C:\Windows\System32\wget.exe http://site.com/stuff.sql -O data/tmp.sql');

Also tried with forward slashes but no luck.

In the end I just copied the binary to the directory php was installed in (c:\program files x86\PHP) and it seems to work without the file path.

However after all that, a new problem came up with deleting the tmp.sql file, can you please look at this code and tell me what's wrong? The folder in the error mentioned below has been given full permissions for IIS_IUSRS.

	if (file_exists('data/tmp.sql')) {
		unlink('data/tmp.sql');
	}

PHP Warning: unlink(data/tmp.sql) [<a href='function.unlink'>function.unlink</a>]: Permission denied in C:\inetpub\wwwroot\Test\Update.php on line 40

Thank you!

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • At some point, hardware becomes obsolete and we cant blame vendors for dropping support. Much of the models dropped, run Intel hardware which means they can install something else on the device if they truly want to keep using it.
    • Well, that was fun: PS C:\WINDOWS\system32> Install-Script -Name Set-InetpubFolderAcl WARNING: Unable to download from URI 'https://go.microsoft.com/fwlin...627338&clcid=0x409' to ''. WARNING: Unable to download the list of available providers. Check your internet connection. PackageManagement\Install-PackageProvider : No match was found for the specified search criteria for the provider 'NuGet'. The package provider requires 'PackageManagement' and 'Provider' tags. Please check if the specified package has the tags. At C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:7468 char:21 + ... $null = PackageManagement\Install-PackageProvider -Name $script:N ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidArgument: (Microsoft.Power...PackageProvider:InstallPackageProvider) [Install-PackageProvider], Exception + FullyQualifiedErrorId : NoMatchFoundForProvider,Microsoft.PowerShell.PackageManagement.Cmdlets.InstallPackageProvider PackageManagement\Import-PackageProvider : No match was found for the specified search criteria and provider name 'NuGet'. Try 'Get-PackageProvider -ListAvailable' to see if the provider exists on the system. At C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:7474 char:21 + ... $null = PackageManagement\Import-PackageProvider -Name $script:Nu ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidData: (NuGet:String) [Import-PackageProvider], Exception + FullyQualifiedErrorId : NoMatchFoundForCriteria,Microsoft.PowerShell.PackageManagement.Cmdlets.ImportPackageProvider WARNING: Unable to download from URI 'https://go.microsoft.com/fwlin...627338&clcid=0x409' to ''. WARNING: Unable to download the list of available providers. Check your internet connection. PackageManagement\Get-PackageProvider : Unable to find package provider 'NuGet'. It may not be imported yet. Try 'Get-PackageProvider -ListAvailable'. At C:\Program Files\WindowsPowerShell\Modules\PowerShellGet\1.0.0.1\PSModule.psm1:7478 char:30 + ... tProvider = PackageManagement\Get-PackageProvider -Name $script:NuGet ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (Microsoft.Power...PackageProvider:GetPackageProvider) [Get-PackageProvider], Exceptio n + FullyQualifiedErrorId : UnknownProviderFromActivatedList,Microsoft.PowerShell.PackageManagement.Cmdlets.GetPackageProvider Install-Script : NuGet provider is required to interact with NuGet-based repositories. Please ensure that '2.8.5.201' or newer version of NuGet provider is installed. At line:1 char:1 + Install-Script -Name Set-InetpubFolderAcl + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : InvalidOperation: ( [Install-Script], InvalidOperationException + FullyQualifiedErrorId : CouldNotInstallNuGetProvider,Install-Script
    • Because Apple has never discontinued Mac models before now?
    • I recall reading that they intend to synchronize the version numbers between iOS, tvOS and macOS, so we will also be getting macOS 26 up next.
    • every time.... why can't I install windows 11 on my 8088?
  • Recent Achievements

    • Week One Done
      abortretryfail earned a badge
      Week One Done
    • First Post
      Mr bot earned a badge
      First Post
    • First Post
      Bkl211 earned a badge
      First Post
    • One Year In
      Mido gaber earned a badge
      One Year In
    • One Year In
      Vladimir Migunov earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      490
    2. 2
      +FloatingFatMan
      258
    3. 3
      snowy owl
      249
    4. 4
      ATLien_0
      223
    5. 5
      +Edouard
      190
  • Tell a friend

    Love Neowin? Tell a friend!