-
Posts
1,516 -
Joined
-
Last visited
Everything posted by Ric
-
Hi thanks for the update. Unitary was a minor bug, had to fix all language packs and other plugins so as not to replicate it. However I would still like to see code that fails on 5.5-Nano because 5.5a-Nano is a parallel version which uses the PHP 5.2 branch while 5.5-Nano uses PHP 5.3 branch Hence I believe the real problem has not been resolved. All the best Ric
-
UniServer 5.5a and 4.5a Released 1] Uniform Server version 5.5a-Nano released. Changes: - Parallel version of 5.5 difference is PHP and ssl - Updated eAccelerator 0.9.6-rc1 + Control panel - Downgraded OpenSSL to 0.9.8k - PHP downgraded to 5.2.12; - UniTray bug fix edit my.cnf changed to my.ini General Note: This release was initially going to be a PHP upgrade for 5.2-Nano However doing so would have lost all advantages that 5.5 now incorporates. Hence 5.5-Nano was downgraded to provide a parallel version with PHP downgraded. This approach allows you to test your code on PHP version 5.2.12 and have the capability of installing all 5.5-Nano plugins. 2] Uniform Server version 4.5a-Mona released. Changes: - Parallel version of 4.5 difference is PHP and ssl - Updated eAccelerator 0.9.6-rc1 + Control panel - Downgraded OpenSSL to 0.9.8k - PHP downgraded to 5.2.12; Mona series remains popular hence the above release. Although Olajide has not publicly announced it, my tenure of US will end this New Year. I have agreed to maintain both Mona and Nano series, I may contribute to Uniform Server V6 time permitting. Merry Christmas All the best Ric
-
Looks like you have found a bug in UniTray To resolve this edit file UniServer\unicon\tray_menu\UniTray1.ini Search for my.cnf replace with my.ini The MySQL configuration was been renamed to my.ini However there should be no need to edit the MySQL configuration file. Check your “host” file contains a line 127.0.0.1 localhost See Wiki for details If that fails to resolve the problem can you post an example of code that fails to run on 5.5-Nano All the best Ric
-
After publishing application plugins, I thought it appropriate to add another section to the installation guides. MySQL Security If you are intending to put the application on line, make sure to read any security advice provided with the application and check providers web site. More importantly the general installation guides are extreme security risk if they are put online as is. It's imperative you secure the MySQL server before putting your servers online. Hence please read the above page MySQL Security and restrict privileges to any user that has connection access to your server. All the best Ric
-
I assume you were following the instructions on this page Perhaps it’s worth trying the pre-configured Drupal plugin You did not state the version of Drupal you are trying to install the above plugin uses Drupal 6.14 All the bst Ric
-
Well I forgot to announce the publication of this plugin UniServer_USB The plugin integrates portable Firefox into Uniform Server 5.5-Nano’s architecture. This allows Uniform Server to be run independently of the host PC. To achieve this it uses Portable Firefox and a PAC file. (PAC file prevents issues with Vista and W7 "hosts" file). What all that stuff means is you can create a virtual host with Apanel and use your real domain name for developing your site. You can move UniSever to another location and portable Firefox will follow hence it’s a real portable solution independent of host PC and host browser. Download link All the best Ric
-
New French translation pack released version 1.1 Changes: Release notes translated into French Plugin updated to include French translation for eAccelerator control panel. Download link Many thanks Kris excellent work. All the best Ric
-
doesn't on vista home premium sp1 (tur)
Ric replied to Captain Black's topic in Uniform Server - Windows
I think the issue is User Account Controls (UAC) You must be logged in as Admin Run batch files 5_Start_Services.bat and 6_Stop_Services.bat using the following method: right-click and select "Run as administrator" If that fails temporarily disable User Account Control Disable UAC on Windows Vista a) Open up Control Panel, type in “UAC” into the search box. You will see a link for “Turn User Account Control (UAC) on or off” click this link: c) A new screen opens uncheck the box for “Use User Account Control (UAC)”, click the OK button. d) You must restart Windows. Disable UAC on Windows 7 a) Type UAC into the start menu or Control Panel search box. Drag the slider up or down, defines how often you want to be alerted. c) Drag it all the way down to the bottom, this disables UAC entirely. Run service batch files again does that resolve the problem? All the best Ric -
Please note: I have republished 5.5-Nano (on 2009-12-13) With the exception of folder UniServer\alternative_control content and initial server path settings the two releases are identical. These changes are so small and do not justify a new version. Reason for this update; if servers fail to run above changes help aid in the diagnostic process. For testing and diagnostics: Create a new folder C:\Nano_5_5 Extract Uniform Server to it All paths are initially referenced to this folder allowing servers to be directly run. Hence tests in folder UniServer\a_diagnostic can be run without first running server_status.bat It may seem a trivial change however when trying to find what server component is failing the above changes allow PHP to be eliminated from the equation. All the best Ric
-
doesn't on vista home premium sp1 (tur)
Ric replied to Captain Black's topic in Uniform Server - Windows
OK First download, a new copy of 5.5-nano (publish date 2009-12-13) Create a new folder C:\Nano_5_5 Extract Uniform Server to this folder Can you work through tests in folder UniServer\a_diagnostic They may throw some light on the problem you are having All the best Ric -
To get you started you require a page to process your form data. Create a new page named test.php this should be in the same location as quote.html Edit quote.html and locate this line: You currently have a blank action. This should point to the page that will do the processing. Hence change the line to: Currently you have a large number of form tags I assume you only want to submit a single form hence remove all form tags below the above. Keep the last form tag as shown below Your form-processing page will have the following format: <?php if (isset($_POST['first_name'])){ $first_name = $_POST['first_name']; // Validate print $first_name; } else{ // what to do if field is not set } // Similar for other inputs // If no code injection save to MySQL // Send something back to user ?> Like I said something to get you started. All the best Ric
-
Hi Couch Potatoe, Ace post I fully understand and agree I was just a little busy to have replied to your original post. “I guess what I'm looking for are some tweaks to aconfig.php and vhost.php to get the functionality to update proxy.pac in nano.” Yep! In the right direction they need a little bit of bashing. “I did have a go myself using the files from UniServer_USB_1.2 as a starting point and got about 50% of the way there before I got lost in the PHP. (HTML, CSS and Javascript I know pretty well - PHP, I'm still fighting with!) wacko.gif” That my friend is great news at least you had a go. “The rest of the setup (FirefoxPortable setup autorunning nano etc) is a walk in the park...” FirefoxPortable is an excellent bit of kit “ I downloaded version FirefoxPortable_3.5.5_English.paf.exe. Hey meets your requirements. “I must admit I surprised the proxy.pac solution isn't used more widely, taking away the need to edit the hosts file to make virtual hosting work on "any" machine is positively brilliant!” OK you convinced me. UniServer USB for V5 has just been published. Download All the best Ric
-
eAcellerator binaries Open Source is all about a community that wishes to push everyone forward in a common cause. I have attempted to express my thanks on a German site! Hope I pushed all the right buttons. The eAcellerator binaries were obtained from http://www.waldbauer.com/vb/showthread.php?t=2148. Many thanks to! I am not sure who provides these (by name) however they have my respect and I wish them a Merry Christmas. All the best Ric
-
Looks like a ZenCart issue! What version of Uniform Server are you using? I will assume the latest version running PHP 5.3.* If this is the case is ZenCart PHP 5.3 compliant All the best Ric
-
doesn't on vista home premium sp1 (tur)
Ric replied to Captain Black's topic in Uniform Server - Windows
Uniform Server 5.5-Nano has just been released. All the best Ric -
1] Uniform Server version 5.5-Nano released. - Updated eAccelerator 0.9.6-rc1 + Control panel - Updated OpenSSL to 0.9.8L - phpMyAdmin updated to 3.2.4; - Updated msmtp to 1.4.19 - Updated UniTray read ports from config files - Updated language files to match UniTray (V55-series) - Bug fix MySQL multi-server port - Minor bug fixes; Download Wiki Support 2] New Language packs (Plugins) released These match UniTray's new configuration: Language - Translator English - Template French - Kris German - Google shame that! PortugueseBR - Gopala Russian - Andrey Download 3] Portable FileZilla Server (Plugin) released Added Russian UniTray - Andrey Upgraded all UniTray ini files Download Wiki Support 4] New Plugin released Uniform Server Portable CA (Certificate Authority) Download Wiki Support 5] New Application Plugins released These are pre-configured applications just extract and run. Note: These are not intended for production only to provide a quick method of installation allowing you to explore the application. Application plugins: V55_Drupal V55_Joomla V55_MediaWiki V55_Moodle V55_WordPress V55_Xoops Download Wiki Support This release was made possible thanks to our Beta Team Many thanks go to our translators for the language packs. A special thanks to Stu for sticking with W7 beta testing. As always 5.5 is ready to run straight out of the box. Merry Christmas Regards, The Uniform Server Development Team
-
Beta Closed All the best Ric
-
I don’t do books! I don’t do best practices. However like you I do frustration in this context. Trouble is what is recommended is not what’s is implemented. It’s the king’s new cloths. Reverse polish notation was the way forward. FORTRAN and lisp were best practices. Throw in a bit of Algol you have it made. My real point! Broaden your Goggle search and look for professional programmers and the sites and forums they occupy. I know there are professional programmers on this forum that I hope will pick up this challenge and answer your questions. All the best Ric
-
Well! All versions of Uniform Server Nano will run from a USB stick. Just copy folder UniServer and run. Perhaps there was something specific you require. We are open to ideas. All the best Ric
-
Uniform Server 4.5-Mona released Download: http://sourceforge.net/projects/miniserver...erver/4.5-Mona/ All the best Ric
-
Beta closed. Uniform Server 4.5-Mona released Download: http://sourceforge.net/projects/miniserver...erver/4.5-Mona/ All the best Ric
-
Hi Stu, I have PM’ed two test files. Give these a try; I will be interested in any feedback. No its not a closed shop these will be included in beta3 Not sure if I will have time to publish this weekend. Hence the quick post to Stu. All the best Ric
-
On Uniform Server 5.4 all three dll’s exist This extension php_pdo.dll is compiled into PHP5.3.1 These two extensions php_mysqli.dll and php_pdo_mysql.dll are located in folder: UniServer\usr\local\php\extensions By default php_pdo_mysql.dll is not enabled To enable this edit file: UniServer\usr\local\php\php.ini Locate this line: ;extension=php_pdo_mysql.dll Remove the semicolon as shown below extension=php_pdo_mysql.dll Note: If you will be switching between production and development enable the above in these two files. UniServer\usr\local\php\php.ini_delvelopment_nano UniServer\usr\local\php\php.ini_production_nano All the best Ric
-
I am not sure if I understand the problem! Looks like you are trying to intercept data from another site! Perhaps a little more detail would be useful and other members could help. All the best Ric
-
Hi Ollie222 Ace result it looks like a configuration file issue. Edit file: UniServer\home\admin\www\phpMyAdmin\config.inc.php At the top of this file delete this section its not required: /** * Sets the php error reporting - Please do not change this line! */ if (!isset($old_error_reporting)) { error_reporting(E_ALL); @ini_set('display_errors', '1'); } Also delete this line: #$cfg['PmaAbsoluteUri'] = $_SERVER['HTTP_HOST'] . '/apanel/phpMyAdmin/'; The # should have been // Save the file and see if it works. Note close server and browser first and restart. If that fails! Delete the following line: $cfg['PmaAbsoluteUri'] = (!empty($HTTPS) ? 'https' : 'http') . '://' . $_SERVER['SERVER_NAME'] . (!empty($_SERVER['SERVER_PORT']) ? ':' . $_SERVER['SERVER_PORT'] : '') . substr($_SERVER['SCRIPT_NAME'], 0, strrpos($_SERVER['SCRIPT_NAME'], '/')+1); Restart servers and browser and try again. All the best Ric