xampp

centos 下 安装 xmapp

瘦欲@ 提交于 2019-12-04 22:53:30
下载 xmapp for linux 文件 xampp-linux-x64-7.1.10-0-installer.run ftp 上传 授权 [root@Dralen ~]# cd /usr [root@Dralen usr]# ls bin etc games include lib lib64 libexec local sbin share src tmp xmapp [root@Dralen usr]# cd xmapp [root@Dralen xmapp]# ll 总用量 134356 -rw-r--r--. 1 root root 137577889 10月 30 17:06 xampp-linux-x64-7.1.10-0-installer.run [root@Dralen xmapp]# chmod a+x xampp-linux-x64-7.1.10-0-installer.run [root@Dralen xmapp]# [root@Dralen xmapp]# a+x 所有权 安装 [root@Dralen xmapp]# ./xampp-linux-x64-7.1.10-0-installer.run ----------------------------------------------------------------------------

PHP 5.4 and MsSQL on XAMPP

好久不见. 提交于 2019-12-04 22:46:11
I'm trying to run mssql driver for PHP, but something goes wrong. I managed to get the right drivers for mssql, then added the extensions in php.ini, but PHP is still running "--without-mssql" "--without-pdo-mssql" . I'm running PHP 5.4 under Apache 2.2 on Windows XP SP3. How to start the mssql drivers? I've just had the same problem, for me I needed to use a different version of the driver. I was using: extension=php_sqlsrv_53_ts.dll Which gave me the following error in PHP: [28-Nov-2013 10:58:47 UTC] PHP Warning: PHP Startup: sqlsrv: Unable to initialize module Module compiled with module

How to Set user name and Password of phpmyadmin [closed]

让人想犯罪 __ 提交于 2019-12-04 22:34:50
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 . how to set username and password of phpmyadmin I am using xampp software for localhost and I want to lock my phpmyadmin page when I open this link ` localhost/phpmyadmin its opening direct now and I want to lock this page and use username and password example when I open this page localhost/phpmyadmin its required username and password how can I do this please help me to fix this issue thanks You can simply open

Apache (xamp) and IIS cannot work together

点点圈 提交于 2019-12-04 22:19:26
I have XAMP 1.6.8 and IIS 5.0 installed on my PC(Windows XP SP3). I'm unable to run them simultaneously. If IIS service is running, Apache throws the following error: (OS 10048)Only one usage of each socket address (protocol/network address/port) is normally permitted. : make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down Unable to open logs Note the errors or messages above, and press the key to exit. 24... Windows could not start the Apache2 on Local Computer. For more information, review the System Event Log. If this is a non-Microsoft service,

Sending email using xampp localhost

我只是一个虾纸丫 提交于 2019-12-04 22:05:35
Please help me send email using php, I searched trough google and found out that I need to reconfigure/edit my php.ini and change SMTP value and smtp_port, I dont know what exactly what will I put on those lines. Thanks for helping! It would be a lot easier to use a phpmailer script like this , but you can also do it without that by setting: smtp_ssl = ssl and configure the sendmail.ini so that it connects with your @gmail.com account credentials, or it will not be able to connect. 来源: https://stackoverflow.com/questions/10344580/sending-email-using-xampp-localhost

how to move website created with xampp(windows) to hosting server

旧街凉风 提交于 2019-12-04 21:56:29
I am new to this hosting stuff. I dono anything about hosting a site. I am developing a website in xampp-windows. What should i do for hosting the website in a domain. If u know please tell me about this hosting of a site in my case. Get yourself a simple host provider that gives you roughly the same versions for PHP and MYSQL as your current home install. For starters, choose a shared host with plesk or something simple like that. Make sure you're getting phpmyadmin if you're used to that. export your database and move it to your host (import) Go over your code and check for windows-only

XAMPP setup - MySQL not working

让人想犯罪 __ 提交于 2019-12-04 21:53:34
I'm trying to get XAMPP working on Win7/64 for testing Wordpress themes. I was originally getting a problem with Apache trying to access Port 80 but I was told to change the config file to port 81 which I have done and now Apache is running and localhost:81 shows the XAMPP control panel fine. However, now MySQL is not working at all. Before I changed the config file, I think it was, but Apache was not running so I still couldn't access localhost at all. In Windows Event Viewer, I am getting this Error report on the MySQL: Fatal error: Can't open and lock privilege tables: Can't find file:

Can't use Xdebug to debug Code Igniter App using Netbeans 6.8 IDE

久未见 提交于 2019-12-04 21:29:17
问题 I can't use Xdebug to debug an application built with Code Igniter, but I can use it to debug any other PHP file as long it doesn't use the same Structure for url solving that Code Igniter uses. Meaning: In a simple PHP file with no Code Igniter, when I use NetBeans debugging the browser goes to: http://localhost:86/index.php?XDEBUG_SESSION_START=netbeans-xdebug Since no Code Igniter or other framework as been used, NetBeans can actually debug the PHP. But when using Code Igniter when hit the

How to change localhost/site to site.dev

一世执手 提交于 2019-12-04 21:21:01
I use XAMPP for local development and I've heard of developers that change the url structure from localhost/site to site.dev, but I'm not sure how to go about it. How can I change it and is there anything I should know before changing it? You'll need to add an entry in your host file to map site.dev to localhost 127.0.0.1 site.dev www.site.dev and add a virtual host in apache to detect it <VirtualHost *:80> DocumentRoot /path/to/document/root/site/ ServerName site.dev ServerAlias www.site.dev # Other directives here </VirtualHost> <VirtualHost *:80> DocumentRoot /path/to/document/root/

MySQL error 1064 syntax but everything seems fine

心不动则不痛 提交于 2019-12-04 21:17:50
问题 Im using xampp control panel and from there i start the process for apache and mysql. Then i go to mysql workbench and server status seems to be ok, here is some info Host: Windows-PC Socket: C:/xampp/mysql/mysql.sock Port: 3306 Version 10.1.31-MariaDB mariadb.org binary distribution Compiled For: Win32(32) Configuratin File: unknown Then everytime when i try to add the foreign key for my dummy schema like: ALTER TABLE `puppies`.`animals` ADD INDEX `Breed_idx` (`BreedID` ASC) VISIBLE; ; ALTER