[TUT] Setup a R63 Hotel | RevCMS | IIS | PhoenixEMU

Status
Not open for further replies.

Gajeel

Well-Known Member
Oct 4, 2011
2,411
413
I tried posting a news article, and then this showed up! If you look at the bottom, you will see the error.
You must be registered for see images attach
Press back, which will restore your content (on the news). Then on navicat go to tables, right-click 'cms_news', click Design Table.
Change the type of author from int to varchar and keep it like that, it should work when you re-post it.
 

AlexFallen

Developer
Jul 19, 2011
490
64
Press back, which will restore your content (on the news). Then on navicat go to tables, right-click 'cms_news', click Design Table.
Change the type of author from int to varchar and keep it like that, it should work when you re-post it.
Ok Thanks. I Got That. But Now It Says
"Data too long for column 'author' at row 1"
 

Nike

#MGK
Jun 9, 2012
545
107
This is an excellent tutorial! I will use the first part as I am new to IIS. Used to Xampp on my computer. :D
 

Gajeel

Well-Known Member
Oct 4, 2011
2,411
413
Thanks for the feedback . Your vouches helps other people trust this tutorial. :up:
 

Gajeel

Well-Known Member
Oct 4, 2011
2,411
413
I wanted to take note that.. you should never be running anything on port 80 while installing IIS, as IIS will be attempting to boot itself after the installation, you'll see warnings about 2 service failed to run if something is running on port 80.
 

juanjosep

New Member
Jun 19, 2012
3
0
Save it as web.config, on the type field find CONFIG and select it, however if you cannot do that we will do another method.

BEFORE GOING TO #12, go to Start -> Computer -> Click Organize ▼ then select Folder and Search Options, then go to 'View' tab, uncheck 'Hide extensions for known file types'. Now go back to wwwroot, rename your .htaccess file toweb.config then hold Ctrl + A and paste the pastie provided above. Now the STEP #12 shall work.

I got no organized so this happenes

Server Error

Internet Information Services 7.5

Error Summary
HTTP Error 500.19 - Internal Server Error

The requested page cannot be accessed because the related configuration data for the page is invalid.
Detailed Error Information

Module

IIS Web Core

Notification

Unknown

Handler

Not yet determined

Error Code

0x8007000d

Config Error


Config File

\\?\C:\inetpub\wwwroot\web.config

Requested URL


Physical Path


Logon Method

Not yet determined

Logon User

Not yet determined

Config Source
-1: 0:
Links and More InformationThis error occurs when there is a problem reading the configuration file for the Web server or Web application. In some cases, the event logs may contain more information about what caused this error.


This is what i'm getting.
 

Paradocs

LieWise Developer!
May 10, 2011
117
7
Same
Code:
Server Error
 
Internet Information Services 7.5
 
Error Summary
HTTP Error 500.19 - Internal Server Error
 
The requested page cannot be accessed because the related configuration data for the page is invalid.
Detailed Error Information
 
 
Module
 
IIS Web Core
 
 
Notification
 
Unknown
 
 
Handler
 
Not yet determined
 
 
Error Code
 
0x8007000d
 
 
Config Error
 
 
 
 
Config File
 
\\?\C:\inetpub\wwwroot\web.config
 
 
Requested URL
 
http://localhost:80/
 
 
Physical Path
 
 
 
 
Logon Method
 
Not yet determined
 
 
Logon User
 
Not yet determined
 
 
Config Source
-1: 0:
Links and More InformationThis error occurs when there is a problem reading the configuration file for the Web server or Web application. In some cases, the event logs may contain more information about what caused this error.
View more information »
 

FarLock

ThisHabbo Media Journalist
Apr 21, 2012
224
52
This has nothing to do with the web.config itself. facepalm.jpg Check your IIS role whether the 5 services are running for it, if not restart them all, not just those who stopped.
 

Stephan

New Member
Jun 23, 2012
12
0
I am stuck at ''BEFORE GOING TO #12''. I searched on Google a lot of times but nothing is working. Maybe something is wrong with Port 80 or something? Please someone help!

2nrdoxc.png


web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 2">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="index.php?url={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 3">
<match url="^(.*)\.htm$" />
<action type="Rewrite" url="{R:1}.php" />
</rule>
<rule name="Imported Rule 4">
<match url="^(|/)$" ignoreCase="false" />
<action type="Rewrite" url="dash.php?page={R:1}" appendQueryString="false" />
</rule>
<rule name="Imported Rule 5">
<match url="^([a-zA-Z0-9_-]+)(|/)$" ignoreCase="false" />
<action type="Rewrite" url="dash.php?url={R:1}" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
 

Teh

New Member
Oct 18, 2010
8
0
Like teh tutorial i've seen some more of you previously love to see more of these very nice and basic tutorials coming soon.
 
Status
Not open for further replies.

Users who are viewing this thread

Top