my servers's configuration( in production environment ) as follows:
---------- mysql-5.1.73 ok ----------
---------- nginx-1.4.4 ok ----------
---------- php-5.3.29 ok ----------
---------- vsftpd-2.0.5 ok ----------
---------- phpmyadmin-4.1.8 ok ----------
my nginx's configuration as follows:
server {
listen 8090;
server_name localhost;
index index.html index.htm index.php;
root /alidata/www/wordpress/combu;
location ~ .*.(php|php5)?$
{
#fastcgi_pass unix:/tmp/php-cgi.sock;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
include fastcgi.conf;
}
location ~ .*.(gif|jpg|jpeg|png|bmp|swf)$
{
expires 30d;
}
location ~ .*.(js|css)?$
{
expires 1h;
}
}
in my browser's address bar input the address "http://mydomain.com:8090/"
403 Forbidden
nginx/1.4.4
in my browser's address bar input the address "http://mydomain.com:8090/admin/", The administrator page can't display properly,detail follow:
IsLogged()) { $usersOnlineTicks = time() - ONLINE_SECONDS;....
In the inspector of CombuManager script , "Url Root Production "is "http:// (e.g.: http://myserver.com :8090/"
then return an error as follows:
Failed to get Combu server info
UnityEngine.Debug:LogError(Object)
Combu.CombuManager:m__3C(Boolean, CombuServerInfo) (at Assets/Combu/Scripts/CombuManager.cs:308)
Combu.c__AnonStorey2F:<>m__3F(String, String) (at Assets/Combu/Scripts/CombuManager.cs:595)
Combu.c__Iterator5:MoveNext() (at Assets/Combu/Scripts/CombuManager.cs:411)
ERROR:
UnityEngine.Debug:Log(Object)
Combu.c__Iterator5:MoveNext() (at Assets/Combu/Scripts/CombuManager.cs:409)
details follow:
TEXT: <?
define ("COMBU_VERSION", "2.1.9");
...
What should I do?
You missed to edit your php.ini and enable short open tag, please look at here.
FRANCESCO CROCETTI @ SKARED CREATIONS
Well done! I solved ,Thank you very much!!!
You're welcome, if you're running on Windows then please remember to enable the case sensitivity for table and field names (next point in the previous link).
FRANCESCO CROCETTI @ SKARED CREATIONS
OK!