Has anyone had a successful WAMP installation? [message #2627] |
Tue, 26 October 2010 13:30 |
cheyennemtnman
Messages: 1 Registered: October 2010
|
Junior Member |
|
|
I extracted the zip in my www root for a Wamp server on a Windows Vista Ultimate PC but I am not clear what the next step should be to get this thing rolling... anyone have step by step for a Wamp server installation? Or an installation php for Wamp?
Thank you for your consideration in advance...
|
|
|
Re: Has anyone had a successful WAMP installation? [message #3213 is a reply to message #2627] |
Tue, 18 December 2012 02:34 |
markcarranza
Messages: 14 Registered: December 2012 Location: San Francisco, CA, USA
|
Junior Member |
|
|
Radicore installation on Windows 7 IIS, PHP 5.3
NOTE: this may only work with IIS7 and above, YMMV. Hopefully, nobody uses Vista anymore.
There are two issues I found with Radicore on IIS (Windows 7):
- php_xsl extension is usually not installed in PHP
- Need to use '.user.ini' instead of '.htaccess'
To fix:
1) make sure your php directory has the file ext\php_xsl.dll
- if you did not install it, you can get it from the php install zip file (not the Installer)
2) in [php.ini]
; [uncomment user_ini.filename]
; Name for user-defined php.ini (.htaccess) files. Default is ".user.ini"
user_ini.filename = ".user.ini"
; [add in extensions area]
extension=php_xsl.dll
3) create [.user.ini] in root of your Radicore site, set 'include_path' to the Radicore includes directory. Example:
include_path = ".;C:\clients\xyz\office.xyz.com\website\includes"
4) restart IIS
You should see the XSL extension in phpinfo.php.
NOTE: on one machine, with an older version of PHP 5.3, Radicore still got Fatal Error: XSL functions are not available. (# 256). in errorlog.html. Refreshing phpinfo.php page, the PHP XSL extension area appeared and disappeared on alternating refreshes (!). I reinstalled latest PHP 5.3 using the Installer, included the XSL extension, and the problem went away.
|
|
|
|
|
Re: Has anyone had a successful WAMP installation? [message #3984 is a reply to message #3720] |
Sun, 01 December 2013 10:29 |
jbusciglio
Messages: 4 Registered: November 2013
|
Junior Member |
|
|
yes, installs on wamp just fine. I'll put together a quick step by step for a fresh install. It's pretty much just like installing any other framework tho the table creation is not automated, but really if you are using radicore, you should be hands on with the db anyways.
|
|
|