Previous Thread
Next Thread
Print Thread
Hop To
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
Hey guys was chatting with Gizmo on this and he asked to share it on the forums..

I just did a completely fresh installation of 7.7.4 and it was pretty much un-eventful. I have one wierd issue. I go to change the forum style from dark to light in the bottom dropdown and vice versa. It gives a 404 error because it has doubled the entry when referencing it'self.

EG:

goes from http://www.domain.com to http://www.domain.com//www.domain.com/ubbthreads.php?ubb=cfrm when making this change.

I ran the test script it says nothing is broken. It's only that dropdown having the issue. I tried making baseurl the same as fullURL as it is the same.

Any thoughts ? It's the only thing that seems to be off. everything else is awesome. I used to install this in my sleep in the old days smile this might be something to check.


Happy Customer !!!
Joined: Dec 2003
Posts: 6,560
Likes: 78
Joined: Dec 2003
Posts: 6,560
Likes: 78
Are your absolute path settings all the same.
Meaning all using public-html or www?
Not a mix of one path is www and another path is public_html.

Note the double slash
www.domain.com//www.domain.com
I had this issue with a previous host but not my current one.
So I believe it is some server configuration that screws with the ubb scripts.
My previous host would just say call the vendor.
Before I changed hosts I think the following fixed it.
But I can't recall it was three years ago.
https://htaccessbook.com/remove-double-forward-slashes/

All I remember was it was a edit to the htaccess file.
When I changed hosts it worked fine without the fix but I never could figure out what was different between the the two hosts.
Because my account at the previous host was closed to quickly during the transition.


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
yes everything is the same. its a www windows dir and Full URL path is http://www.domain.com the relative is blank because we are running the whole site as a forum and not a sub directory. I have tried just about everything so far.. even checked php.ini stuff. never had this issue with my older installs smile

Last edited by Mors; 09/30/2020 4:42 PM.

Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by Mors
yes everything is the same. its a www windows dir and Full URL path is http:// www .domain .com the relative is blank because we are running the whole site as a forum and not a sub directory.

For reference (and could be helpful for others), the following are the settings I use for a Windows 10 install of UBB.threads via xampp.

Windows 10 lan connection through direct IP address rather than DNS.

[Linked Image]

[Linked Image]

[Linked Image]

edit: if you need other configuration screenshots, i would be happy to make and post them for you laugh


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
I think I see a redirect in the code.. I type in http://domain.com and it redirects to http://www.domain.com

I am not using a forums directory so this redirect might be an issue.. it says curl sees it a //www.domain.com// as far as I can tell.


Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
What happens when you correct your root directory path from blank (null) to instead be / (slash)?


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
<input type="hidden" name="curl" value="%2F%2Fwww.mshastro.com%2F" /> what looks wierd..

let me check the / usually that caused it to not see .css and load most of the siite.. let me check.. I have to leave it blank


EDIT:
Ya I add the / instead of blank and the url changes to ubbthreads.php and I lose css etc.. looks more codeish then bad config.

with is blank the url link is http://www.mshastro.com.. with / the url link is just ubbthreads.php.

the website references index.php and default doc


Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by Mors
Ya I add the / instead of blank and the url changes to ubbthreads.php and I lose css etc..

did you update/rebuild the cache after the change

do you have custom (or any) forwarding scripts unrelated to UBB.threads. Anything such as an .htaccess file or whatever Windows / your apache server uses to redirect.

have you tried using FULL URL, as the configuration setting describes?


stock code:
Code
<input type="hidden" name="curl" value="{$current_url}" />

your output code:
Code
<input type="hidden" name="curl" value="%2F%2Fwww.mshastro.com%2F" />

%2F is a /

So what you are looking at is your browser converting your entry with the slashes from html special characters to html friendly characters
https://www.w3schools.com/tags/ref_urlencode.ASP

edit:
this is fine, because it gets decoded back special chars when it is used. though I am looking at your output and wondering why it reads as "//www.mshastro.com/". This is url without a protocol. It is not html5 spec. choose http or https for the protocol.

Last edited by isaac; 09/30/2020 5:22 PM. Reason: pressed submit too early. lol

Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
yes familiar with urlencode characters..

check the screeny attached. Everything seems to work although I am losing icons at time like the camera for the forum. something is changing. I used the css validator from debug mode and it says 105 css issues and missing fields

I am using IIS on windows 2012. no redirects setup of on the website.
Attachments
config.png

Last edited by Mors; 09/30/2020 5:23 PM.

Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by Mors
check the screeny attached.

Your screenshot is of a "Paths & Database" setting.

Does this match the same URL in your general setting for "Homepage URL" ?

Do you also have your sessions path setup correctly?

as a side note, which I believe to be completely unrelated to the Windows paths issue you are currently experiencing:
The CSS validator you use, is it validating against CSS2.1 or CSS3?
You will get errors if you are validating CSS3 against a CSS2.1 file.
Is the file you are validating against something included with UBB.threads, or something you created or found online somewhere, such as a prior version of UBB.threads?
What are you validating? a url or a hostedhtml page, or direct link/copy-paste of a css file. a a backedup or exported ubbt style?


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
its the css validator that comes with the bottom messages of the debug feature.. Just go to the site and you can run html5 validator and css validator.

and yes they all match.. they have http://www.mshastro.com as home and full urls.. nothing in relative url.

Last edited by Mors; 09/30/2020 5:38 PM.

Happy Customer !!!
Joined: Jun 2006
Posts: 16,289
Likes: 115
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,289
Likes: 115
FWIW I have a High School Forum which uses UBB.threads in the web root (but not using Windows to host) and my configuration options are as follows
Attachments
mhs.png


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Jun 2006
Posts: 16,289
Likes: 115
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,289
Likes: 115
I see that your baseurl is blank, try duplicating the value of the full url and see what happens...
[Linked Image]


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
I have run these forums on this server before smile I don't think its IIS or Windows thing yet.. that was older versions .. this new version fundamentally different and had lots of forum goodness in them smile

I will be adding the SSL cert as soon as they are up smile Don't have it yet..

Originally Posted by Gizmo
I see that your baseurl is blank, try duplicating the value of the full url and see what happens...
[Linked Image]


Same behavior when changing styles adding full URL to the blank / Relative field


Happy Customer !!!
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
Here are the screenshots of both paths and general. Like I said if I use full URL along side of the relative full url it does the same thing when selecting styles. runs very well otherwise.
Attachments
config2.png config3.png

Last edited by Mors; 09/30/2020 6:00 PM.

Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Why is this blank?

Please enter "Full URL or Relative URL to Forum Directory" within that field. This configuration item should not be left blank.

[Linked Image]

Enter either of the following:

Full URL:
http://www.mshastro.com

Relative URL to Forum Directory:
/

But do not leave it blank.


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Also, because you are on a windows system, your PATH slashes are in the wrong direction. Windows paths should be backslashes.

[Linked Image]

additional reading:
https://www.howtogeek.com/181774/wh...nd-everything-else-uses-forward-slashes/


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
Ok changed the absolute paths from E:/ to E:\

It didn't change the redirect issue.. I also noticed that the image camera icon on the image gallery forum will show up first time. I click into the forum and go into the image forum list and the icon is gone.. it goes from :

<img src="/images/general/ventura/newimages.gif" ondblclick="markRead('3','nonewimages.gif')" style="cursor: pointer" title="Double Click this icon to mark this forum as read." alt="" id="icon-3">

to no image and

<img src="/images/general/ventura/nonewimages.gif" alt="" id="icon-3">

Not sure if this means anything but usually the image icon indicating gallery forum stays put.

BTW I opened a ticket with the info smile just in case you need real time access


Happy Customer !!!
Joined: Jun 2006
Posts: 16,289
Likes: 115
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,289
Likes: 115
Originally Posted by Mors
BTW I opened a ticket with the info smile just in case you need real time access
We do not work for the vendor, UBBSystems (who works primarily in the helpdesk); we're all here on the forums as volunteers.

Do you happen to have a copy of your old forum which was working on the same server? Might be useful to see what settings you were previously using.


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
Originally Posted by Gizmo
Originally Posted by Mors
BTW I opened a ticket with the info smile just in case you need real time access
We do not work for the vendor, UBBSystems (who works primarily in the helpdesk); we're all here on the forums as volunteers.

Do you happen to have a copy of your old forum which was working on the same server? Might be useful to see what settings you were previously using.

Ahh ok I didn't know smile Been so long. I can look to see if I have archived that old site. be back asap if I find it.

7.5.9 was the last version back in 2015. I have an archive of the source code but not the site.


Happy Customer !!!
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
reinstalled the forums without error.. same issues. I am thinking it is some code affecting pathing. I have tried every combination in general and paths section.

The forums load perfect and after I click on a link it starts dropping resources like the Camera Icon and the double URL post taking place with switching the Styles at the bottom dropdown list

I take it everyone using linux.. I have used Windows and IIS since 1997 and have always had these forums run on the server since 2001. Looking into iis rewrites of the url now but I don't think it will change much. If you need a windows iis tester I am your man for future releases.. I would even give you your own site, ftp etc.. smile

Last edited by Mors; 10/01/2020 12:13 AM.

Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Mors, sending you a PM now thumbsup


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
ok great.. I just realized the icon goes away on these forums too after you click on it.. I might be mistaken about the icon thing.. It used to just go grayed out etc.. in the past.. still getting used to everything. sorry.. I am trying to not jump to conclusions.

Last edited by Mors; 10/01/2020 12:16 AM.

Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
long PM. lol.

pm has been sent


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by Mors
ok great.. I just realized the icon goes away on these forums too after you click on it.. I might be mistaken about the icon thing.

The icon on the forum is related to NEW/UNREAD items in forum vs ALL CAUGHT UP.

NEW - you'll see an new.gif which is an image
NONEW - you'll see a nonew.gif (blank icon) which is an invisible block.


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Dec 2003
Posts: 6,560
Likes: 78
Joined: Dec 2003
Posts: 6,560
Likes: 78
Maybe somebody should reach out to BellaOnline.
She is the only member I know of that has used a windows server from the get go.
In fact I think she still uses a windows server.
Her site shows she is using UBB 7.7.3 I believe.
https://forums.bellaonline.com/ubbthreads.php

She may have run into the path issue herself in the past.
Might save some troubleshooting steps for all.


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Jun 2006
Posts: 16,289
Likes: 115
UBB.threads Developer
UBB.threads Developer
Joined: Jun 2006
Posts: 16,289
Likes: 115
She's on IIS7 vs IIS8 (you can see it on her error pages); slightly different type of apples.

Windows Server 2008 IIS7.0 vs Windows Server 2012 IIS8.0


I am a Web Development Contractor, I do not work for UBBCentral. I have provided free User to User Support since the beginning of these support forums.
Do you need Forum Install or Upgrade Services?
Forums: A Gardeners Forum, Scouters World
UBB.threads: UBBWiki, UBB Styles, UBB.Sitemaps
Longtime Supporter & Resident Post-A-Holic
VNC Web Services: Code Modifications, Upgrades, Styling, Coding Services, Disaster Recovery, and more!
Joined: Dec 2003
Posts: 6,560
Likes: 78
Joined: Dec 2003
Posts: 6,560
Likes: 78
It still does not mean she may not have some suggestions nobody has thought of.

I don't know about you but I have not used a windows host since like 2000


Blue Man Group
There is no such thing as stupid questions. Just stupid answers
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
I gave Isaac access to a test site and domain for testing code. You guys should validate code for all platforms. I am also validating things on my end

I am going to need to get it fixed.. smile I tried just running 1 template and the dropdown didn't get rid of the template in the list so now it gets lost when I try to use the style that was deleted. I

Where can I get some other styles.. I went to ubbdev and really didn't find much. I would like to check out other styles to be honest.. the current styles delivered with the code had missing elements and 108 errors if you go to the css styles tester delivered with debug mode.

Last edited by Mors; 10/01/2020 5:53 PM.

Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by Mors
I gave Isaac access to a test site and domain for testing code. You guys should validate code for all platforms.

Thank you for the access, but I am actually looking to find IIS 8.0 from the 8 year old EOL OS version so I can perform a fresh install of it, and run it unmodified

Windows 8 Mainstream support ended on July 10, 2018
source: https://en.wikipedia.org/wiki/Windows_8

Windows Server 2012 Mainstream support ended on October 9, 2018
source: https://en.wikipedia.org/wiki/Windows_Server_2012

I have a trial version of both, but will need to set it up and configure it, then install a database engine and required libraries for IIS 8.0.

[Linked Image]
source: https://en.wikipedia.org/wiki/Internet_Information_Services#History

Again, I will do this with the time I have available to me this week. I foresee this as a very time consuming entirely unpaid job.

Everyone else is free to chime in with their helpful IIS 8.0 advice.

Again Mors, thank you for setting me up with access to your server. I probably will not go that path since debugging is faster and easier on an unmodified platform.


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
HERE IS THE FIX !!

It's a simple fix but the real issue is all the URL validation / redirects in the code that caused this (linux / php stuff). I was watching the calls being made by the forums in fiddler and was able to determine the problem. So I wrote this simple redirect in IIS to offset the code.

Forum setup steps in control panel:

1) I entered in the "Full URL to Forum Directory" http://www.domain.com
2) I entered in the "Full URL or Relative URL to Forum Directory" http://www.domain.com not blank but I could of probably did that too.
3) I entered everything else as normal.

Steps in IIS URL Rewrite tool this works on all IIS 7.0 and higher

1) I created a blank rule
2) look at attached screenshot at the rest of the entries

The rule captures the double URL entry made by the code when changing styles (self posting) and redirects it back to the original URL.

http://www.domain.com//www.domain.com =====> http://www.domain.com

I worked on an advanced rule that would allow where you were currently in the forums to have the double entry removed and bring you right back to that spot under the new style. I could not do this as I saw in fiddler that if I passed a URL with variables under the redirect, the forums would immediately over write the URL again via a curl redirect or call. So I had to just bring it back to root URL.

http://www.domain.com//www.domain.com/ubbthreads.php?ubb=postlist&Board=1&page=1 =====> http://www.domain.com

instead of http://www.domain.com/ubbthreads.php?ubb=postlist&Board=1&page=1

It would crash otherwise because of the coded rewrite. If there are any additional Rules needed I will do them and post them on the forum. I might change things a bit to accommodate SSL. Easy addition. Also I can use the [host] variable instead of hard coding the site.

You guys might want to put this in a How To by itself so it doesn't get lost.
Attachments
url-redirect.png


Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
I cannot reproduce your issue on a fresh/clean install of current versions of everything. Have you tried removing your customized server redirects, or restoring your server settings to their defaults? Have you tried updating your versions? It could be possible that any issue you are experiencing now, has been resolved in a newer (currently supported) version.

The following is what I tested with. Zero issues presented themselves. Everything continues to work as expected. No code changes or redirection tricks used or needed.

FRESH INSTALL OF:
Windows 10 Pro version 1909
Internet Information Services 10.0 (IIS/10)
PHP 7.4.11
MySQL 5.7.31
UBB.threads 7.7.4 (installed to ROOT of localhost)



[Linked Image]

[Linked Image]

[Linked Image]

[Linked Image]

[Linked Image]

I noticed a few things about your issue that stand out as unnatural:

1. On 2020-09-29, you were running php 7.4.11.
A pre-release version of PHP?
PHP version 7.4.11 was released on 2020-10-01.
source: https://www.php.net/archive/2020.php#2020-10-01-3

2. You are using Windows Server 2012 with IIS/8.0.
Any reason why you dont update to at least WIndows Server 2012 R2 with IIS/8.5?
Windows Server 2012 Mainstream support ended on October 9, 2018.
https://docs.microsoft.com/en-us/iis/get-started/whats-new-in-iis-85/enhanced-logging-for-iis85
or the current version, Windows Server 2019 with IIS/10?
https://docs.microsoft.com/en-us/ii...iis-10/new-features-introduced-in-iis-10

You're running the bleeding edge version of PHP, so new that it wasnt even officially released at the time you were running it, but are doing it on web server version that has reached end of support several years ago (2018).

Either of these could be related to the cause of your problem. Though, i believe your main issue is the custom url redirects you've created.
Attachments
20201001_22-27-19.PNG 20201001_23-37-30.PNG 20201001_23-28-07.PNG 20201002_00-17-39.PNG 20201002_00-57-58.PNG 20201002_15-01-34.PNG 20201002_16-11-52.PNG 20201002_17-59-40.PNG


Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
1 member likes this: Gizmo
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
Actually I will upgrade at the end of the year to windows server 2019. What php variables are you running


Happy Customer !!!
Joined: Apr 2004
Posts: 1,945
Likes: 145
UBB.threads Developer
UBB.threads Developer
Joined: Apr 2004
Posts: 1,945
Likes: 145
Originally Posted by Mors
What php variables are you running

[Linked Image]

I have not done any tuning or tweaking to it. You should review each item to best fit your specific use. The following was setup purely from memory at 8pm last night, on to a VM (VirtualBox) using a freshly installed Windows 10 Pro, updating to the latest patches, enabling the IIS (CGI/FastCGI) and installing only the required items; PHP, MySQL, Chrome, Notepad++, WinRAR. I believe my total time spent was about 8 hours. I might have missed a few items, as it was already at the end of my day.

PHP 7.4.11 - php.ini is attached as php.ini.txt.
You will need to modify it for your own needs and rename it.
Attachments
php.ini.txt (74.37 KB, 62 downloads)
SHA1: 8dc60a6742f90df808fe6bad894343a77d54a7e6

Last edited by isaac; 10/03/2020 12:36 AM. Reason: post formatting

Current developer of UBB.threads PHP Forum Software
Current Release: UBBT 7.7.5 // Preview: UBBT 8.0.0
isaac @ id242.com // my forum @ CelicaHobby.com
Joined: Jun 2006
Posts: 464
Likes: 1
M
Addict
Addict
M Offline
Joined: Jun 2006
Posts: 464
Likes: 1
I just loaded my new version of Windows 2019 Server Standard, loaded up latest version 8 mysql and php 7.4.9.

It works perfect on this server running on a esx7.0 box.. This will make me push my time forward in upgrading may servers.


Happy Customer !!!

Link Copied to Clipboard
ShoutChat
Comment Guidelines: Do post respectful and insightful comments. Don't flame, hate, spam.
Recent Topics
Looking for a forum
by azr - 03/15/2024 11:26 PM
Editing Links in Post
by Outdoorking - 03/15/2024 9:31 AM
Question on barkrowler and the like
by Mors - 02/29/2024 6:51 PM
Member Permissions Help
by domspeak - 02/27/2024 6:31 PM
Forum Privacy Policy
by ECNet - 02/26/2024 11:58 AM
Who's Online Now
2 members (Nightcrawler, Ruben), 322 guests, and 160 robots.
Key: Admin, Global Mod, Mod
Random Gallery Image
Latest Gallery Images
Los Angeles
Los Angeles
by isaac, August 6
3D Creations
3D Creations
by JAISP, December 30
Artistic structures
Artistic structures
by isaac, August 29
Stones
Stones
by isaac, August 19
Powered by UBB.threads™ PHP Forum Software 8.0.0
(Preview build 20230217)