├── .gitignore ├── README.md ├── apache ├── conf │ ├── charset.conv │ ├── extra │ │ ├── httpd-ajp.conf │ │ ├── httpd-autoindex.conf │ │ ├── httpd-dav.conf │ │ ├── httpd-default.conf │ │ ├── httpd-info.conf │ │ ├── httpd-languages.conf │ │ ├── httpd-manual.conf │ │ ├── httpd-mpm.conf │ │ ├── httpd-multilang-errordoc.conf │ │ ├── httpd-proxy.conf │ │ ├── httpd-ssl.conf │ │ ├── httpd-userdir.conf │ │ ├── httpd-vhosts.conf │ │ ├── httpd-xampp.conf │ │ └── proxy-html.conf │ ├── httpd.conf │ ├── magic │ ├── mime.types │ ├── openssl.cnf │ ├── ssl.crt │ │ └── server.crt │ ├── ssl.csr │ │ └── server.csr │ └── ssl.key │ │ └── server.key ├── error │ └── XAMPP_FORBIDDEN.html.var └── makecert.bat ├── apache_start.bat ├── apache_stop.bat ├── catalina_service.bat ├── catalina_start.bat ├── catalina_stop.bat ├── cgi-bin ├── cgi.cgi ├── perltest.cgi └── printenv.pl ├── htdocs ├── applications.html ├── bitnami.css ├── dashboard │ ├── 404.html │ ├── de │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── docs │ │ ├── access-phpmyadmin-remotely.html │ │ ├── access-phpmyadmin-remotely.pdf │ │ ├── access-phpmyadmin-remotely.pdfmarks │ │ ├── activate-use-xdebug.html │ │ ├── activate-use-xdebug.pdf │ │ ├── activate-use-xdebug.pdfmarks │ │ ├── auto-start-xampp.html │ │ ├── auto-start-xampp.pdf │ │ ├── auto-start-xampp.pdfmarks │ │ ├── backup-restore-mysql.html │ │ ├── backup-restore-mysql.pdf │ │ ├── backup-restore-mysql.pdfmarks │ │ ├── change-mysql-temp-dir.html │ │ ├── change-mysql-temp-dir.pdf │ │ ├── change-mysql-temp-dir.pdfmarks │ │ ├── configure-use-tomcat.html │ │ ├── configure-use-tomcat.pdf │ │ ├── configure-use-tomcat.pdfmarks │ │ ├── configure-vhosts.html │ │ ├── configure-vhosts.pdf │ │ ├── configure-vhosts.pdfmarks │ │ ├── configure-wildcard-subdomains.html │ │ ├── configure-wildcard-subdomains.pdf │ │ ├── configure-wildcard-subdomains.pdfmarks │ │ ├── create-framework-project-zf1.html │ │ ├── create-framework-project-zf1.pdf │ │ ├── create-framework-project-zf1.pdfmarks │ │ ├── create-framework-project-zf2.html │ │ ├── create-framework-project-zf2.pdf │ │ ├── create-framework-project-zf2.pdfmarks │ │ ├── deploy-git-app.html │ │ ├── deploy-git-app.pdf │ │ ├── deploy-git-app.pdfmarks │ │ ├── images │ │ │ ├── access-phpmyadmin-remotely │ │ │ │ └── image1.png │ │ │ ├── activate-use-xdebug │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ └── image3.png │ │ │ ├── auto-start-xampp │ │ │ │ └── image1.png │ │ │ ├── backup-restore-mysql │ │ │ │ ├── image1.png │ │ │ │ ├── image10.png │ │ │ │ ├── image11.png │ │ │ │ ├── image12.png │ │ │ │ ├── image13.png │ │ │ │ ├── image14.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ ├── image5.png │ │ │ │ ├── image6.png │ │ │ │ ├── image7.png │ │ │ │ ├── image8.png │ │ │ │ └── image9.png │ │ │ ├── configure-use-tomcat │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ ├── image5.png │ │ │ │ ├── image6.png │ │ │ │ └── image7.png │ │ │ ├── configure-vhosts │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ └── image4.png │ │ │ ├── configure-wildcard-subdomains │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ └── image4.png │ │ │ ├── create-framework-project-zf1 │ │ │ │ ├── image1.png │ │ │ │ └── image2.png │ │ │ ├── create-framework-project-zf2 │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ └── image5.png │ │ │ ├── deploy-git-app │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ ├── image5.png │ │ │ │ └── image6.png │ │ │ ├── install-wordpress │ │ │ │ ├── image01.png │ │ │ │ ├── image02.png │ │ │ │ ├── image11.png │ │ │ │ ├── image110.png │ │ │ │ ├── image12.png │ │ │ │ ├── image13.png │ │ │ │ ├── image14.png │ │ │ │ ├── image15.png │ │ │ │ ├── image16.png │ │ │ │ ├── image17.png │ │ │ │ ├── image18.png │ │ │ │ ├── image19.png │ │ │ │ ├── image21.png │ │ │ │ ├── image22.png │ │ │ │ ├── image23.png │ │ │ │ ├── image24.png │ │ │ │ ├── image31.png │ │ │ │ ├── image32.png │ │ │ │ ├── image33.png │ │ │ │ ├── image34.png │ │ │ │ ├── image35.png │ │ │ │ ├── image36.png │ │ │ │ ├── image37.png │ │ │ │ └── image38.png │ │ │ ├── reset-mysql-password │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ └── image3.png │ │ │ ├── send-mail │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ └── image3.png │ │ │ ├── transfer-files-ftp │ │ │ │ ├── image1.png │ │ │ │ ├── image10.png │ │ │ │ ├── image11.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ ├── image5.png │ │ │ │ ├── image6.png │ │ │ │ ├── image7.png │ │ │ │ ├── image8.png │ │ │ │ └── image9.png │ │ │ ├── troubleshoot-apache │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ ├── image3.png │ │ │ │ ├── image4.png │ │ │ │ ├── image5.png │ │ │ │ ├── image6.png │ │ │ │ ├── image7.png │ │ │ │ └── image8.png │ │ │ ├── use-different-php-version │ │ │ │ └── image1.png │ │ │ ├── use-php-fcgi │ │ │ │ └── image1.png │ │ │ └── use-sqlite │ │ │ │ ├── image1.png │ │ │ │ ├── image2.png │ │ │ │ └── image3.png │ │ ├── increase-php-file-upload-limit.html │ │ ├── increase-php-file-upload-limit.pdf │ │ ├── increase-php-file-upload-limit.pdfmarks │ │ ├── install-wordpress.html │ │ ├── install-wordpress.pdf │ │ ├── install-wordpress.pdfmarks │ │ ├── reset-mysql-password.html │ │ ├── reset-mysql-password.pdf │ │ ├── reset-mysql-password.pdfmarks │ │ ├── send-mail.html │ │ ├── send-mail.pdf │ │ ├── send-mail.pdfmarks │ │ ├── transfer-files-ftp.html │ │ ├── transfer-files-ftp.pdf │ │ ├── transfer-files-ftp.pdfmarks │ │ ├── troubleshoot-apache.html │ │ ├── troubleshoot-apache.pdf │ │ ├── troubleshoot-apache.pdfmarks │ │ ├── use-different-php-version.html │ │ ├── use-different-php-version.pdf │ │ ├── use-different-php-version.pdfmarks │ │ ├── use-php-fcgi.html │ │ ├── use-php-fcgi.pdf │ │ ├── use-php-fcgi.pdfmarks │ │ ├── use-sqlite.html │ │ ├── use-sqlite.pdf │ │ └── use-sqlite.pdfmarks │ ├── es │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── faq.html │ ├── favicon.ico │ ├── fr │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── howto.html │ ├── howto_platform_links.html │ ├── howto_shared_links.html │ ├── hu │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── images │ │ ├── addons-video-thumb.png │ │ ├── addons │ │ │ ├── beetailer-icon.png │ │ │ ├── elegantthemes-icon.png │ │ │ ├── rockettheme-icon.png │ │ │ ├── sugaroutfitters-icon.png │ │ │ ├── templatemonster-icon.png │ │ │ ├── themeforest-icon.png │ │ │ ├── woothemes-icon.png │ │ │ └── wpmu-icon.png │ │ ├── apple-logo.png │ │ ├── background.png │ │ ├── bitnami-xampp.png │ │ ├── bitnami-xampp │ │ │ ├── image1.png │ │ │ ├── image2.png │ │ │ ├── image3.png │ │ │ ├── image4.png │ │ │ ├── image5.png │ │ │ ├── image6.png │ │ │ └── image7.png │ │ ├── blog │ │ │ ├── heartbleed-affected-osx.png │ │ │ ├── heartbleed-affected.png │ │ │ ├── heartbleed-fixed.png │ │ │ ├── phpinfo-section-1.png │ │ │ └── phpinfo-section-2.png │ │ ├── fastly-logo.png │ │ ├── fastly-logo@2x.png │ │ ├── favicon.png │ │ ├── flags │ │ │ ├── cn.png │ │ │ ├── de.png │ │ │ ├── en.png │ │ │ ├── es.png │ │ │ ├── fr.png │ │ │ ├── hu.png │ │ │ ├── it.png │ │ │ ├── jp.png │ │ │ ├── pl.png │ │ │ ├── pt.png │ │ │ ├── pt_br.png │ │ │ ├── ro.png │ │ │ ├── ru.png │ │ │ ├── tr.png │ │ │ ├── ur.png │ │ │ ├── zh_cn.png │ │ │ └── zh_tw.png │ │ ├── linux-logo.png │ │ ├── middleman.png │ │ ├── pdf-icon.png │ │ ├── screenshots │ │ │ ├── xampp-linux-start.jpg │ │ │ ├── xampp-macosx-launch-credentials.jpg │ │ │ ├── xampp-macosx-stack-manager-general.jpg │ │ │ ├── xampp-macosx-stack-manager-network.jpg │ │ │ ├── xampp-macosx-stack-manager-services.jpg │ │ │ ├── xampp-macosx-stack-manager-volumes.jpg │ │ │ ├── xampp-macosx-stack-manager.jpg │ │ │ ├── xampp-macosx-start.jpg │ │ │ └── xampp-windows-start.jpg │ │ ├── social-icons-large.png │ │ ├── social-icons-large@2x.png │ │ ├── social-icons.png │ │ ├── social-icons@2x.png │ │ ├── sourceforge-logo.png │ │ ├── sourceforge-logo@2x.png │ │ ├── stack-icons.png │ │ ├── stack-icons@2x.png │ │ ├── stamps │ │ │ ├── stamp-173x38.gif │ │ │ ├── stamp-80x15.gif │ │ │ └── stamp-88x31.gif │ │ ├── team │ │ │ ├── beltran-rueda.png │ │ │ ├── daniel-lopez.png │ │ │ ├── kai-seidler.jpg │ │ │ ├── kay-vogelgesang.jpg │ │ │ └── paul-hinz.jpg │ │ ├── twitter-bird.png │ │ ├── windows-logo.png │ │ ├── xampp-cloud.png │ │ ├── xampp-cloud@2x.png │ │ └── xampp-logo.svg │ ├── index.html │ ├── it │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── javascripts │ │ ├── all.js │ │ └── modernizr.js │ ├── jp │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── phpinfo.php │ ├── pl │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── pt_br │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── ro │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── ru │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── stylesheets │ │ ├── all-rtl.css │ │ ├── all.css │ │ ├── asciidoctor.css │ │ └── normalize.css │ ├── tr │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── ur │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ ├── zh_cn │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html │ └── zh_tw │ │ ├── faq.html │ │ ├── howto.html │ │ ├── howto_platform_links.html │ │ ├── howto_shared_links.html │ │ └── index.html ├── favicon.ico ├── img │ ├── module_table_bottom.png │ └── module_table_top.png ├── index.php └── xampp │ ├── .modell │ ├── .modell-usb │ └── .version ├── install ├── .version ├── config.awk ├── folder.ico ├── install.bat ├── install.php ├── install.sh ├── php.png ├── portcheck.bat ├── portcheck.php ├── serverupdate.sys ├── test.php ├── util.sh ├── xampp-icon-uninstall.ico ├── xampp.ico ├── xamppbasic.inc └── xamppserver.inc ├── licenses ├── FileZillaFTP │ ├── legal.htm │ └── license.txt ├── GeoIP │ └── COPYING.txt ├── Mercury32 │ └── LICENSE.txt ├── TSRM │ └── LICENSE.txt ├── Zend │ └── LICENSE.txt ├── adodb │ └── license.txt ├── apache │ └── LICENSE ├── apr │ └── LICENSE.txt ├── aspell │ └── COPYING.txt ├── browscap │ └── LICENSE.txt ├── bzip2 │ └── LICENSE.txt ├── curl │ ├── COPYING │ └── README ├── db │ └── LICENSE.txt ├── eaccelerator │ └── COPYING ├── expat │ └── COPYING ├── fontconfig │ └── COPYING.txt ├── fonts │ ├── ming │ │ └── MING-README.txt │ ├── ps │ │ └── copyright.txt │ └── ttf │ │ └── COPYRIGHT.TXT ├── fpdf │ └── FAQ.htm ├── freetype │ ├── GPL.txt │ └── PATENTS ├── gd │ └── index.html ├── gdbm │ └── COPYING ├── gettext │ └── COPYING ├── giflib │ └── COPYING.txt ├── gmp │ └── COPYING.LIB ├── httpd │ └── LICENSE.txt ├── imap │ └── CPYRIGHT ├── jpeg │ └── README ├── libapreq │ └── LICENSE ├── libbcmath │ └── COPYING.LIB ├── libiconv │ └── COPYING.LIB ├── libmbfl │ └── LICENSE.txt ├── libmcrypt │ └── COPYING.LIB ├── libpng │ └── LICENSE ├── libxml │ └── COPYING ├── libxml2 │ └── COPYING.txt ├── libxmlrpc │ └── Copyright.txt ├── libxslt │ ├── AUTHORS │ ├── COPYING │ └── README ├── libzip │ └── LICENSE.txt ├── mcrypt │ ├── AUTHORS │ ├── COPYING.LIB │ └── README ├── mhash │ ├── AUTHORS │ ├── COPYING │ └── README ├── ming │ └── LICENSE ├── mod_autoindex_color │ └── License.txt ├── mod_perl │ └── LICENSE ├── msmtp │ └── COPYING.txt ├── mysql │ ├── COPYING │ └── COPYING.LIB ├── openldap │ ├── COPYRIGHT │ └── LICENSE ├── openssl │ └── LICENSE ├── pbxt │ └── COPYING.txt ├── pcrelib │ └── LICENCE.txt ├── pdfclass │ └── LICENCE ├── pdflib │ └── license.txt ├── pear │ └── license.txt ├── perl │ └── Copying ├── php │ └── LICENSE ├── phpmyadmin │ └── LICENSE ├── postgresql │ └── COPYRIGHT ├── proftpd │ ├── COPYING │ └── license.txt ├── regex │ └── COPYRIGHT.txt ├── sablot │ └── README ├── sql2k │ ├── license.txt │ └── redist.txt ├── sqlite │ ├── COPYRIGHT │ └── README ├── strawberry │ └── licenses │ │ ├── License.rtf │ │ ├── dmake │ │ ├── COPYING │ │ ├── _INFO_ │ │ └── license.txt │ │ ├── gcc-toolchain │ │ ├── _INFO_ │ │ ├── binutils │ │ │ ├── COPYING │ │ │ ├── COPYING.LIB │ │ │ ├── COPYING.LIBGLOSS │ │ │ ├── COPYING.NEWLIB │ │ │ ├── COPYING3 │ │ │ ├── COPYING3.LIB │ │ │ └── README │ │ ├── gcc │ │ │ ├── COPYING │ │ │ ├── COPYING.LIB │ │ │ ├── COPYING.RUNTIME │ │ │ ├── COPYING3 │ │ │ └── COPYING3.LIB │ │ └── mingw-w64 │ │ │ ├── AUTHORS │ │ │ ├── COPYING │ │ │ ├── DISCLAIMER │ │ │ ├── DISCLAIMER.PD │ │ │ ├── direct-x-headers │ │ │ └── COPYING.LIB │ │ │ ├── glext-headers │ │ │ └── khronos.license.txt │ │ │ └── open-cl │ │ │ └── khronos.license.txt │ │ ├── gmake │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libdb-BerkeleyDB │ │ ├── LICENSE │ │ └── _INFO_ │ │ ├── libexpat │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libfreeglut │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libfreetype │ │ ├── FTL.TXT │ │ ├── GPL.TXT │ │ ├── LICENSE.TXT │ │ └── _INFO_ │ │ ├── libgd │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libgdbm │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libgif │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libgmp │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── README │ │ └── _INFO_ │ │ ├── libiconv │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libjpeg │ │ ├── README │ │ └── _INFO_ │ │ ├── libmpc │ │ ├── AUTHORS │ │ ├── COPYING.LIB │ │ ├── README │ │ └── _INFO_ │ │ ├── libmpfr │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── README │ │ └── _INFO_ │ │ ├── libpng │ │ ├── LICENSE │ │ └── _INFO_ │ │ ├── libssh2 │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libtiff │ │ ├── COPYRIGHT │ │ └── _INFO_ │ │ ├── libxml2 │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libxpm │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libxslt │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── libxz │ │ ├── AUTHORS │ │ ├── COPYING │ │ ├── COPYING.GPLv2 │ │ ├── COPYING.GPLv3 │ │ ├── COPYING.LGPLv2.1 │ │ ├── THANKS │ │ └── _INFO_ │ │ ├── libzlib │ │ ├── README │ │ └── _INFO_ │ │ ├── mysql │ │ ├── COPYING │ │ ├── EXCEPTIONS-CLIENT │ │ └── _INFO_ │ │ ├── openssl │ │ ├── LICENSE │ │ └── _INFO_ │ │ ├── patch │ │ ├── AUTHORS │ │ ├── COPYING │ │ └── _INFO_ │ │ ├── perl │ │ ├── Artistic │ │ ├── Copying │ │ └── Readme │ │ ├── pexports │ │ ├── COPYING │ │ ├── README │ │ └── _INFO_ │ │ └── postgresql │ │ ├── COPYRIGHT │ │ └── _INFO_ ├── t1lib │ └── LICENSE.txt ├── tidy │ └── license.html ├── ucd-snmp │ └── COPYING.txt ├── webalizer │ ├── COPYING │ └── Copyright ├── xampp-control-panel │ └── LICENSE ├── xampp-portcheck │ ├── license.txt │ └── openports.txt ├── xampp │ └── gpl.txt ├── xdebug │ └── LICENSE.txt ├── zlib │ └── README └── zziplib │ └── COPYING.ZZIP ├── locale ├── de │ └── LC_MESSAGES │ │ ├── xampp_control.mo │ │ ├── xampp_control.po │ │ └── xampp_control.~po └── en │ └── LC_MESSAGES │ ├── delphi2006_de_en.mo │ ├── xampp_control.mo │ ├── xampp_control.po │ └── xampp_control.~po ├── mysql ├── bin │ └── my.ini └── resetroot.bat ├── mysql_start.bat ├── mysql_stop.bat ├── passwords.txt ├── php ├── extras │ ├── browscap.ini │ └── mibs │ │ ├── AGENTX-MIB.txt │ │ ├── DISMAN-EVENT-MIB.txt │ │ ├── DISMAN-EXPRESSION-MIB.txt │ │ ├── DISMAN-NSLOOKUP-MIB.txt │ │ ├── DISMAN-PING-MIB.txt │ │ ├── DISMAN-SCHEDULE-MIB.txt │ │ ├── DISMAN-SCRIPT-MIB.txt │ │ ├── DISMAN-TRACEROUTE-MIB.txt │ │ ├── EtherLike-MIB.txt │ │ ├── HCNUM-TC.txt │ │ ├── HOST-RESOURCES-MIB.txt │ │ ├── HOST-RESOURCES-TYPES.txt │ │ ├── IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt │ │ ├── IANA-LANGUAGE-MIB.txt │ │ ├── IANA-RTPROTO-MIB.txt │ │ ├── IANAifType-MIB.txt │ │ ├── IF-INVERTED-STACK-MIB.txt │ │ ├── IF-MIB.txt │ │ ├── INET-ADDRESS-MIB.txt │ │ ├── IP-FORWARD-MIB.txt │ │ ├── IP-MIB.txt │ │ ├── IPV6-FLOW-LABEL-MIB.txt │ │ ├── IPV6-ICMP-MIB.txt │ │ ├── IPV6-MIB.txt │ │ ├── IPV6-TC.txt │ │ ├── IPV6-TCP-MIB.txt │ │ ├── IPV6-UDP-MIB.txt │ │ ├── LM-SENSORS-MIB.txt │ │ ├── MTA-MIB.txt │ │ ├── Makefile.in │ │ ├── Makefile.mib │ │ ├── NET-SNMP-AGENT-MIB.txt │ │ ├── NET-SNMP-EXAMPLES-MIB.txt │ │ ├── NET-SNMP-EXTEND-MIB.txt │ │ ├── NET-SNMP-MIB.txt │ │ ├── NET-SNMP-MONITOR-MIB.txt │ │ ├── NET-SNMP-PASS-MIB.txt │ │ ├── NET-SNMP-SYSTEM-MIB.txt │ │ ├── NET-SNMP-TC.txt │ │ ├── NET-SNMP-VACM-MIB.txt │ │ ├── NETWORK-SERVICES-MIB.txt │ │ ├── NOTIFICATION-LOG-MIB.txt │ │ ├── README.mibs │ │ ├── RFC-1215.txt │ │ ├── RFC1155-SMI.txt │ │ ├── RFC1213-MIB.txt │ │ ├── RMON-MIB.txt │ │ ├── SCTP-MIB.txt │ │ ├── SMUX-MIB.txt │ │ ├── SNMP-COMMUNITY-MIB.txt │ │ ├── SNMP-FRAMEWORK-MIB.txt │ │ ├── SNMP-MPD-MIB.txt │ │ ├── SNMP-NOTIFICATION-MIB.txt │ │ ├── SNMP-PROXY-MIB.txt │ │ ├── SNMP-TARGET-MIB.txt │ │ ├── SNMP-USER-BASED-SM-MIB.txt │ │ ├── SNMP-USM-AES-MIB.txt │ │ ├── SNMP-USM-DH-OBJECTS-MIB.txt │ │ ├── SNMP-VIEW-BASED-ACM-MIB.txt │ │ ├── SNMPv2-CONF.txt │ │ ├── SNMPv2-MIB.txt │ │ ├── SNMPv2-SMI.txt │ │ ├── SNMPv2-TC.txt │ │ ├── SNMPv2-TM.txt │ │ ├── TCP-MIB.txt │ │ ├── TRANSPORT-ADDRESS-MIB.txt │ │ ├── TUNNEL-MIB.txt │ │ ├── UCD-DEMO-MIB.inc │ │ ├── UCD-DEMO-MIB.txt │ │ ├── UCD-DISKIO-MIB.inc │ │ ├── UCD-DISKIO-MIB.txt │ │ ├── UCD-DLMOD-MIB.inc │ │ ├── UCD-DLMOD-MIB.txt │ │ ├── UCD-IPFILTER-MIB.inc │ │ ├── UCD-IPFILTER-MIB.txt │ │ ├── UCD-IPFWACC-MIB.inc │ │ ├── UCD-IPFWACC-MIB.txt │ │ ├── UCD-SNMP-MIB-OLD.txt │ │ ├── UCD-SNMP-MIB.inc │ │ ├── UCD-SNMP-MIB.txt │ │ ├── UDP-MIB.txt │ │ ├── ianalist │ │ ├── makehtml.pl │ │ ├── mibfetch │ │ ├── nodemap │ │ ├── rfclist │ │ ├── rfcmibs.diff │ │ └── smistrip ├── php.ini ├── phpunit ├── phpunit.bat └── webdriver-test-example.php ├── phpMyAdmin └── config.inc.php ├── readme_en.txt ├── setup_xampp.bat ├── src └── xampp-usb-lite │ ├── make-usb-xampp.bat │ ├── setup_xampp.bat │ └── xampp-control.ini ├── test_php.bat ├── tmp └── why.tmp ├── tomcat ├── catalina_start.bat └── catalina_stop.bat └── webdav ├── index.html └── webdav.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | /tmp/* 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/README.md -------------------------------------------------------------------------------- /apache/conf/charset.conv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/charset.conv -------------------------------------------------------------------------------- /apache/conf/extra/httpd-ajp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-ajp.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-autoindex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-autoindex.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-dav.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-dav.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-default.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-info.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-info.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-languages.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-languages.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-manual.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-manual.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-mpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-mpm.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-multilang-errordoc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-multilang-errordoc.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-proxy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-proxy.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-ssl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-ssl.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-userdir.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-userdir.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-vhosts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-vhosts.conf -------------------------------------------------------------------------------- /apache/conf/extra/httpd-xampp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/httpd-xampp.conf -------------------------------------------------------------------------------- /apache/conf/extra/proxy-html.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/extra/proxy-html.conf -------------------------------------------------------------------------------- /apache/conf/httpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/httpd.conf -------------------------------------------------------------------------------- /apache/conf/magic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/magic -------------------------------------------------------------------------------- /apache/conf/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/mime.types -------------------------------------------------------------------------------- /apache/conf/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/openssl.cnf -------------------------------------------------------------------------------- /apache/conf/ssl.crt/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/ssl.crt/server.crt -------------------------------------------------------------------------------- /apache/conf/ssl.csr/server.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/ssl.csr/server.csr -------------------------------------------------------------------------------- /apache/conf/ssl.key/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/conf/ssl.key/server.key -------------------------------------------------------------------------------- /apache/error/XAMPP_FORBIDDEN.html.var: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/error/XAMPP_FORBIDDEN.html.var -------------------------------------------------------------------------------- /apache/makecert.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache/makecert.bat -------------------------------------------------------------------------------- /apache_start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache_start.bat -------------------------------------------------------------------------------- /apache_stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/apache_stop.bat -------------------------------------------------------------------------------- /catalina_service.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/catalina_service.bat -------------------------------------------------------------------------------- /catalina_start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/catalina_start.bat -------------------------------------------------------------------------------- /catalina_stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/catalina_stop.bat -------------------------------------------------------------------------------- /cgi-bin/cgi.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/cgi-bin/cgi.cgi -------------------------------------------------------------------------------- /cgi-bin/perltest.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/cgi-bin/perltest.cgi -------------------------------------------------------------------------------- /cgi-bin/printenv.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/cgi-bin/printenv.pl -------------------------------------------------------------------------------- /htdocs/applications.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/applications.html -------------------------------------------------------------------------------- /htdocs/bitnami.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/bitnami.css -------------------------------------------------------------------------------- /htdocs/dashboard/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/404.html -------------------------------------------------------------------------------- /htdocs/dashboard/de/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/de/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/de/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/de/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/de/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/de/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/de/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/de/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/de/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/de/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/access-phpmyadmin-remotely.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/access-phpmyadmin-remotely.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/access-phpmyadmin-remotely.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/access-phpmyadmin-remotely.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/access-phpmyadmin-remotely.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/access-phpmyadmin-remotely.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/activate-use-xdebug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/activate-use-xdebug.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/activate-use-xdebug.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/activate-use-xdebug.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/activate-use-xdebug.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/activate-use-xdebug.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/auto-start-xampp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/auto-start-xampp.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/auto-start-xampp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/auto-start-xampp.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/auto-start-xampp.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/auto-start-xampp.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/backup-restore-mysql.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/backup-restore-mysql.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/backup-restore-mysql.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/backup-restore-mysql.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/backup-restore-mysql.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/backup-restore-mysql.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/change-mysql-temp-dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/change-mysql-temp-dir.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/change-mysql-temp-dir.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/change-mysql-temp-dir.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/change-mysql-temp-dir.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/change-mysql-temp-dir.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-use-tomcat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-use-tomcat.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-use-tomcat.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-use-tomcat.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-use-tomcat.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-use-tomcat.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-vhosts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-vhosts.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-vhosts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-vhosts.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-vhosts.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-vhosts.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-wildcard-subdomains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-wildcard-subdomains.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-wildcard-subdomains.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-wildcard-subdomains.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/configure-wildcard-subdomains.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/configure-wildcard-subdomains.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/create-framework-project-zf1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/create-framework-project-zf1.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/create-framework-project-zf1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/create-framework-project-zf1.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/create-framework-project-zf1.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/create-framework-project-zf1.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/create-framework-project-zf2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/create-framework-project-zf2.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/create-framework-project-zf2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/create-framework-project-zf2.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/create-framework-project-zf2.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/create-framework-project-zf2.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/deploy-git-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/deploy-git-app.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/deploy-git-app.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/deploy-git-app.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/deploy-git-app.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/deploy-git-app.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/access-phpmyadmin-remotely/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/access-phpmyadmin-remotely/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/activate-use-xdebug/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/activate-use-xdebug/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/activate-use-xdebug/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/activate-use-xdebug/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/activate-use-xdebug/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/activate-use-xdebug/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/auto-start-xampp/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/auto-start-xampp/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image10.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image11.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image12.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image13.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image14.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image5.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image6.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image7.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image8.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/backup-restore-mysql/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/backup-restore-mysql/image9.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-use-tomcat/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-use-tomcat/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-use-tomcat/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-use-tomcat/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-use-tomcat/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-use-tomcat/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-use-tomcat/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-use-tomcat/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-use-tomcat/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-use-tomcat/image5.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-use-tomcat/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-use-tomcat/image6.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-use-tomcat/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-use-tomcat/image7.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-vhosts/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-vhosts/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-vhosts/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-vhosts/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-vhosts/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-vhosts/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-vhosts/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-vhosts/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-wildcard-subdomains/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-wildcard-subdomains/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-wildcard-subdomains/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-wildcard-subdomains/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-wildcard-subdomains/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-wildcard-subdomains/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/configure-wildcard-subdomains/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/configure-wildcard-subdomains/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/create-framework-project-zf1/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/create-framework-project-zf1/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/create-framework-project-zf1/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/create-framework-project-zf1/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/create-framework-project-zf2/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/create-framework-project-zf2/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/create-framework-project-zf2/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/create-framework-project-zf2/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/create-framework-project-zf2/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/create-framework-project-zf2/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/create-framework-project-zf2/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/create-framework-project-zf2/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/create-framework-project-zf2/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/create-framework-project-zf2/image5.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/deploy-git-app/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/deploy-git-app/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/deploy-git-app/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/deploy-git-app/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/deploy-git-app/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/deploy-git-app/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/deploy-git-app/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/deploy-git-app/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/deploy-git-app/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/deploy-git-app/image5.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/deploy-git-app/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/deploy-git-app/image6.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image01.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image02.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image11.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image110.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image110.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image12.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image13.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image14.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image15.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image16.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image17.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image18.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image19.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image21.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image22.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image23.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image24.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image31.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image32.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image33.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image34.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image35.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image36.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image37.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/install-wordpress/image38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/install-wordpress/image38.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/reset-mysql-password/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/reset-mysql-password/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/reset-mysql-password/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/reset-mysql-password/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/reset-mysql-password/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/reset-mysql-password/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/send-mail/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/send-mail/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/send-mail/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/send-mail/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/send-mail/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/send-mail/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image10.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image11.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image5.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image6.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image7.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image8.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/transfer-files-ftp/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/transfer-files-ftp/image9.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/troubleshoot-apache/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/troubleshoot-apache/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/troubleshoot-apache/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/troubleshoot-apache/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/troubleshoot-apache/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/troubleshoot-apache/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/troubleshoot-apache/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/troubleshoot-apache/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/troubleshoot-apache/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/troubleshoot-apache/image5.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/troubleshoot-apache/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/troubleshoot-apache/image6.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/troubleshoot-apache/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/troubleshoot-apache/image7.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/troubleshoot-apache/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/troubleshoot-apache/image8.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/use-different-php-version/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/use-different-php-version/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/use-php-fcgi/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/use-php-fcgi/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/use-sqlite/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/use-sqlite/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/use-sqlite/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/use-sqlite/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/images/use-sqlite/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/images/use-sqlite/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/docs/increase-php-file-upload-limit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/increase-php-file-upload-limit.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/increase-php-file-upload-limit.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/increase-php-file-upload-limit.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/increase-php-file-upload-limit.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/increase-php-file-upload-limit.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/install-wordpress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/install-wordpress.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/install-wordpress.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/install-wordpress.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/install-wordpress.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/install-wordpress.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/reset-mysql-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/reset-mysql-password.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/reset-mysql-password.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/reset-mysql-password.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/reset-mysql-password.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/reset-mysql-password.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/send-mail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/send-mail.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/send-mail.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/send-mail.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/send-mail.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/send-mail.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/transfer-files-ftp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/transfer-files-ftp.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/transfer-files-ftp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/transfer-files-ftp.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/transfer-files-ftp.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/transfer-files-ftp.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/troubleshoot-apache.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/troubleshoot-apache.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/troubleshoot-apache.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/troubleshoot-apache.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/troubleshoot-apache.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/troubleshoot-apache.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-different-php-version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-different-php-version.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-different-php-version.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-different-php-version.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-different-php-version.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-different-php-version.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-php-fcgi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-php-fcgi.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-php-fcgi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-php-fcgi.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-php-fcgi.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-php-fcgi.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-sqlite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-sqlite.html -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-sqlite.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-sqlite.pdf -------------------------------------------------------------------------------- /htdocs/dashboard/docs/use-sqlite.pdfmarks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/docs/use-sqlite.pdfmarks -------------------------------------------------------------------------------- /htdocs/dashboard/es/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/es/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/es/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/es/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/es/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/es/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/es/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/es/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/es/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/es/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/favicon.ico -------------------------------------------------------------------------------- /htdocs/dashboard/fr/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/fr/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/fr/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/fr/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/fr/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/fr/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/fr/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/fr/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/fr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/fr/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/hu/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/hu/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/hu/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/hu/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/hu/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/hu/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/hu/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/hu/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/hu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/hu/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons-video-thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons-video-thumb.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons/beetailer-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons/beetailer-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons/elegantthemes-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons/elegantthemes-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons/rockettheme-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons/rockettheme-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons/sugaroutfitters-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons/sugaroutfitters-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons/templatemonster-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons/templatemonster-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons/themeforest-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons/themeforest-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons/woothemes-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons/woothemes-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/addons/wpmu-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/addons/wpmu-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/apple-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/apple-logo.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/background.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/bitnami-xampp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/bitnami-xampp.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/bitnami-xampp/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/bitnami-xampp/image1.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/bitnami-xampp/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/bitnami-xampp/image2.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/bitnami-xampp/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/bitnami-xampp/image3.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/bitnami-xampp/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/bitnami-xampp/image4.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/bitnami-xampp/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/bitnami-xampp/image5.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/bitnami-xampp/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/bitnami-xampp/image6.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/bitnami-xampp/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/bitnami-xampp/image7.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/blog/heartbleed-affected-osx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/blog/heartbleed-affected-osx.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/blog/heartbleed-affected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/blog/heartbleed-affected.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/blog/heartbleed-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/blog/heartbleed-fixed.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/blog/phpinfo-section-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/blog/phpinfo-section-1.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/blog/phpinfo-section-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/blog/phpinfo-section-2.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/fastly-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/fastly-logo.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/fastly-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/fastly-logo@2x.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/favicon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/cn.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/de.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/de.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/en.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/es.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/es.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/fr.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/hu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/hu.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/it.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/it.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/jp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/jp.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/pl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/pl.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/pt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/pt.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/pt_br.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/pt_br.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/ro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/ro.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/ru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/ru.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/tr.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/ur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/ur.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/zh_cn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/zh_cn.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/flags/zh_tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/flags/zh_tw.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/linux-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/linux-logo.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/middleman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/middleman.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/pdf-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/pdf-icon.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-linux-start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-linux-start.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-macosx-launch-credentials.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-macosx-launch-credentials.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager-general.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager-general.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager-network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager-network.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager-services.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager-services.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager-volumes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager-volumes.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-macosx-stack-manager.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-macosx-start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-macosx-start.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/screenshots/xampp-windows-start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/screenshots/xampp-windows-start.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/social-icons-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/social-icons-large.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/social-icons-large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/social-icons-large@2x.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/social-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/social-icons.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/social-icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/social-icons@2x.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/sourceforge-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/sourceforge-logo.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/sourceforge-logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/sourceforge-logo@2x.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/stack-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/stack-icons.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/stack-icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/stack-icons@2x.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/stamps/stamp-173x38.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/stamps/stamp-173x38.gif -------------------------------------------------------------------------------- /htdocs/dashboard/images/stamps/stamp-80x15.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/stamps/stamp-80x15.gif -------------------------------------------------------------------------------- /htdocs/dashboard/images/stamps/stamp-88x31.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/stamps/stamp-88x31.gif -------------------------------------------------------------------------------- /htdocs/dashboard/images/team/beltran-rueda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/team/beltran-rueda.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/team/daniel-lopez.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/team/daniel-lopez.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/team/kai-seidler.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/team/kai-seidler.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/team/kay-vogelgesang.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/team/kay-vogelgesang.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/team/paul-hinz.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/team/paul-hinz.jpg -------------------------------------------------------------------------------- /htdocs/dashboard/images/twitter-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/twitter-bird.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/windows-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/windows-logo.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/xampp-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/xampp-cloud.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/xampp-cloud@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/xampp-cloud@2x.png -------------------------------------------------------------------------------- /htdocs/dashboard/images/xampp-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/images/xampp-logo.svg -------------------------------------------------------------------------------- /htdocs/dashboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/it/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/it/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/it/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/it/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/it/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/it/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/it/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/it/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/it/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/it/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/javascripts/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/javascripts/all.js -------------------------------------------------------------------------------- /htdocs/dashboard/javascripts/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/javascripts/modernizr.js -------------------------------------------------------------------------------- /htdocs/dashboard/jp/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/jp/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/jp/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/jp/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/jp/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/jp/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/jp/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/jp/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/jp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/jp/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/phpinfo.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /htdocs/dashboard/pl/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pl/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/pl/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pl/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/pl/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pl/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/pl/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pl/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/pl/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pl/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/pt_br/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pt_br/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/pt_br/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pt_br/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/pt_br/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pt_br/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/pt_br/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pt_br/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/pt_br/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/pt_br/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/ro/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ro/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/ro/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ro/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/ro/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ro/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/ro/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ro/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/ro/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ro/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/ru/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ru/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/ru/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ru/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/ru/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ru/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/ru/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ru/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/ru/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ru/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/stylesheets/all-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/stylesheets/all-rtl.css -------------------------------------------------------------------------------- /htdocs/dashboard/stylesheets/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/stylesheets/all.css -------------------------------------------------------------------------------- /htdocs/dashboard/stylesheets/asciidoctor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/stylesheets/asciidoctor.css -------------------------------------------------------------------------------- /htdocs/dashboard/stylesheets/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/stylesheets/normalize.css -------------------------------------------------------------------------------- /htdocs/dashboard/tr/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/tr/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/tr/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/tr/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/tr/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/tr/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/tr/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/tr/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/tr/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/tr/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/ur/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ur/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/ur/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ur/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/ur/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ur/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/ur/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ur/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/ur/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/ur/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_cn/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_cn/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_cn/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_cn/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_cn/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_cn/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_cn/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_cn/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_cn/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_cn/index.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_tw/faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_tw/faq.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_tw/howto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_tw/howto.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_tw/howto_platform_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_tw/howto_platform_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_tw/howto_shared_links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_tw/howto_shared_links.html -------------------------------------------------------------------------------- /htdocs/dashboard/zh_tw/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/dashboard/zh_tw/index.html -------------------------------------------------------------------------------- /htdocs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/favicon.ico -------------------------------------------------------------------------------- /htdocs/img/module_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/img/module_table_bottom.png -------------------------------------------------------------------------------- /htdocs/img/module_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/img/module_table_top.png -------------------------------------------------------------------------------- /htdocs/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/htdocs/index.php -------------------------------------------------------------------------------- /htdocs/xampp/.modell: -------------------------------------------------------------------------------- 1 | XAMPP -------------------------------------------------------------------------------- /htdocs/xampp/.modell-usb: -------------------------------------------------------------------------------- 1 | XAMPP-PORTABLE -------------------------------------------------------------------------------- /htdocs/xampp/.version: -------------------------------------------------------------------------------- 1 | 0.0.0 2 | -------------------------------------------------------------------------------- /install/.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/.version -------------------------------------------------------------------------------- /install/config.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/config.awk -------------------------------------------------------------------------------- /install/folder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/folder.ico -------------------------------------------------------------------------------- /install/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/install.bat -------------------------------------------------------------------------------- /install/install.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/install.php -------------------------------------------------------------------------------- /install/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/install.sh -------------------------------------------------------------------------------- /install/php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/php.png -------------------------------------------------------------------------------- /install/portcheck.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/portcheck.bat -------------------------------------------------------------------------------- /install/portcheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/portcheck.php -------------------------------------------------------------------------------- /install/serverupdate.sys: -------------------------------------------------------------------------------- 1 | Server = 1.8.0 2 | -------------------------------------------------------------------------------- /install/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/test.php -------------------------------------------------------------------------------- /install/util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/util.sh -------------------------------------------------------------------------------- /install/xampp-icon-uninstall.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/xampp-icon-uninstall.ico -------------------------------------------------------------------------------- /install/xampp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/xampp.ico -------------------------------------------------------------------------------- /install/xamppbasic.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/xamppbasic.inc -------------------------------------------------------------------------------- /install/xamppserver.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/install/xamppserver.inc -------------------------------------------------------------------------------- /licenses/FileZillaFTP/legal.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/FileZillaFTP/legal.htm -------------------------------------------------------------------------------- /licenses/FileZillaFTP/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/FileZillaFTP/license.txt -------------------------------------------------------------------------------- /licenses/GeoIP/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/GeoIP/COPYING.txt -------------------------------------------------------------------------------- /licenses/Mercury32/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/Mercury32/LICENSE.txt -------------------------------------------------------------------------------- /licenses/TSRM/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/TSRM/LICENSE.txt -------------------------------------------------------------------------------- /licenses/Zend/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/Zend/LICENSE.txt -------------------------------------------------------------------------------- /licenses/adodb/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/adodb/license.txt -------------------------------------------------------------------------------- /licenses/apache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/apache/LICENSE -------------------------------------------------------------------------------- /licenses/apr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/apr/LICENSE.txt -------------------------------------------------------------------------------- /licenses/aspell/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/aspell/COPYING.txt -------------------------------------------------------------------------------- /licenses/browscap/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/browscap/LICENSE.txt -------------------------------------------------------------------------------- /licenses/bzip2/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/bzip2/LICENSE.txt -------------------------------------------------------------------------------- /licenses/curl/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/curl/COPYING -------------------------------------------------------------------------------- /licenses/curl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/curl/README -------------------------------------------------------------------------------- /licenses/db/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/db/LICENSE.txt -------------------------------------------------------------------------------- /licenses/eaccelerator/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/eaccelerator/COPYING -------------------------------------------------------------------------------- /licenses/expat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/expat/COPYING -------------------------------------------------------------------------------- /licenses/fontconfig/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/fontconfig/COPYING.txt -------------------------------------------------------------------------------- /licenses/fonts/ming/MING-README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/fonts/ming/MING-README.txt -------------------------------------------------------------------------------- /licenses/fonts/ps/copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/fonts/ps/copyright.txt -------------------------------------------------------------------------------- /licenses/fonts/ttf/COPYRIGHT.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/fonts/ttf/COPYRIGHT.TXT -------------------------------------------------------------------------------- /licenses/fpdf/FAQ.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/fpdf/FAQ.htm -------------------------------------------------------------------------------- /licenses/freetype/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/freetype/GPL.txt -------------------------------------------------------------------------------- /licenses/freetype/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/freetype/PATENTS -------------------------------------------------------------------------------- /licenses/gd/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/gd/index.html -------------------------------------------------------------------------------- /licenses/gdbm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/gdbm/COPYING -------------------------------------------------------------------------------- /licenses/gettext/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/gettext/COPYING -------------------------------------------------------------------------------- /licenses/giflib/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/giflib/COPYING.txt -------------------------------------------------------------------------------- /licenses/gmp/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/gmp/COPYING.LIB -------------------------------------------------------------------------------- /licenses/httpd/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/httpd/LICENSE.txt -------------------------------------------------------------------------------- /licenses/imap/CPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/imap/CPYRIGHT -------------------------------------------------------------------------------- /licenses/jpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/jpeg/README -------------------------------------------------------------------------------- /licenses/libapreq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libapreq/LICENSE -------------------------------------------------------------------------------- /licenses/libbcmath/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libbcmath/COPYING.LIB -------------------------------------------------------------------------------- /licenses/libiconv/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libiconv/COPYING.LIB -------------------------------------------------------------------------------- /licenses/libmbfl/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libmbfl/LICENSE.txt -------------------------------------------------------------------------------- /licenses/libmcrypt/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libmcrypt/COPYING.LIB -------------------------------------------------------------------------------- /licenses/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libpng/LICENSE -------------------------------------------------------------------------------- /licenses/libxml/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libxml/COPYING -------------------------------------------------------------------------------- /licenses/libxml2/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libxml2/COPYING.txt -------------------------------------------------------------------------------- /licenses/libxmlrpc/Copyright.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libxmlrpc/Copyright.txt -------------------------------------------------------------------------------- /licenses/libxslt/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libxslt/AUTHORS -------------------------------------------------------------------------------- /licenses/libxslt/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libxslt/COPYING -------------------------------------------------------------------------------- /licenses/libxslt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libxslt/README -------------------------------------------------------------------------------- /licenses/libzip/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/libzip/LICENSE.txt -------------------------------------------------------------------------------- /licenses/mcrypt/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mcrypt/AUTHORS -------------------------------------------------------------------------------- /licenses/mcrypt/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mcrypt/COPYING.LIB -------------------------------------------------------------------------------- /licenses/mcrypt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mcrypt/README -------------------------------------------------------------------------------- /licenses/mhash/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mhash/AUTHORS -------------------------------------------------------------------------------- /licenses/mhash/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mhash/COPYING -------------------------------------------------------------------------------- /licenses/mhash/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mhash/README -------------------------------------------------------------------------------- /licenses/ming/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/ming/LICENSE -------------------------------------------------------------------------------- /licenses/mod_autoindex_color/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mod_autoindex_color/License.txt -------------------------------------------------------------------------------- /licenses/mod_perl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mod_perl/LICENSE -------------------------------------------------------------------------------- /licenses/msmtp/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/msmtp/COPYING.txt -------------------------------------------------------------------------------- /licenses/mysql/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mysql/COPYING -------------------------------------------------------------------------------- /licenses/mysql/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/mysql/COPYING.LIB -------------------------------------------------------------------------------- /licenses/openldap/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/openldap/COPYRIGHT -------------------------------------------------------------------------------- /licenses/openldap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/openldap/LICENSE -------------------------------------------------------------------------------- /licenses/openssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/openssl/LICENSE -------------------------------------------------------------------------------- /licenses/pbxt/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/pbxt/COPYING.txt -------------------------------------------------------------------------------- /licenses/pcrelib/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/pcrelib/LICENCE.txt -------------------------------------------------------------------------------- /licenses/pdfclass/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/pdfclass/LICENCE -------------------------------------------------------------------------------- /licenses/pdflib/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/pdflib/license.txt -------------------------------------------------------------------------------- /licenses/pear/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/pear/license.txt -------------------------------------------------------------------------------- /licenses/perl/Copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/perl/Copying -------------------------------------------------------------------------------- /licenses/php/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/php/LICENSE -------------------------------------------------------------------------------- /licenses/phpmyadmin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/phpmyadmin/LICENSE -------------------------------------------------------------------------------- /licenses/postgresql/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/postgresql/COPYRIGHT -------------------------------------------------------------------------------- /licenses/proftpd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/proftpd/COPYING -------------------------------------------------------------------------------- /licenses/proftpd/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/proftpd/license.txt -------------------------------------------------------------------------------- /licenses/regex/COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/regex/COPYRIGHT.txt -------------------------------------------------------------------------------- /licenses/sablot/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/sablot/README -------------------------------------------------------------------------------- /licenses/sql2k/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/sql2k/license.txt -------------------------------------------------------------------------------- /licenses/sql2k/redist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/sql2k/redist.txt -------------------------------------------------------------------------------- /licenses/sqlite/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/sqlite/COPYRIGHT -------------------------------------------------------------------------------- /licenses/sqlite/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/sqlite/README -------------------------------------------------------------------------------- /licenses/strawberry/licenses/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/License.rtf -------------------------------------------------------------------------------- /licenses/strawberry/licenses/dmake/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/dmake/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/dmake/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/dmake/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/dmake/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/dmake/license.txt -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING.LIB -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING.LIBGLOSS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING.LIBGLOSS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING.NEWLIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING.NEWLIB -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING3 -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING3.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/binutils/COPYING3.LIB -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/binutils/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/binutils/README -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING.LIB -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING.RUNTIME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING.RUNTIME -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING3 -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING3.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/gcc/COPYING3.LIB -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/mingw-w64/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/mingw-w64/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/mingw-w64/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/mingw-w64/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/mingw-w64/DISCLAIMER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/mingw-w64/DISCLAIMER -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/mingw-w64/DISCLAIMER.PD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/mingw-w64/DISCLAIMER.PD -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/mingw-w64/direct-x-headers/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/mingw-w64/direct-x-headers/COPYING.LIB -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/mingw-w64/glext-headers/khronos.license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/mingw-w64/glext-headers/khronos.license.txt -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gcc-toolchain/mingw-w64/open-cl/khronos.license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gcc-toolchain/mingw-w64/open-cl/khronos.license.txt -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gmake/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gmake/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gmake/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gmake/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/gmake/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/gmake/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libdb-BerkeleyDB/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libdb-BerkeleyDB/LICENSE -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libdb-BerkeleyDB/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libdb-BerkeleyDB/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libexpat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libexpat/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libexpat/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libexpat/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libfreeglut/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libfreeglut/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libfreeglut/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libfreeglut/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libfreeglut/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libfreeglut/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libfreetype/FTL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libfreetype/FTL.TXT -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libfreetype/GPL.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libfreetype/GPL.TXT -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libfreetype/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libfreetype/LICENSE.TXT -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libfreetype/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libfreetype/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgd/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgd/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgd/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgdbm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgdbm/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgdbm/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgdbm/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgif/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgif/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgif/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgif/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgif/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgif/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgmp/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgmp/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgmp/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgmp/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgmp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgmp/README -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libgmp/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libgmp/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libiconv/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libiconv/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libiconv/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libiconv/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libiconv/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libjpeg/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libjpeg/README -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libjpeg/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libjpeg/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libmpc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libmpc/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libmpc/COPYING.LIB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libmpc/COPYING.LIB -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libmpc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libmpc/README -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libmpc/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libmpc/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libmpfr/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libmpfr/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libmpfr/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libmpfr/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libmpfr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libmpfr/README -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libmpfr/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libmpfr/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libpng/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libpng/LICENSE -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libpng/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libpng/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libssh2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libssh2/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libssh2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libssh2/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libssh2/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libssh2/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libtiff/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libtiff/COPYRIGHT -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libtiff/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libtiff/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxml2/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxml2/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxml2/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxml2/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxml2/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxml2/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxpm/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxpm/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxpm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxpm/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxpm/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxpm/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxslt/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxslt/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxslt/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxslt/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxslt/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxslt/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxz/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxz/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxz/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxz/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxz/COPYING.GPLv2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxz/COPYING.GPLv2 -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxz/COPYING.GPLv3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxz/COPYING.GPLv3 -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxz/COPYING.LGPLv2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxz/COPYING.LGPLv2.1 -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxz/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxz/THANKS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libxz/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libxz/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libzlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libzlib/README -------------------------------------------------------------------------------- /licenses/strawberry/licenses/libzlib/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/libzlib/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/mysql/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/mysql/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/mysql/EXCEPTIONS-CLIENT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/mysql/EXCEPTIONS-CLIENT -------------------------------------------------------------------------------- /licenses/strawberry/licenses/mysql/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/mysql/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/openssl/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/openssl/LICENSE -------------------------------------------------------------------------------- /licenses/strawberry/licenses/openssl/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/openssl/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/patch/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/patch/AUTHORS -------------------------------------------------------------------------------- /licenses/strawberry/licenses/patch/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/patch/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/patch/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/patch/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/perl/Artistic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/perl/Artistic -------------------------------------------------------------------------------- /licenses/strawberry/licenses/perl/Copying: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/perl/Copying -------------------------------------------------------------------------------- /licenses/strawberry/licenses/perl/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/perl/Readme -------------------------------------------------------------------------------- /licenses/strawberry/licenses/pexports/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/pexports/COPYING -------------------------------------------------------------------------------- /licenses/strawberry/licenses/pexports/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/pexports/README -------------------------------------------------------------------------------- /licenses/strawberry/licenses/pexports/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/pexports/_INFO_ -------------------------------------------------------------------------------- /licenses/strawberry/licenses/postgresql/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/postgresql/COPYRIGHT -------------------------------------------------------------------------------- /licenses/strawberry/licenses/postgresql/_INFO_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/strawberry/licenses/postgresql/_INFO_ -------------------------------------------------------------------------------- /licenses/t1lib/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/t1lib/LICENSE.txt -------------------------------------------------------------------------------- /licenses/tidy/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/tidy/license.html -------------------------------------------------------------------------------- /licenses/ucd-snmp/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/ucd-snmp/COPYING.txt -------------------------------------------------------------------------------- /licenses/webalizer/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/webalizer/COPYING -------------------------------------------------------------------------------- /licenses/webalizer/Copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/webalizer/Copyright -------------------------------------------------------------------------------- /licenses/xampp-control-panel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/xampp-control-panel/LICENSE -------------------------------------------------------------------------------- /licenses/xampp-portcheck/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/xampp-portcheck/license.txt -------------------------------------------------------------------------------- /licenses/xampp-portcheck/openports.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/xampp-portcheck/openports.txt -------------------------------------------------------------------------------- /licenses/xampp/gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/xampp/gpl.txt -------------------------------------------------------------------------------- /licenses/xdebug/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/xdebug/LICENSE.txt -------------------------------------------------------------------------------- /licenses/zlib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/zlib/README -------------------------------------------------------------------------------- /licenses/zziplib/COPYING.ZZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/licenses/zziplib/COPYING.ZZIP -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/xampp_control.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/locale/de/LC_MESSAGES/xampp_control.mo -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/xampp_control.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/locale/de/LC_MESSAGES/xampp_control.po -------------------------------------------------------------------------------- /locale/de/LC_MESSAGES/xampp_control.~po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/locale/de/LC_MESSAGES/xampp_control.~po -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/delphi2006_de_en.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/locale/en/LC_MESSAGES/delphi2006_de_en.mo -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/xampp_control.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/locale/en/LC_MESSAGES/xampp_control.mo -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/xampp_control.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/locale/en/LC_MESSAGES/xampp_control.po -------------------------------------------------------------------------------- /locale/en/LC_MESSAGES/xampp_control.~po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/locale/en/LC_MESSAGES/xampp_control.~po -------------------------------------------------------------------------------- /mysql/bin/my.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/mysql/bin/my.ini -------------------------------------------------------------------------------- /mysql/resetroot.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/mysql/resetroot.bat -------------------------------------------------------------------------------- /mysql_start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/mysql_start.bat -------------------------------------------------------------------------------- /mysql_stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/mysql_stop.bat -------------------------------------------------------------------------------- /passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/passwords.txt -------------------------------------------------------------------------------- /php/extras/browscap.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/browscap.ini -------------------------------------------------------------------------------- /php/extras/mibs/AGENTX-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/AGENTX-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/DISMAN-EVENT-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/DISMAN-EVENT-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/DISMAN-EXPRESSION-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/DISMAN-EXPRESSION-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/DISMAN-NSLOOKUP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/DISMAN-NSLOOKUP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/DISMAN-PING-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/DISMAN-PING-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/DISMAN-SCHEDULE-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/DISMAN-SCHEDULE-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/DISMAN-SCRIPT-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/DISMAN-SCRIPT-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/DISMAN-TRACEROUTE-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/DISMAN-TRACEROUTE-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/EtherLike-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/EtherLike-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/HCNUM-TC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/HCNUM-TC.txt -------------------------------------------------------------------------------- /php/extras/mibs/HOST-RESOURCES-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/HOST-RESOURCES-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/HOST-RESOURCES-TYPES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/HOST-RESOURCES-TYPES.txt -------------------------------------------------------------------------------- /php/extras/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IANA-ADDRESS-FAMILY-NUMBERS-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IANA-LANGUAGE-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IANA-LANGUAGE-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IANA-RTPROTO-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IANA-RTPROTO-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IANAifType-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IANAifType-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IF-INVERTED-STACK-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IF-INVERTED-STACK-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IF-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IF-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/INET-ADDRESS-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/INET-ADDRESS-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IP-FORWARD-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IP-FORWARD-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IPV6-FLOW-LABEL-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IPV6-FLOW-LABEL-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IPV6-ICMP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IPV6-ICMP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IPV6-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IPV6-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IPV6-TC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IPV6-TC.txt -------------------------------------------------------------------------------- /php/extras/mibs/IPV6-TCP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IPV6-TCP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/IPV6-UDP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/IPV6-UDP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/LM-SENSORS-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/LM-SENSORS-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/MTA-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/MTA-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/Makefile.in -------------------------------------------------------------------------------- /php/extras/mibs/Makefile.mib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/Makefile.mib -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-AGENT-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-AGENT-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-EXAMPLES-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-EXAMPLES-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-EXTEND-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-EXTEND-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-MONITOR-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-MONITOR-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-PASS-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-PASS-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-SYSTEM-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-SYSTEM-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-TC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-TC.txt -------------------------------------------------------------------------------- /php/extras/mibs/NET-SNMP-VACM-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NET-SNMP-VACM-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NETWORK-SERVICES-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NETWORK-SERVICES-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/NOTIFICATION-LOG-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/NOTIFICATION-LOG-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/README.mibs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/README.mibs -------------------------------------------------------------------------------- /php/extras/mibs/RFC-1215.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/RFC-1215.txt -------------------------------------------------------------------------------- /php/extras/mibs/RFC1155-SMI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/RFC1155-SMI.txt -------------------------------------------------------------------------------- /php/extras/mibs/RFC1213-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/RFC1213-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/RMON-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/RMON-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SCTP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SCTP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SMUX-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SMUX-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-COMMUNITY-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-COMMUNITY-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-FRAMEWORK-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-FRAMEWORK-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-MPD-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-MPD-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-NOTIFICATION-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-NOTIFICATION-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-PROXY-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-PROXY-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-TARGET-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-TARGET-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-USER-BASED-SM-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-USER-BASED-SM-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-USM-AES-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-USM-AES-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-USM-DH-OBJECTS-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-USM-DH-OBJECTS-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMP-VIEW-BASED-ACM-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMP-VIEW-BASED-ACM-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMPv2-CONF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMPv2-CONF.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMPv2-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMPv2-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMPv2-SMI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMPv2-SMI.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMPv2-TC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMPv2-TC.txt -------------------------------------------------------------------------------- /php/extras/mibs/SNMPv2-TM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/SNMPv2-TM.txt -------------------------------------------------------------------------------- /php/extras/mibs/TCP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/TCP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/TRANSPORT-ADDRESS-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/TRANSPORT-ADDRESS-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/TUNNEL-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/TUNNEL-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/UCD-DEMO-MIB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-DEMO-MIB.inc -------------------------------------------------------------------------------- /php/extras/mibs/UCD-DEMO-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-DEMO-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/UCD-DISKIO-MIB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-DISKIO-MIB.inc -------------------------------------------------------------------------------- /php/extras/mibs/UCD-DISKIO-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-DISKIO-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/UCD-DLMOD-MIB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-DLMOD-MIB.inc -------------------------------------------------------------------------------- /php/extras/mibs/UCD-DLMOD-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-DLMOD-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/UCD-IPFILTER-MIB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-IPFILTER-MIB.inc -------------------------------------------------------------------------------- /php/extras/mibs/UCD-IPFILTER-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-IPFILTER-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/UCD-IPFWACC-MIB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-IPFWACC-MIB.inc -------------------------------------------------------------------------------- /php/extras/mibs/UCD-IPFWACC-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-IPFWACC-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/UCD-SNMP-MIB-OLD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-SNMP-MIB-OLD.txt -------------------------------------------------------------------------------- /php/extras/mibs/UCD-SNMP-MIB.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-SNMP-MIB.inc -------------------------------------------------------------------------------- /php/extras/mibs/UCD-SNMP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UCD-SNMP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/UDP-MIB.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/UDP-MIB.txt -------------------------------------------------------------------------------- /php/extras/mibs/ianalist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/ianalist -------------------------------------------------------------------------------- /php/extras/mibs/makehtml.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/makehtml.pl -------------------------------------------------------------------------------- /php/extras/mibs/mibfetch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/mibfetch -------------------------------------------------------------------------------- /php/extras/mibs/nodemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/nodemap -------------------------------------------------------------------------------- /php/extras/mibs/rfclist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/rfclist -------------------------------------------------------------------------------- /php/extras/mibs/rfcmibs.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/rfcmibs.diff -------------------------------------------------------------------------------- /php/extras/mibs/smistrip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/extras/mibs/smistrip -------------------------------------------------------------------------------- /php/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/php.ini -------------------------------------------------------------------------------- /php/phpunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/phpunit -------------------------------------------------------------------------------- /php/phpunit.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/phpunit.bat -------------------------------------------------------------------------------- /php/webdriver-test-example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/php/webdriver-test-example.php -------------------------------------------------------------------------------- /phpMyAdmin/config.inc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/phpMyAdmin/config.inc.php -------------------------------------------------------------------------------- /readme_en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/readme_en.txt -------------------------------------------------------------------------------- /setup_xampp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/setup_xampp.bat -------------------------------------------------------------------------------- /src/xampp-usb-lite/make-usb-xampp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/src/xampp-usb-lite/make-usb-xampp.bat -------------------------------------------------------------------------------- /src/xampp-usb-lite/setup_xampp.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/src/xampp-usb-lite/setup_xampp.bat -------------------------------------------------------------------------------- /src/xampp-usb-lite/xampp-control.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/src/xampp-usb-lite/xampp-control.ini -------------------------------------------------------------------------------- /test_php.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/test_php.bat -------------------------------------------------------------------------------- /tmp/why.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/tmp/why.tmp -------------------------------------------------------------------------------- /tomcat/catalina_start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/tomcat/catalina_start.bat -------------------------------------------------------------------------------- /tomcat/catalina_stop.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/tomcat/catalina_stop.bat -------------------------------------------------------------------------------- /webdav/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/webdav/index.html -------------------------------------------------------------------------------- /webdav/webdav.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xampp-phoenix/xampp/HEAD/webdav/webdav.txt --------------------------------------------------------------------------------