xampp

MySQL deactivated in Lampp, Xampp on Linux 12.04

家住魔仙堡 提交于 2019-12-08 05:17:33
I have freshly installed xampp-linux-1.8.1 on my Ubuntu 12.04 (Mint 13 maya) Operating system. When run lampp, I get : /opt/lampp/lampp start Starting XAMPP for Linux 1.8.1... XAMPP: XAMPP-Apache is already running. XAMPP: Another MySQL daemon is already running. XAMPP: XAMPP-ProFTPD is already running. XAMPP for Linux started. In the : localhost/xampp/ MySQL DataBase is Deactivated !!! ps -aux | grep 'mysql' Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html mysql 3159 0.0 0.9 316264 31880 ? Ssl 16:48 0:00 /usr/sbin/mysqld root 4745 0.0 0.0 4648 840 pts/5 S+ 17:02

Apache VirtualHost: How to ServerName a port different from 80

為{幸葍}努か 提交于 2019-12-08 04:28:23
问题 I use Xampp and I want test.localhost to go to 127.0.0.1:81 . In httpd.conf I wrote: Listen 127.0.0.1:81 NameVirtualHost 127.0.0.1:81 <VirtualHost 127.0.0.1:81> ServerName test.localhost DocumentRoot "d:\_projects\projectx" DirectoryIndex index.php </VirtualHost> and to windows\system32\drivers\etc\hosts I added: 127.0.0.1 test.localhost But http://test.localhost now brings me to 127.0.0.1:80 . How do I make it go to 127.0.0.1:81 ? 回答1: As far as your browser is concerned, http://test

How to enable PostgreSQL in Xampp on Mac OS?

懵懂的女人 提交于 2019-12-08 04:21:42
问题 Can anyone please tell me how I can enable PostgreSQL in Xampp on Mac platform? Or is there any other GUI alternative like XAMPP for Mac platform. Thanks. 回答1: Use MAPP Stack for OSX. MAPP: https://bitnami.com/stack/mapp In case you need MySQL + PostgreSQL, download MAMP + PostgreSQL extension MAMP: https://bitnami.com/stack/mamp PostgreSQL add-on: https://bitnami.com/stack/mamp/modules#postgresql Enable MySQL before installing PostgreSQL by starting MAMP stack's MySQL. After installing, go

How to point to project index page by default in XAMPP

两盒软妹~` 提交于 2019-12-08 04:20:14
问题 i am pretty new this kind of work. I had developed a web app using PHP. i am using XAMPP Server. Now when i am hitting http://www.mywebsite.com/myproject i got my project index page. Now what i looking is if i enter http://www.mywebsite.com it should display myproject's index page. I am not sure what is this term called. I didn't know how to search for this solution. Your help will be much appreciated if you can provide the term i should look for or the solution for this. thanks 回答1: When you

Cannot connect to remote mysql from Mac lion

ⅰ亾dé卋堺 提交于 2019-12-08 03:56:51
问题 I'm a mac novice and trying to get a developer setup to develop php sites locally. The sites he develops have a mysql backend and that is on a remote box. We got xampp installed and working, he can connect from the website to the local mysql box but he cannot connect to the remote box. He is using the exact same connection info I am using from my windows system. I do not have any issues. Also the mysql server is setup to accept all users (we are currently using root) regardless of hostname. I

XAMPP 1.7.3, Eclipse PDT & XDebug - Debugging a PHP web page in Eclipse never stops at breakpoints

╄→尐↘猪︶ㄣ 提交于 2019-12-08 03:47:33
问题 My development web server is currently a XAMPP 1.7.3 on my localhost (Win XP). I just set up my Eclipse 3.6 PDT with XDebug . It works fine, if I debug a file as a "PHP script", but when it comes to debugging it as a "PHP web page", XDebug ignores the breakpoints completely. Only a manually inserted xdebug_break() inside the code stops the debugger. This isn't very useful, if you want to use conditions with Eclipse's breakpoints. Here my config: php.ini: zend_extension = "C:\xampp\php\ext\php

PHP OpenSSL - openssl_private_encrypt crashes webpage

穿精又带淫゛_ 提交于 2019-12-08 03:39:56
问题 This has been reported at bugs.php.net. If I replace libeay32.dll and ssleay32.dll in xampp/apache/bin with the same files in xampp/php/ then it works but I CANNOT use SSL I need to use SSL, has anyone been able to resolve this? I am using OpenSSL library in PHP (5.4.7) on XAMPP (1.8.1) for encryption, decryption, etc. I am also using SSL on localhost. I am able to create the private-public key pair using openssl_pkey_new() method and generate the certificate as well. But when I try to access

how do you uninstall an xampp installation that refuses to uninstall?

依然范特西╮ 提交于 2019-12-08 03:09:41
问题 I downloaded xampp 1.7.3 (32) on windows 7 (64) in the programs(86) folder. both MySql and Apache refuse to run, they start and then instantly turn of. All ports are free. So I decide to uninstall however, when i run the uninstaller I receive the following error "Input Error: Can not find script file "C:\Program Files (x86)\xampp\uninst.temp\xampp_uninstall.vbs" XAMPP uninstall not OK Why is there spaces in the above line and does this matter "C:\Program Files (x86)" ? Can somebody please

php :Fatal error: Call to undefined function sqlsrv_connect()

本小妞迷上赌 提交于 2019-12-08 01:19:50
问题 I Have a big problem And I Wish get Solved for this problem here I Try to Connect to Sql Server 2008 R2 using: php 5.6.11 Xampp 5.6.3 Sql Server 2008 r2 Using sql server drivers for PHP (php_pdo_sqlsrv_56_ts.dl & php_sqlsrv_56_ts.dll) and my code to try connection is : $serverName = "Mahmoud-HP\SQL2008R2"; //serverName\instanceName $connectionInfo = array( "Database"=>"HR16", "UID"=>"Mahmoud", "PWD"=>"123" , "MultipleActiveResultSets" => false); $conn = sqlsrv_connect( $serverName,

Xampp localhost not working

此生再无相见时 提交于 2019-12-08 01:17:21
问题 I am running laravel on xampp and I have problem with accessing pages, http://localhost/laravel/public/ I get a login page which is good however when I go for example http://localhost/laravel/public/smokeyard I get 404 error with The requested URL was not found on this server. If you entered the URL manually please check your spelling and try again. Route: Route::get('smokeyard', 'GuzzleController@smokeyard'); Controller: function smokeyard(){ return view('smokeyard'); } All my views are