Tagged Questions
xajax PHP Class Library provides a means to develop asynchronous Ajax applications with PHP
4
votes
6answers
3k views
How can I write a real time chat using XAJAX and PHP?
How can I write a real time chat using XAJAX and PHP?
In other words, is there a way to send xajax responses from the server to multiple clients?
Or is the only possibility to check for new messages ...
2
votes
1answer
122 views
xajax expanding list query
As you'll see, I'm a newbie to all this ajax stuff but I can do a bit of php and so I plumped for xajax to take care of the javascript for me.
I've got an array with items listed in different ...
1
vote
0answers
61 views
Interacting with a form (Xajax)
I would like to create a web application that allows users to interact with a web form. All I want to create is a web application to allow people to automate some work.
The web page that I'm trying ...
1
vote
1answer
105 views
How can I integrate xajax with CakePHP?
Did anybody successfully integrate xajax with CakePHP? I've found 'Cakex plugin', but I'd like to hear some options.
1
vote
1answer
1k views
exclude files from rewrite rule in .htaccess
I'm modifying an existing website that uses a fairly complex .htaccess file to implement a custom MVC type framework so all urls are redirected to index.php?[some parameters] or a 404 page. I'd like ...
1
vote
2answers
206 views
DB generated list not working when created using jquery
I have a simple form that has a list (dropdown list generated from a DB), when a user makes a selection, the selection is printed on the screen. The problem I'm having is that if I use jquery to call ...
0
votes
3answers
74 views
PHP strange error messages
I have created a website 3 month ago. I uploaded it to internet and it worked(it still works there). Now I installed it in my local computer and trying to access it. However it prints the following ...
0
votes
4answers
90 views
Loading server information from multiple servers asynchronously
I have coded a php script that is used to check the status of several different servers, determine if they are online, and then output their version information as well as give the option to update ...
0
votes
1answer
43 views
data post via xajax php library
i want to post data via xajax as normal ajax..
as a normal ajax;
xmlhttp.open("POST","ajax_info.php",true);
xmlhttp.send();
I would post the data file in the code above ajax_info.php
How do I ...
0
votes
1answer
62 views
Accessing a Local Variable through Xajax and Classes in PHP
I have a Class
<?php
class cms{
private $dataset;
private $columns;
private $configs;
public function __construct(){
global $frw, $dbg;
$this->configs ...
0
votes
1answer
101 views
Using XAJAX and WordPress
I'm trying to use XAJAX % WordPress together. I've created and tested my XAJAX app and everything works fine. But when I include the XAJAX core into my WordPress theme I get this error:
Output has ...
0
votes
1answer
281 views
Auto refresh using xajax (and MooTools?)
For the purpose of testing (and making this question simpler) I have been using xajax to output a random number into a DIV on the page.
$output=rand(20,40);
...
0
votes
2answers
179 views
Updating innerHTML with HTML from a php function? (using xajax)
I'm successfully updating the innerHTML of a DIV through xajax (when I click a link) but only when I assign HTML in the function itself, not when I call it from a different function.
To explain
// ...
0
votes
2answers
81 views
How to pronounce xajax? [closed]
As Ajax is pronounced "Ay-Jacks", is xajax pronounced "gzay-Jacks" or "ecks-ay-Jacks" or anything else?
Thank you,
0
votes
1answer
209 views
How To Make An AJAX Request In a JS Popup?
I have a problem With a "Special" AJAX Request. I have a Form with several combos ("Select" tag). I'm loading the items for each combo from a MySQL DB, with a Special class designed for me. Each Combo ...
0
votes
1answer
125 views
0
votes
2answers
533 views
xajax and codeigniter - blank page and xajax request URI error
I am unfortunately getting a blank page when trying to run a site locally. There are other people running it locally just fine, so I am wondering if it could be something to do with my LAMP ...
0
votes
2answers
1k views
Firefox 3.6 not displaying content - xajax, jquery, css
I know this question may sound vague, but I have been debugging (PHP and js) our application for a day now and have not found any issues in the data generation.
Our application uses xajax to generate ...
0
votes
1answer
200 views
xajax - bad response when calling a static method
When using XAJAX I have a call to a function that trims a string. this is a simple function and works just as expected.
Now I want to make this function available to the whole system so I have added ...
0
votes
2answers
441 views
Simplify my Jquery xajax like function
Basically I was trying to replicate one of the things that xajax gave me with Jquery -> The ability to define what my response modifies server side without setting anything up client side. Works ...
0
votes
1answer
491 views
Validating forms using XAJAX
I am using jQuery to identify when a user has submitted the form. Then I call, using xajax, a php method to query the database and make sure that the usename and email address are not already in use.
...
0
votes
3answers
3k views
jQuery Dynamic Binding not working IE 7 or 8
I'm working on a selection drop down list. this list adds all the selected elements (done by a user) into a container < DIV > in the form of hidden fields. This selections have a link that gives ...
0
votes
1answer
897 views
How to get the value form a dropdown list using xajax.getFormValues?
I have a form and have several text box, and a dropdown list. I am using the following jquery code to get the values of my form
// JQuery Code
parentFormName = ...
0
votes
3answers
449 views
performance of my application using wampserver
I have developed an application using php, mysql and xajax. I always used to test on a setup of which I had installed all applications seperately (apache, php and mysql) and my application was fast ...
0
votes
2answers
1k views
xajax and select
I have a bit of simple created with XAJAX, which replaces the innner HTML of a select control with some options created by a php script.
This is fine and dandy in Firefox, but it does not work in ...