xampp

XAMPP on windows 7 not working properly

て烟熏妆下的殇ゞ 提交于 2019-12-10 16:32:29
问题 I just installed XAMPP lite on Windows 7. I have two drives - C: for the OS and regular files, and an external drive E:. I installed XAMPP lite on E: (on the root), and its been giving me problems. Apache works well enough, but MySQL doesn't work. When I go to http://localhost/phpmyadmin/, it gives me the following error: Error MySQL said: #2003 - Can't connect to MySQL server on 'localhost' (10061) Connection for controluser as defined in your configuration failed. Any ideas as to what could

Set up xampp server on office lan

放肆的年华 提交于 2019-12-10 15:39:56
问题 Im looking to set up a server using xampp within a small office. I will ofcourse secure xampp but in order to make my webapp available to the other 4 PCs on the network do i just create a virtual host? Is there a way to ensure that access to the webapp is only available on the lan? The current setup includes 4 pcs sharing an internet connection via a router. How can i set this up as a lan which i can provide access to my webapp? 回答1: Use an .htaccess file or set up permissions in the

The infamous Apache error “Parent: child process exited with status 3221225477”

我怕爱的太早我们不能终老 提交于 2019-12-10 15:38:14
问题 I've read some questions and responses related to the infamous Apache error Apache error [notice] Parent: child process exited with status 3221225477 — Restarting But nothing could help me so far. What I'm asking to you is if I used a Linux version, could the script crash Apache for the same reason? By the way if anyone has any suggestion for my case here is Apache's error.log [Mon Aug 08 14:31:44 2011] [notice] Parent: child process exited with status 3221225477 -- Restarting. [Mon Aug 08 14

Install PHP intl extension on MacOS

╄→гoц情女王★ 提交于 2019-12-10 13:55:07
问题 I am facing some issues in the installation of Cakephp. I hope any one had faced the same issue. The error - cakephp/cakephp 3.3.9 requires ext-intl * -> the requested PHP extension intl is missing from your system. As per the error message, I removed ; from php.ini file but still getting the same error. I have Mac 10.12 Sierra, Xampp 5.6.28-1 version and PHP 5.6.24 version. 回答1: Install the php5-intl extension brew install php56-intl If you get No available formula for php56-intl do brew tap

What is the difference between MySQL and MariaDB database?

 ̄綄美尐妖づ 提交于 2019-12-10 13:34:12
问题 I have been using XAMPP for a long time and was surprised that XAMPP has switched to MariaDB from MySQL. https://www.apachefriends.org/index.html How will this change impact on existing developers using MySQL? For example, can existing development tools for MySQL work seamlessly with MariaDB? What are notable difference between MySQL and MariaDB that developers need to take note? I am not sure if it is advisable to upgrade XAMPP version because of this database change. I am worried of the

How to setup mod_lua in Apache to access third party Lua modules?

佐手、 提交于 2019-12-10 13:09:39
问题 I'm attempting to set up mod_lua module for Apache, but have encountered difficulty regarding accessing third party Lua modules. Say I have a hello_world.lua in Apache's htdocs folder that has something like this: require "apache2" function handle(r) r.content_type = "text/html" r:write "Hello World from <strong>mod_lua</strong>." return apache2.OK end And I go to "http://localhost/hello_world.lua", that will function as expected. But if I try to add a line such as: require "socket" Or

Google Analytics service API (ERR_CONNECTION_RESET)

帅比萌擦擦* 提交于 2019-12-10 12:00:30
问题 IMPORTANT EDIT: Found out that issue is caused by my web server (I don't know how to fix that) - tags changed. I use latest XAMPP. I am trying to set up server to server connection with Google Analytics API with OAuth following this guide: Service Applications and Google Analytics API V3: Server-to-server OAuth2 authentication? I have following code: require_once 'google-api-php-client/src/Google_Client.php'; require_once 'google-api-php-client/src/contrib/Google_AnalyticsService.php'; //

Undo chown and chmod [closed]

我只是一个虾纸丫 提交于 2019-12-10 11:55:11
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . I'm new to Ubuntu. I ran the following commands to save files in htdocs folder (to conveniently use XAMPP for programming) without understanding its security consequences: sudo chown username:groupname /opt/lampp/htdocs sudo chmod 700 /opt/lampp/htdocs I would like to undo the file permissions (on the htdocs

PHP openssl_sign DIES

﹥>﹥吖頭↗ 提交于 2019-12-10 10:57:10
问题 I am trying to use openssl_sign in PHP but every time the page says: Cannot display the page. It throws error. if i put die("hello"); right before openssl_sign function then it displays hello but if i put right after then i get internet explorer error cannot display page, connection has been terminated or whatever the message goes... I tried ini set and error reporting and checking loogs of php and apache and there are no nay errors. someone have any clue or can at least explain me? thank you

How to configure MySQL under XAMPP to work with IPv6 [closed]

时间秒杀一切 提交于 2019-12-10 10:36:52
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 6 years ago . I have XAMPP v.3.1.0 and for testing purposes I need to connect to the MySQL database using IPv6 format. How to configure MySQL? 回答1: Locate my.ini Change / uncomment bind-address = :: # for ipv6 Start mysql check in the console with the command mysql -h ::1 if you manage to connect Other resources: 5.1 The