Jump to content
The Uniform Server Community

Ric

Developer
  • Posts

    1,516
  • Joined

  • Last visited

Everything posted by Ric

  1. This post may me smile! Had to get to a cyber thing to post. Once in your hand it’s your server. You can do whatever you like. “I manage to configure the tray menu by commenting out some line in unicon/tray_menu/UniTray1.ini so that it only has: - start UniServer - stop Univserver - exit” Just delete the lines if you don’t want them. “Is it safe to do so? any better way?” Yep safe! UniTray is only a user interface it won’t break the servers only access. “But now I discover that they can go to localhost/apanel to get to the admin page “ That really is not an issue, once set up just delete folder UniServer\home\admin\www :angry: Never really considered zapping parts of US away! :angry: Do not delete UniServer\www – Your web sites UniServer\usr – Like that is the servers UniServer\unicon\main – That is the main control Well prune away until it fails. Add bits back to meet your requirements. Have fun; there is no correct or incorrect way! Just tailor to what you want. All the best Ric
  2. Preferably run as stand-alone. Yes msmtp is compactable This is worth a read! http://wiki.uniformserver.com/index.php/SS...ing_hMailServer All the best Ric :angry:
  3. Hi Megan, I could not reproduce the issue. :angry: Only difference between versions is phpMyAdmin 3.3.2 and phpMyAdmin 3.3.3 On the new release zap folder: UniServer\home\admin\www\phpMyAdmin And replace with corresponding folder from 5.6.4-Nano If it resolves the issue I will check the differences, may have missed something. :angry: All the best Ric Hey I am away this weekend hence may be Monday.
  4. UniServer 5.6.6-Nano This release of Uniform Server is a maintenance update. MySQL updated to 5.1.47 Updated PHP info page Download 5.6.6-Nano Regards, The Uniform Server Development Team
  5. Ric

    apache Hang / Freeze

    Something like this will do: <html> <head> <meta http-equiv="refresh" content="2;url=test.php"> <title>Test</title> </head> <body> <?php echo $_SERVER['REQUEST_TIME']; ?> </body> </html> Save as test.php Run http://localhost/test.php All the best Ric
  6. Ric

    apache Hang / Freeze

    I agree nothing in the log shows any problems all looks fine. I was going to suggest using 5.6.5 however there is little difference between 5.6.3 regarding the issue you are seeing. It could be a script issue depends what your application does. The only things I can think of is run a very simple page that periodically requests a refresh from the server and leave it running. If it crashes it’s a server issue if it runs could be a script issue. All the best Ric
  7. Which version of US are you using? All the best Ric
  8. Looks interesting. Especially removing duplication. What OS was this tested on? Which version of US are you using? Just wondering does it fail with multi-servers. For example take your existing UniServer folder and copy it to two test folders Test 1 and Test2 Close any running servers. Run the server in Test1 and run move servers. Close this server. Run the server in Test2 and run move servers twice. Now run server in Test1 With the two running servers are there any issue? I don’t have time to perform the above; will be interested in your results. All the best Ric
  9. Ric

    apache Hang / Freeze

    Check Apache log to see if it provides a clue: UniServer\usr\local\apache2\logs All the best Ric
  10. Any problems on 7 have been resolved! Check the Wiki page: http://wiki.uniformserver.com/index.php/5....o:_Known_Issues All the best Ric
  11. Yep! Excellent feature, tested on 5 Series will add with minor changes (menu lower case) All the best Ric
  12. UniServer 5.6.5-Nano This release of Uniform Server is a maintenance update. phpMyAdmin updated to 3.3.3 Download 5.6.5-Nano Regards, The Uniform Server Development Team
  13. UniServer 5.6.4-Nano This release of Uniform Server is a maintenance update. MySQL updated to 5.1.46; msmtp updated to 1.4.20 Download 5.6.4-Nano Regards, The Uniform Server Development Team
  14. This is an open source project feel free to rewrite code as appropriate it will be more than appreciated. It’s very easy to be critical so if you are willing to pick a particular area please summit revised code. All the best Ric
  15. From a US point of view you are doing things correctly. a] IP address displayed in the server status test is that seen from the Internet. b] This IP address is used in the second test (Accessible from Internet) hence there is no need to retype it in your browser. Note: It is independent of what you set in the .htaccess file. c] The .htaccess file allows users to see whats in folder www Strange as this may seem it indicates your server is potentially accessible from the Internet. The above points to an incorrect configuration of your router like the ports are not being forward to 192.168.1.5 which I assume is fixed. I would recommend going to http://portforward.com/ where they provide detailed instructions for forwarding ports. I had a quick look and yours router is listed. Perhaps one of our members use the same router and can guide you through it. All the best Ric
  16. The above indicates Cake and US are working fine. More importantly Cake is not setting absolute paths in its configuration file. The above points to W7. Try editing file cake\app\config\database.php and substitute localhost with 127.0.0.1 for host. All the best Ric
  17. The database tables are stored in folder: UniServer\usr\local\mysql\data\joomla Back-up option 1 On a know working server with joomla (ensure you can back-up from phpMyAdmin) Rename the joomla folder to joomla2 (allows you to restore this later by renaming it back to joomla) From a students machine copy the folder joomla and all its content to the working server.(copy to folder UniServer\usr\local\mysql\data) Run the server and perform a backup using phpMyAdmin. Delete folder joomla and repeat for second student’s data. Back-up option 2 You require file mysqldump.exe unfortunately Uniform Server 5.0 does not contain this file however the one in 5.6.3 will work. Download Uniform Server 5.6.3 extract to any folder. Copy file UniServer\usr\local\mysql\bin\mysqldump.exe To the same location (UniServer\usr\local\mysql\bin) on each students machine On the students machine create a new file named dump.bat in folder UniServer\usr\local\mysql\bin with the following content: mysqldump -uroot -proot joomla > sql.dump Note: I am assuming password and name both root (if different change accordingly) Run servers then double click on dump.bat Wait for the dump to complete. A new file is created UniServer\usr\local\mysql\bin\sql.dump On the target server create a new joomla database and run the above file to create and populate the tables. Hope this is of some help All the best Ric
  18. Ric

    Server time?

    First thanks for stating the US version. The line: date.timezone = "Canada/Mountain" As you rightly pointed out should be placed in each of these files php.ini php.ini_delvelopment_nano php.ini_production_nano php-cli.ini Background php.ini is the file PHP uses at start-up. Switching between production and development switches in the corresponding file that overwrites php.ini (Note you need to restart the server for any changes to be picked up) The control uses php-cli.ini no real need to change this file. I added the above line to php.ini and it works correctly. Now assuming you have not made a typo it is possible that a third party application is overriding the setting! A quick test is to edit file UniServer\www\.htaccess At the end of this file add the following line: php_value date.timezone "Canada/Mountain" Create a new file UniServer\www\time.php Add this code: <?php echo date("l, F d, Y h:i" ,time()); ?> Run the file as follows type into your browser: http://localhost/time.php (Note: No need to restart servers) That should display the correct time for your time zone. If it does either the problem is a typo or a third party application. All the best Ric
  19. I am surprised at the lack of interest in Z-Con. It exposes all capabilities of Uniform Server in an easy to use interface. This plugin does not integrate into Uniform Server’s architecture it just taps into and uses certain control functions. To remove just delete folder UniServer\plugins\zcon and files UniServer\Z-CON.exe and UniServer\z_con_readme.txt It has full Wiki support Z controller Introduction Download V56_ZCON_1_2 Reason for this post; I am interested why the reluctance to use it. All the best Ric
  20. UniServer 5.6.3-Nano This release of Uniform Server is a maintenance update. Upgraded phpMyAdmin from 3.3.1 to 3.3.2 Note: phpMyAdmin 3.3.2 includes - bug #2972232 [menu] Import menu tab not present on main page Known issues on Wiki updated accordingly. Download 5.6.3-Nano Regards, The Uniform Server Development Team
  21. Ho for a librarian! At the bottom of each Wiki page is a category; always worth looking at. I totally agree it’s difficult to find information! Hence I have some spare time and will devote 100% of my free time to sort it out. Hey! If you are running a personal server why not switch it off. Navigate to folder UniServer\usr\local\mysql\data Each database is listed in it’s own folder. Just copy that to somewhere safe Hay! One quick backup All the best Ric.
  22. UniServer 5.6.2-Nano applications released The following pre-configured applications have been released V56_Drupal_6_16 V56_Joomla_1_15_15 V56_Joomla_1_15_15_no_sample_data – Forum request V56_MediaWiki_1_15_2 V56_Moodle_1_9_8 V56_Wordpress_2_9_2 V56_Xoops_2.4.4 Download Applications Each download has an associated security script, suffix _pro After installing either a pre-configured plugin or a manual install run application’s corresponding (_pro) script. Script features: Draconian! Forces (nags) you to set a MySQL root password. Once set, enter a name and password, automatically creates a restricted user. A restricted user has minimal privileges. That user is assigned to a specific application database. Checks application for portability adds code to application’s configuration file accordingly. If you want to roll your own scripts check out WinBinder 3 Tutorial Wiki support: Restricted user Note: The above releases are compatible with 5.6.2-Nano If you want to run on 5.6.1-Nano implement security modification; See forum page Or Wiki page Regards, The Uniform Server Development Team
  23. Z-Controller 1.2 Released This is a bug fix release. Same download link as above. All the best Ric
  24. There is no need to change root name only the password is required. You should never use the root account for anything else other than administration. Or installing applications, this make life a little easier however you must create a restricted user for that application see Wiki for details. All the best Ric
  25. Ric

    No imap

    You probably downloaded the VC9 binaries! Correct one to use is: php-5.3.2-Win32-VC6-x86 All the best Ric
×
×
  • Create New...