xampp

Tomcat server (from XAMPP package) cannot be started from Eclipse

I am using Windows 7. I installed Eclipse and updated to include WPT. HTTP Server and Tomcat are installed with XAMPP Package. They run properly and they can be accessed via localhost. But I found that tomcat server cannot be started. Eclipse always reports failed to start. at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:...

php lampp permissions of fopen function

hi i'm programming php using: netbeans 6.8 lampp for ubuntu (xampp) apache which came with xampp $fh = fopen("testfile2.txt", 'w') or die("Failed to create file"); $text ="hello man cool good"; fwrite($fh, $text) or die("Could not write to file"); fclose($fh); echo "File 'testfile.txt' written successfully"; //i...

XDebug not working with xampp

I'm using (or trying to anyway) use the bundled XDebug with XAMPP 1.7.2. It comes bundled with Apache 2.2.12, PHP 5.3.0, XDebug 2.0.5 and Zend (not sure on version) This is a totally fresh install of XAMPP, the only thing I've added to php.ini (at xampp/php/php.ini) is: zend_extension_ts = "C:\xampp\php\extensions\php_xdebug.dll" [xdeb...

"No such file or directory" SQLSTATE error using PHPUnit with XAMPP & Zend Framework

The error I'm getting is below. Zend_Db_Adapter_Exception: SQLSTATE[HY000] [2002] No such file or directory I've tried setting the xampp php to be the php in my PATH, hoping that it's a configuration file, but I had no luck with that. I'm not really sure why else it would say no such file or directory. Does anyone have any ideas? Up...

configuring local W3C validator on xampp - windows xp sp3

Hi I have no experience on perl. I am trying to configure the W3C validator on my localhost (win32). I have already followed all the instructions given by W3C @http://validator.w3.org/docs/install_win.html, but I am getting the following error: Can't locate loadable object for module Encode::HanExtra in @INC (@INC contains: C:/xampp/...

Sending emails with CodeIgniter in a local XAMPP server

Hi, I'm trying to send emails through localhost (XAMPP Windows 1.7.3 installation), but I've been trying for hours with no success. This is the last code I tried: $config = Array( 'protocol' => 'smtp', 'smtp_host' => 'ssl://smtp.gmail.com', 'smtp_port' => 465, 'smtp_user' => '[email protected]', ...

Hosting a website on a PC using apache(Xampp)

This is what I learned by doing some searching. These things were taken from many places. Please point out any missing things. (I have not yet tried this out, just want to clarify what I'm going to do) For hosting I need to have a static IP. But my ISP provide dynamic IPs. So I used DynDNS (as Cuga adviced in this). I belive this will r...

XAMPP won't allow me to send email.

So, I'm trying to get my html form hosted on the company I work for's intranet to be submitted to several email addresses using PHP. I am testing the code using XAMPP, and everytime I try to submit, I get this error: *Warning: mail() [function.mail]: Failed to connect to mailserver at "172.23.38.10" port 25, verify your "SMTP" and "smtp...

configur mecury in xampp to send mail

I am debugging a mail feature, and need Mercury to send mail from xampp, how do i do that? Are there alternatives? ...

Is there any major difference between XAMPP and LAMP

Recently I sent my CV to a small company, which required a web developer, but condition was, that the one should know how to work with LAMP. So I took part in contest, but today I started to think are those packages as similar as I think. So could anyone tell me, are they? I am using: XAMPP (Basispaket) version 1.7.1 on Windows 7 ...

Apache AllowEncodedSlashes Not Working

Hi, I'm running Apache(XAMPP package) and i'm trying to allow forward slashes in the URI to be able to retrieve parameters sent with encodeURIComponent, so i added the directive AllowEncodedSlashes On NameVirtualHost *:80 ... in httpd-vhosts.conf. however i'm still getting 404 error, am i missing something? Regards. Yehia A.Salam ...

run cron on xampp

I know how to run a php script via cron of a cpanel of a live website, but I also want to learn how to do this cron thing via xampp on my localhost ?, anyone who can actually tell me the exact steps how to do it ?..my OS is win 7 ...

encodeURIComponent + Apache AllowEncodedSlashes

Hi, I'm running Apache(XAMPP package) and i'm trying to allow forward slashes in the URI to be able to retrieve parameters sent with encodeURIComponent, so i added the directive AllowEncodedSlashes On NameVirtualHost *:80 ... in httpd-vhosts.conf. however i'm still getting 404 error, am i missing something? Regards. Yehia A.Salam ...

Using ZendStudio with XAMPP

I had installed XAMPP, as a matter of convenience, since it installs php, apache (which is what I need) and, in addition, it installs other things like MySQL, but I'm not going to use now. In XAMPP, I enabled the mssql module (editing the php.ini), to use the connection to Microsoft SQL, and everything works fine. Now, I'm wanting to d...

Cannot access XAMPP (1.7.3) from my local network

Hi I am running XAMPP 1.7.3 on windows 7. My problem is that when I try to access my server (localhost) from another computer, the server does not respond. For example, [on my computer] when I type in 'http://localhost', my pages come up. However, when I try accessing 'http://192.168.0.102' from my computer, nothing happens. When I type...

php.ini has no effect? (XAMPP)

I can't seem to increase the max_execution_time variable in Apache. I found php.ini in xampp/php and increased the variable, (tried both -1 to negate, and 30000000000000, neither changed the time from 60). phpinfo() returns Configuration File (php.ini) Path no value. I tried copying php.ini into xampp/apache/bin to no avail. I tried ap...

XAMMP - How do turn on --with-imap-ssl

Hi, How do I turn on --with-imap-ssl in XAMMP? I'm on Mac. Under my imap setting I have this IMAP c-Client Version 2004 However, I think I also need to have the following option, which is not currently showing SSL Support enabled Thanks, Tee ...

XAMPP phpmyadmin mysql user manual?

This is actually 2 questions... Background: After using the command line in MySQL for my database introductory classes (very enjoyable), I had been required to use a DBA tool and downloaded XAMPP as identified below. The transition to a GUI would be ok if I understood the interface for creating database tables... Q1.I have searched the ...

Guide to install xampp with zope-plone on the same linux machine?

Is there a good step by step online guide to install xampp (apache server,mysql server) together with zope-plone on the same linux machine and make it play nicely or do I have to go through their confusing documentations? Or how can I install this configuration in the best way? I can install and use both seperately but in tandem is an is...

Problem with PHP session in Xampp

At it's simplest, if file_1.php contains <?php session_start(); $_SESSION["test_message"] = "Hello, world"; header("Location: http://localhost/file_2.php"); ?> and file_2.php contains <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"&gt; <html> <head> </head> <body> <?php if (!...