xampp

Update xampp from maria db 10.1 to 10.2

时光毁灭记忆、已成空白 提交于 2019-11-27 11:34:52
I am looking for solution on how to update mariadb on xampp 32 bit on window system but not found any article on that.I just found this link . Please help me how to update. I want JSON support that's why I am looking for update from V10.1 to V10.2 . Or if there is any other way to do this please let me know Current version is 10.1.19-MariaDB 1 : Shutdown or Quit your XAMPP server from Xampp control panel. 2 : Download the ZIP version of MariaDB 3 : Rename the xampp/mysql folder to mysql_old. 4 : Unzip or Extract the contents of the MariaDB ZIP file into your XAMPP folder. 5 : Rename the

Force browser to refresh css, javascript, etc

不想你离开。 提交于 2019-11-27 10:59:53
I'm developing a website based on Wordpress source code through XAMPP. Sometimes I change the CSS code, scrips or something else and I notice my browser takes time to apply the modifications. This leads me to use multiple browsers to refresh one and if doesn't apply the new styles I try the second one and it's always this. There is some way of avoiding this problem? Sometimes I'm changing code without notice the previous modifications. Bojangles General solution Pressing Ctrl + F5 (or Ctrl + Shift + R ) to force a cache reload. I believe Macs use Cmd + Shift + R . PHP In PHP, you can disable

Access to the requested object is only available from the local network phpmyadmin

余生颓废 提交于 2019-11-27 10:49:57
问题 I just installed xampp 1.8.0 for linux and when I opened phpmyadmin I got this error Access Forbidden!! New XAMPP security concept: Access to the requested object is only available from the local network. This setting can be configured in the file "httpd-xampp.conf". I tried this post but with no luck. please help. I am opening it from my own PC not from any other network. 回答1: open your http.conf file vim /opt/lampp/etc/extra/httpd-xampp.conf Comment " Deny from all " in the following

VirtualHost with wildcard VirtualDocumentRoot

主宰稳场 提交于 2019-11-27 10:40:28
问题 I'm trying to create a fallback for my virtual hosts. My configuration looks like this: # Fetch all pre-defined hosts Include "conf/extra/vhosts/*.conf" # Fallback NameVirtualHost *:80 <Directory "C:/LocalServer/usr"> Options Indexes FollowSymLinks Includes AllowOverride All Order allow,deny Allow from all </Directory> <VirtualHost *:80> VirtualDocumentRoot "C:/LocalServer/usr/%-1/projects/%-2+/public/" </VirtualHost> The objective here is the following: If I try to access http://test.lab/ ,

I get Access Forbidden (Error 403) when setting up new alias

六月ゝ 毕业季﹏ 提交于 2019-11-27 10:16:01
问题 I'm running windows 7 and recently installed XAMPP to build a dev environment. I'm not great with the server side of things so I'm having some problems setting up an alias for a project. So far XAMPP is running and if I go to localhost I get the XAMPP welcome page. I created an "alias" folder in my "conf" folder of my apache install. In there I added dev.conf with the following content: <Directory "C:\Users\my_user\My%20Documents\Aptana%20Studio%203%20Workspace\project"> Options Indexes

how to get login option for phpmyadmin in xampp

混江龙づ霸主 提交于 2019-11-27 10:10:37
问题 when i open localhost/phpmyadmin/ in xampp it opens directly the home page with root as user but not a login page. My page looks same as in here in this link how can I get a login page, what are the setting I should do to get a login page 回答1: Can you set the password to the phpmyadmin here http://localhost/security/index.php 回答2: Step 1: Locate phpMyAdmin installation path. Step 2: Open phpMyAdmin/config.inc.php in your favourite text editor. Copy config.sample.inc.php to config.inc.php if

SMTP server with XAMPP?

那年仲夏 提交于 2019-11-27 09:38:21
I am new to php and in my project I have used php mail function, but while sending mail from database it shows an error like: Failed to connect to mailserver at "localhost" port 25, verify your "SMTP" By searching on stackoverflow and google, I come to know that XAMPP does not provide SMTP server and I will have to install a SMTP server. I am really confused.So, Which SMTP server I should install? For this example, I will use PHPMailer . So first, you have to download the source code of PHPMailer. Only 3 files are necessary : PHPMailerAutoload.php class.phpmailer.php class.smtp.php Put these 3

XAMPP / WAMP / whatever it is: Apache is running super slow [closed]

て烟熏妆下的殇ゞ 提交于 2019-11-27 09:16:10
问题 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 8 years ago . I've got my Windows PC (localhost) running XAMPP. It loads the pages sometimes really quick or sometimes really slow. So, I figured and searched and was recommended to get WAMP. I got that and installed it. Still, the pages load so damn slowly. No heavy CPU load or anything, all my ports are open too. Any ideas?

PHP on Windows with XAMPP running 100 times too slow

谁说胖子不能爱 提交于 2019-11-27 09:14:55
PHP runs so slowly on my Windows desktop that phpMyAdmin takes minutes to open a database. Here’s a comparison of the time to run a simple PHP test program: Windows 8.1 machine running XAMPP: 3597 ms iPage shared hosting: 65 ms A2Hosting shared hosting: 26 ms Here’s the test program… <?php $rStartTime = microtime(true); $countTo = 100000; $a = 0; //$countTo = $countTo * 100; for ($x = 0; $x <= $countTo; $x++) { $a = sqrt(pow($x, 2)); } $rMs = floor((microtime(true) - $rStartTime) * 1000); echo 'timer done, countTo=' . $a . ' ms=' . $rMs; The test program is run without debugging, by entering "

PHP not working in XAMPP

一世执手 提交于 2019-11-27 09:14:48
I have a problem running PHP in XAMPP 1.7.7 for windows. I've installed XAMPP in a local server with IIS (changed the port to 81 in httpd.conf as well as other configuration) so far it works and I could connect to the xampp/index.php but coulnd't run any .php files in my htdocs (shows blank except for the html part). It works in my local (also have an IIS installed) but couldn't make it work in a server. Any help would be much appreciated. user28864 If I got your question correctly, I think I had the same problem accessing a php file in XAMPP. I have been online for several hours searching