This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Open apache httpd.conf file | |
Enable the following Modules by removing the # at the front of the line. | |
- LoadModule rewrite_module modules/mod_rewrite.so | |
- LoadModule proxy_module modules/mod_proxy.so | |
- LoadModule proxy_http_module modules/mod_proxy_http.so | |
- LoadModule proxy_connect_module modules/mod_proxy_connect.so | |
Open apache httpd-vhosts.conf | |
<VirtualHost *:80> | |
ProxyRequests On |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* Gmail attachment extractor. | |
* | |
* Downloads attachments from Gmail and saves it to a file. | |
* Uses PHP IMAP extension, so make sure it is enabled in your php.ini, | |
* extension=php_imap.dll |