-
Posts
1,516 -
Joined
-
Last visited
Everything posted by Ric
-
My initial thought was you have not placed your file allinone.php in folder UniServer\udrive\www Note: www is the server root folder and this is what you access by typing in http://localhost/ A blank page after typing http://localhost/allinone.php indicates there is no displayable content. If the page were not in this folder it would have displayed Not Found Add the following to your page: phpinfo(); Should list PHP information All the best Ric
-
Firefox 3.0.10 released, updated UniServer_USB plugin accordingly. Reagrds, The Uniform Server Development Team
-
You should type http://localhost/allinone.php See Wiki Quick PHP All the best Ric
-
I commented the offending line and was able to get it up and running. It looks quite impressive, I assume the images are not copyright? I have not performed any exhaustive tests just superficial ones. There are several minor bugs, no big deal its still in development. One potential security issue I think easily resolved. I noticed you are using php-win.exe consider removing this. Have you tested this when the servers are run as a service? I think it would be a good idea (reason for removing php-win.exe) I will wait for the next release and give it a more thorough test. All the best Ric
-
OK I followed your instructions and failed with this error: Ran: http://localhost/apanel/start_patcher_BADmin.php creating backup zip...please wait. Fatal error: Call to a member function addEmptyDir() on a non-object in Z:\home\admin\www\start_patcher_BADmin.php on line 96 Ran: http://localhost/apanel/ Fatal error: Call to undefined function l() in Z:\home\admin\www\includes\header.php on line 23 Can only assume I have missed something! All the best Ric
-
I liked the look of this and was going to give it a bash. Download site - Site black-background makes it difficult to read! Anyway could not find the appropriate download. What am I looking for to give it a bash? All the best Ric
-
*UNOFFICIAL* AdminPanel_language_upgrade_DLI_(Dynamic_Language_Interface)
Ric replied to BananaAcid's topic in User Made
Download site - Site black-background makes it difficult to read! Anyway. Downloaded - src (v0.0.7 - 25. April 09) RC1 (cgi translation support working).7z Extracted files: Extracted clean copy of US Overlaid matching folders – Note: Self-extraction archive would be easier - Just that I am lazy. Started servers and Apanel - following errors and warnings displayed: Taken from initial displayed main page (similar messages for left menu) Warning: include(Z:/home/admin/www/includes/lang/.php) [function.include]: failed to open stream: No such file or directory in Z:\home\admin\www\start.php on line 13 Warning: include() [function.include]: Failed opening 'Z:/home/admin/www/includes/lang/.php' for inclusion (include_path='.;/usr/local/PHP/includes;/usr/local/PHP/pear;/home/admin/www/plugins/pear/PEAR') in Z:\home\admin\www\start.php on line 13 Warning: Cannot modify header information - headers already sent by (output started at Z:\home\admin\www\start.php:13) in Z:\home\admin\www\includes\header.php on line 14 Log files show (excerpt): [sat Apr 25 19:22:37 2009] [error] [client 127.0.0.1] PHP Warning: include(Z:/home/admin/www/includes/lang/.php) [function.include]: failed to open stream: No such file or directory in Z:\\home\\admin\\www\\navigation.php on line 13, referer: http://localhost/apanel/ [sat Apr 25 19:22:37 2009] [error] [client 127.0.0.1] PHP Warning: include() [function.include]: Failed opening 'Z:/home/admin/www/includes/lang/.php' for inclusion (include_path='.;/usr/local/PHP/includes;/usr/local/PHP/pear;/home/admin/www/plugins/pear/PEAR') in Z:\\home\\admin\\www\\navigation.php on line 13, referer: http://localhost/apanel/ Languages (Left menu): Clicked English link: Apanel restored, above warnings and errors no longer displayed. Stopped servers - cleaned browser cache - restarted servers and Apanel - Above warning and errors not reproducible (Hence problem is an initial start issue on clean installs). However when tested these links failed: German (Germany) French (France) Hungarian Swedish - with the above warnings Running in English mode does not appear to break Apanel. I will wait for the next release before doing further tests. All the best Ric -
You may be interested in this Wiki write-up! It covers Apache’s basic authentication, viable over the Internet when secured using SSL. The techniques shown eliminate the need for additional programming and remove the requirement to have mod-rewrite enabled. A full-blown secure server is not required! Double logins eliminated. All the best Ric
-
The following plugins have been released: UniServer_CA UniServer CA is both a plugin and a portable certificate authority (CA) It allows you to sign certificates (server and personal) Intended for Personal Servers and Intranet use. Do not use for eCommerce sites. Note: Mona’s ssl.conf file has support for CA and personal certificates in the form of a template (commented lines). Sourceforge download Wiki Support UniTray_2 Adds a tray menu control to UniServer-Mona Supports all three installation modes basic, disk-root and run as service. Supports multi-server installations (requires a single file name change). Sourceforge download Wiki Support UniServer_AWStats AWStats is a free powerful and full-featured tool that generates advanced server statistics, graphically. Sourceforge download Wiki Support UniServer_Zend_Optimizer Some application encode PHP scripts using Zend Guard to run these scripts on Uniform Server requires the installation of Zend Optimizer. This plugin provides a quick way to install Zend Optimizer on Uniform Server Mona. Sourceforge download Wiki Support Authentication Not a plugin but a write-up on the Wiki. It covers Apache’s basic authentication, viable over the Internet when secured using SSL. The techniques shown eliminate the need for additional programming and remove the requirement to have mod-rewrite enabled. A full-blown secure server is not required! Double logins eliminated. Wiki - Basic Authentication Reagrds, The Uniform Server Development Team
-
Yep I gave the wrong file name for this: Note 3: Make sure these four lines in UniServer\udrive\www\.htpasswd are commented out as shown: Should have been: Note 3: Make sure these four lines in UniServer\udrive\www\.htaccess are commented out as shown: The other changes you made look OK (works because you can login correctly locally) What’s interesting is this Changes from http://fred.com to http://123.45.67.89! It looks as if Apache is seeing two different domains hence the double login. This generally is self-inflicted for example http://fred.com/gallery gets redirected to http://fred.com/gallery/ because the last forward slash is added the redirection forces another security check (browser login). 1] Try using http://fred.com/gallery/ add the last forward slash to see if it resolves the problem. 2] I have seen UseCanonicalName on causing some strange problems I think in all versions of US this is off by default hence not an issue. 3] ServerName could be the problem! Edit: UniServer\udrive\usr\local\apache2\conf\httpd.conf Locate this at the bottom of the file: ServerName localhost:80 DocumentRoot /www Add this ServerName fred.com DocumentRoot /www If you are using www.fred.com use that instead of fred.com All the best Ric
-
I agree this looks strange! Have you ever installed another complete WAMP package or individual components? Just wondering if there is some registry dust that may be the cause. All the best Ric
-
Ok Try this: Edit file UniServer\udrive\htpasswd\www\.htpasswd Add your name password pair to the end of this file e.g. root:root me:me123 (Note: Change root:root to something else or just delete it.) Copy .htaccess from www to folder UniServer\udrive\www\gallery Edit the copied file: Delete its content and add these lines: AuthName "Uniform Server - Server Access" AuthType Basic AuthUserFile /htpasswd/www/.htpasswd Require user me Note 1: In both of the files replace me with your user name change me123 with a password you want to use. Note 2: If your name contains spaces enclose it in quotes “me mate” Access the gallery folder using http://localhost/gallery/ or http://your_domain/gallery/ Note 3: Make sure these four lines in UniServer\udrive\www\.htpasswd are commented out as shown: #AuthName "Uniform Server - Server Access" #AuthType Basic #AuthUserFile /htpasswd/www/.htpasswd #Require valid-user I will be interested if that prevents the double login. All the best Ric
-
Without knowing your server configuration it’s difficult to determine the cause of the double login. Where have you located your site, is it in folder UniServer\udrive\www or UniServer\udrive\ssl? What is the content of .htaccess file (folder where you located the site). At each login what does the browser address bar display. All the best Ric
-
OK Download 4.1-Mona all you need to do is comment a single line in file UniServer\udrive\usr\local\mysql\my.cnf From this: skip-innodb To This: #skip-innodb It enables innodb you can change the values in this section or add extra lines if required. If you still have problems, any errors messages would be of help to pin point the problem. All the best Ric
-
It’s difficult to find the lowest common denominator. Across all Windows OS’es its either a name change or that utility is removed. Hence the beta team do a grate job (I have had to revert some of my code I thought cleaver and hey! Brilliant but very impractical because its was not practical across all platforms). Try that (taskkill.exe) on XP-Home and well! I think pskill.exe at 44K is a neat little utility written by ipan, it’s stood the test of time and still works across all OS’es. All the best Ric
-
Doenload 4.1-Mona Install as basic Navigate to folder UniServer\udrive\plugins\Services Double click on Run.bat – Wait for it to complete – Installs UniServer as a service. You can delete your basic install if you wish to save space.. Navigate to folder C:\UniServer this is the location of your new server. Check out the Wiki for more information: All the best Ric
-
Ideally it is preferred to install hMailServer using its inbuilt database see step 5]. If you use an external MySQL server for example UniServer MySQL you loose the advantage of Uniform Server’s portability. I had no problems with this: Install: 1] Intro NEXT 2] Select radio button - I accept the agreement - Next 3] Accept default path - Next 4] Selected components (default both) - Next 5] Use built in database engine - Microsoft SQL Compact - Next 6] Default Start menu - Next 7] To continue - Install 8] Enter hmail admin password - e.g. fred123 - Next 9] Check box - Run hmailServer Administrator (default) - Finish Set-up: Note the difference at step 3) 10] Admin - Connect 11] Enter password - e.g. fred123 - OK 12] Welcome > Add domain 13] 3) Enter Domain - Note: Catch all address moved to advance-tab 14] Select Advance-tab enter Catch all address e.g postmaster @ mpg123.no-ip.org 15] Click - Save …. Although there are minor differences you should have no problems with installation. Keeping hMailServer server independent is preferable should the main server go down you do not loose your mail server. All the best Ric
-
I agree with Olajide “this is usually an extension version clash error” I was wondering if you have updated PHP, curl is compiled against the ssl libaries (libeay32.dll and ssleay32.dll). If these matching libraries are not copied to apache2\bin you will receive the above errors. Note: Curl on Mona is enabled by default and works straight out of the box. All the best Ric
-
Plugin has been released: Sourceforge download Wiki Support All the best Ric
-
The following plugins have been released: UniServer_USB Makes Uniform Server 4.1-Mona totally independent of host PC. Adds portable Firefox. Host browser not required. Uses PAC file to resolve Web addresses “hosts” file not required. Sourceforge download Wiki Support UniServer_FileZillFTPd Adds FileZilla Server to 4.1-Mona Supports all three-installation modes. Core portable FileFillaFTPd ca be used independently of UniServer Sourceforge download Wiki Support UniServer_CD Transforms 4.1-Mona into a CD development system. Similar to UniServer_USB uses Portable Firefox+PAC Sourceforge download Wiki Support Reagrds, The Uniform Server Development Team
-
I run two independent Uniform Servers, my Wiki is on a stick, and to prevent clashes I moved this server to different ports using the plugin. This means I can write to the Wiki while running a test server. I have two of those little Uniform Server tray icons; my problem is which one relates to the Wiki and which one is for the test server. OK, I was hacked off when I lost a Wiki page; closed the wrong server before saving the Wiki page. Solution is simple both Apanel and UniController picks-up the version from a file. Changed this to display Wiki and Test for the appropriate server. The file to edit is: Uniform Server\udrive\home\admin\www\includes\.version I see no one had a wet Easter! No feedback on running independent servers on Windows. All the best Ric
-
Well in England it looks like being a wet Easter I suppose you could while your time away with a video game or watch a few DVDs'. There is this alternative! Try the Power example on this page: http://wiki.uniformserver.com/index.php/4....:_Multi-Servers It’s guaranteed not to improve the weather however I do see blood running down walls when you cannot remember the ports you used. All the best Ric PS if its wet I will revisit FileZila FTPd Should it be fine and sunny will be revisiting an extremely nice place by the river, Houghton Mill worth a visit
-
The Wiki is a good place to start! These pages may be of help: Extending Apache’s basic authentication using mod rewrite. 4.0-Mona: Enable SSL All the best Ric
-
A plugin for 4.1 is currently in beta that will do just that. It runs on a USB stick totally independent of the host machine. Yep and you will be able to use real urls. I would say its about two weeks away. All the best Ric
-
You may find these two Wiki pages of use: http://wiki.uniformserver.com/index.php/SlimFTPd:_Clients http://wiki.uniformserver.com/index.php/Fi..._FileZilla_FTPd All the best Ric