-2
votes
1answer
25 views

How to make a Citrix Virtual Machine Tracker [closed]

I want to create a windows desktop application/ web app which shows me who is logged in (gives me the name of the local machine logged in to citrix ) to which Virtual machine using Citrix. I want to ...
3
votes
1answer
153 views

MySQL not working when running PHP script from Chef Recipe in Vagrant

I've got a custom virtual machine base box that has PHP, Apache2 and MySQL pre-installed. So I can just boot up the virtual machine using this box and it wont need to install any of the above from ...
5
votes
2answers
40 views

Linked (CSS) and scripts don't update content on my VM with a shared folder document root

I have made a clean install of Apache and PHP on my CentOS6 virtual machine, I have also created a shared folder and use it as my document root. Everything works perfectly, I can access the website, ...
0
votes
2answers
50 views

want 2 local machines to act as a client and server machine

I have a windows virtual machine on my mac. I have apache web server on my mac. My virtual machine uses the same network as my mac so what I want to do is be able to access my mac webservice via my ...
0
votes
0answers
83 views

Backend server does not respond to HTML request

I have set up a backend server to respond to the HTML request sending by my android app. I should have corrected all the bugs in my app however, the server still does not give response to the request, ...
3
votes
2answers
332 views

What is the difference between machine code and opcode?

The question is mostly related to PHP because IMHO opcode is mostly mentioned in PHP context. According to this description, here's a transformation process of php code into opcode: php text -> ...
0
votes
0answers
58 views

Managing files on VMs using PHP

I have multiple Virtual Machines (VMs). One of them is a PHP Server, the others are just normal machines. How can I let the PHP server manage the files. And how can I implement access control to that ...
11
votes
2answers
522 views

how does PHP opcode relate to the actually executed binary code?

test.php as plain text: <?php $x = "a"; echo $x; test.php as opcode: debian:~ php -d vld.active=1 -d vld.execute=0 -f test.php Finding entry points Branch analysis from position: 0 Return ...
3
votes
2answers
348 views

How to safely execute user-submitted PHP code [duplicate]

Possible Duplicate: PHP sandbox/sanitize code passed to create_function I apologize for the very generalized question, but I need some guidance. What is the most ideal way to execute ...
1
vote
2answers
1k views

Seeking virtual machine with Xdebug working for PHP in Netbeans

I have followed many user guides, spent many a long hour, read these questions on S.O How to debug PHP with netbeans and Xdebug How to debug PHP with netbeans and Xdebug in Windows? How do you debug ...
9
votes
4answers
3k views

How to configure MySQL/PHP to use less memory?

I need to use the minimal amount possible of RAM on a VM Server running Ubuntu, using LAMP. Is there known tips for using minimal mem? I already set the MySQL cache/childs but that isn't helping much. ...
0
votes
1answer
218 views

Access PHP website on virtual linux machine from host machine

I have installed Ubuntu Server 10 on a virtual machine (VMWare) and I have set up a LAMP stack. Everything runs fine when I go to "mysitename" in Firefox on the linux virtual machine, but when I try ...
0
votes
2answers
108 views

Php code works on guest os but doesn't work on host os

Can you give me some guide on how to determine whats the problem if the same piece of code works on guest os. And doesn't work on the host os? I've created the project on Windows 7 but now it seems ...
2
votes
1answer
2k views

Debug VM with xDebug and PhpStorm

My work setup is a Windows XP host, running an Ubuntu VM LAMP stack. I am using PhpStorm to edit my code on my host Windows machine. Upon saving files are automatically uploaded to the VM via SFTP. ...
8
votes
5answers
164 views

How does PHP know what type of variables it uses (or does it)?

I haven't done much programing in many languages, but I know in C(++), you have to declare a variable type (int,char,etc). In PHP you, of course, don't have to do that. You can start with $str = ...
1
vote
1answer
1k views

How can I connect to localhost from a virtual machine?

I'm running some virtual machines using VMware workstation on my PC (using win 7), also I'm using a basic WAMP installation. I'm trying to connect to my Win7 Apache server from any of the VMs. I tried ...
2
votes
2answers
530 views

Zend Virtual Machine Advantages

I was trying to understand the working of Zend with the help of this excellent article. Its when I found out that Zend Engine was a Virtual Machine. Now my question is whats the advantage of ...
6
votes
2answers
2k views

Does PHP have a virtual machine like Java?

Does PHP have a virtual machine like Java?
1
vote
3answers
85 views

Running a website from an encrypted partition

I am looking at the possibility of running a PHP-based website (built in symfony) from an encrypted partition on a LAMP server. The reason for this is because a client would have access to the server ...
6
votes
11answers
13k views

Easiest way to create a virtual LAMP machine on Windows XP?

I need to set up a test environment on my XPSP3 machine that runs Apache, MySQL, and PHP. My original test environment was an old box that ran those three under Win2k. That box died. Running on ...