Has wamp server special setting for xajax - wampserver

I change my wamp server.I understand that my old xajax project does not work. I want to know that Has xajax special setting on wamp server?

WAMPServer is basically Apache/PHP/MySQL so only whatever is required to run on Apache/PHP.

The question is how old is your xajax project and what version of xajax did you use, 0.6 ? In former times I have had the same problem as I changed the php Version. If you use the old 0.5 Version of xajax upgrade on 0.6. And debug your code with firebug and take a look at the php warnings and errors. The problems lie in the use of xajax.

Related

Getting suddenly 403(.14) HTTP error after deplyoment ASP.NET MVC application over TeamCity

A few days ago I had to update our .NET Framework 4.8 web application. First it could not be builded because of some TeamCity error on the newest version, link here. After that it could be builded but since then it showed us a custom errorpage after deployment -> 403 - Forbidden. I just changed a string ("exec X" to "exec Y") so we can access a better and faster SQL procedure.
Removing the tiny piece of argument it suddenly succeded in building anyways but the HTTP error still was there.
Neither IIS, Server, Framework Version etc. was updated, only TeamCity and that small code and argument change.
Reverting the changes to the version which had been working fine did nothing.
After a while I found out that it is a 403.14 error and static files can be accessed, but Microsofts help page didn't help a bit, it just showed the directory -> look here.
After that, I decided to shutdown and backup TeamCity and install an older version of it -> Nope.
Searching google and stackoverflow for similiar problems I stumbled upon to this post especially where I tried every single answer. Before I answer further questions on about what I had tried, please read it.
Since nothing helped so far I decided to try something "dumb" and publish the project to the folder and copy the data manually to the server and voi la! It worked! But I don't know why
and also TeamCity still can't do it anymore.
No changes were done to AppPool or other settings, please keep that in mind.
Here are my build settings from teamcity:
Please don't mind missing build steps, since those are either uninteresting or disalbed because some of them I had created to test the failing deployment on our test system.
And also, when running it locally or copying published project works fine..
Problem was with the antivirus blocking some processes, so some Asax_global.dll was missing.

Paros is not running

I installed Paros. At first, it worked fine. However, from the second start, Paros will start and automatically turn off after a few seconds. I also tried to reinstall but the installer will automatically turn off. Why is that?
Window 10 64bit
I install 32bit java.
Any particular reason for using Paros? Its not been updated for over 10 years.
You'll be much better off using OWASP ZAP, which was forked from Paros in 2010, is free, open source and is very actively maintained: https://github.com/zaproxy/zaproxy/

ZConnection does not work with FB 2.1

)
I used to use Firebird 1.5.
It works great but I need to make an incremental backup so it looks to me that I need to updgrade FB to at least 2.1
This is what I did, I un-installed 1.5 and installed 2.1
Flamerobin works fine.
In my Delphi 7 application I use ZConnection version 6.6.6-stable. It worked fine with Protocol set to firebird-1.5 but with firebird-2.1 it crashes with Access violation at address 000000000. Read of address 00000000.
I do not want to update ZEOS libs because I am afraid that I will break something in the process.
I need incremental backup (so it seems to me that I need FB at least 2.1). I do not want FB 2.5 because my ZConnection highest protocol is only 2.1 (and it does not seem to be working).
Any ideas, help? What is the best solution here?
Thank you! :-)

HipHop for PHP, deploying apps

After Googling, I found a lot of HipHop documentation, but plenty was posted between 2011 and 2013.
Earlier this year was launched a new version of HipHop that even supports Drupal and includes a lot of improvements...
I've always used the Zend Guard to deploy my commercial applications, but now I started to consider seriously the use of HipHop in production, but here comes the question:
We can run an application using only the bytecode HHBC (Without .php source code)?
Follows the reference of my research
https://github.com/facebook/hhvm/wiki/FAQ
The question may seem very obvious, but it is not so easy to find this answer in the project documentation.
Thanks in advance!
Well, yes and no.
HHVM has a so-called RepoAuthoritative mode in which the HHVM will no longer check the existence of the PHP files or how up-to-date they are; instead, it will retrieve the HHBC directly from its cache.
Theoretically, you can follow these steps:
pre-generate the HHBC for all your PHP files and insert that HHBC in HHVM's cache. This is the so-called pre-analysis phase (if you ever see it in HHVM documentation, this is what they mean by it)
turn on RepoAuthoritative mode (it's just 1 line in HHVM's config)
delete your PHP code
This way your PHP applications will run just fine without the source code being present. Doing a server restart won't change this since HHVM's bytecode cache lives on disk (it's implemented as an SQLite database).
However, it will be kind of a headache if you:
want to change something in your code. You would have to copy your code, make the change and repeat the pre-analysis phase.
want to upgrade HHVM to a newer version. HHVM uses its build ID as part of the cache key so, if you upgrade it, the bytecode cache becomes unreachable and, since you'll be running in RepoAuthoritative mode, your application will be reduced to a bunch of HTTP 404 errors. To fix this, you would have to repeat the pre-analysis phase as well.
Bottom line: no upside, big downside. There's just no point in doing it.
PS: I hope I answered your question. It's also possible that I misunderstood what you asked; if that's the case, please let me know in a comment.

New RadRails project in Eclipse with SQL Server

I'm trying to get into Rails development and am using Aptana Studio (RadRails) as a plugin to Eclipse (WinXP). When I create a new project with the options shown here
NewRailsProject http://www.sqeq.com/image/NewRailsProject.jpg
things go south. I get this error right away:
alt text http://www.sqeq.com/image/NewRailsProject2.jpg
Mongrel's set as the default server and it's complaining about starting because of a missing log file. Sure enough, nearly the entire project skeleton is non-existent.
Going through the same exercise with another dbms selected in the New Project screen worked just fine and I have been able to hack through things to get my project switched over from MySQL to SQL Server by installing the MS jdbc driver and getting the ADO.rb file copied into my Ruby install ala this post.
Is there a trick to getting RadRails to do this without the aforementioned workarounds?
I have to say, while this is not a specific response to your question, that I was not impressed with radrails when I last looked at it. It was built on an old version of eclipse and was pretty painful to use.
You might look around stackoverflow for some other ide choices: https://stackoverflow.com/search?q=ide+rails.

Resources