
Henry00jj95
Zeta
Verificado
Verificación en dos pasos activada
Verificado por Whatsapp
¡Ha verificado su Paypal!
Verificado por Binance
¡Usuario popular!
segun yo tengo la version compatible, al momento de instalarlo en el hosting, se queda asi.Quizá la versión de php
Eso es por el rewrite, tienes el .htaccess (apache/litespeed) correcto o el rewrite por nginx?segun yo tengo la version compatible, al momento de instalarlo en el hosting, se queda asi.
Ver el archivo adjunto 1263199
navegue a donde navegue, me sigue saliendo la misma vista del home
segun yo lo tengo en htaccessEso es por el rewrite, tienes el .htaccess (apache/litespeed) correcto o el rewrite por nginx?
# for testing
order allow,deny
allow from all
# override max php upload settings. Might not work on all servers
#php_value upload_max_filesize 4000M
#php_value post_max_size 4000M
# setup xsendfile if the module is enabled
<IfModule mod_xsendfile.c>
<Files *.php>
XSendFile On
SetEnv MOD_X_SENDFILE_ENABLED 1
</Files>
</IfModule>
# disable mod security for admin area
<IfModule mod_security.c>
<If "%{REQUEST_URI} =~ m#/admin/#">
SecFilterEngine Off
SecFilterScanPOST Off
</If>
</IfModule>
# disable mod security
#<IfModule mod_security.c>
# SecFilterEngine Off
# SecFilterScanPOST Off
#</IfModule>
RewriteEngine On
# redirect www to non-www
#RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
#RewriteRule ^(.*)$ https://%1/$1 [R=301,L]
# force https
#RewriteCond %{HTTPS} !=on
#RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
#RewriteRule . - [E=no-gzip:1]
RewriteBase /
# route everything via index.php if it doesn't exist as a file
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?_page_url=$1 [QSA,B]
A mi me sucedía igual con un script casi igual, lo que hice fue poner apache ya que tenia litespeed, simplemente cambie el vos a apache y muchas cosas me comenzaron a funcionar de maravillasegun yo lo tengo en htaccess
el siguiente codigo.
Insertar CODE, HTML o PHP:# for testing order allow,deny allow from all # override max php upload settings. Might not work on all servers #php_value upload_max_filesize 4000M #php_value post_max_size 4000M # setup xsendfile if the module is enabled <IfModule mod_xsendfile.c> <Files *.php> XSendFile On SetEnv MOD_X_SENDFILE_ENABLED 1 </Files> </IfModule> # disable mod security for admin area <IfModule mod_security.c> <If "%{REQUEST_URI} =~ m#/admin/#"> SecFilterEngine Off SecFilterScanPOST Off </If> </IfModule> # disable mod security #<IfModule mod_security.c> # SecFilterEngine Off # SecFilterScanPOST Off #</IfModule> RewriteEngine On # redirect www to non-www #RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] #RewriteRule ^(.*)$ https://%1/$1 [R=301,L] # force https #RewriteCond %{HTTPS} !=on #RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] #RewriteRule . - [E=no-gzip:1] RewriteBase / # route everything via index.php if it doesn't exist as a file RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?_page_url=$1 [QSA,B]
es un VPS, la verdad que no tengo idea como cambiarlo hahahaA mi me sucedía igual con un script casi igual, lo que hice fue poner apache ya que tenia litespeed, simplemente cambie el vos a apache y muchas cosas me comenzaron a funcionar de maravilla
esta con la versión 8.2 según vi en en la documentación funciona desde la 7.2 para adelanteLo más probable es que sea la versión de php que no es compatible.
he probado en un hosting compartido va super bien, pero al instalarlo en el VPS me da ese problema.El problema es que la estructura ha cambiado demasiado, intenta con la 7.4 haber como te va.
#######################################################################
# START NGINX RULES
#######################################################################
# increase the timeout for uploads
location /ajax/file_upload_handler {
proxy_read_timeout 1800;
proxy_connect_timeout 1800;
proxy_send_timeout 1800;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
if (!-e $request_filename) { rewrite ^/(.*) /index.php?_page_url=$1 last; }
}
location / {
if (!-e $request_filename) {
rewrite ^/(.*) /index.php?_page_url=$1 last;
}
}
location /files/ {
internal;
}
# these locations would be hidden by .htaccess normally
location /logs/ {
deny all;
}
#######################################################################
# END NGINX RULES
#######################################################################
#######################################################################
# Full /etc/nginx/sites-available/default file example below:
#######################################################################
server {
listen 80;
server_name localhost; # change this for your server
root /usr/share/nginx/html;
index index.php;
client_max_body_size 5G;
# increase the timeout for uploads
location /ajax/file_upload_handler {
proxy_read_timeout 1800;
proxy_connect_timeout 1800;
proxy_send_timeout 1800;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ \.php$ {
if (!-e $request_filename) { rewrite ^/(.*) /index.php?_page_url=$1 last; }
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
location / {
if (!-e $request_filename) {
rewrite ^/(.*) /index.php?_page_url=$1 last;
}
}
location /files/ {
internal;
}
# these locations would be hidden by .htaccess normally
location /logs/ {
deny all;
}
location ~* "/\.(htaccess|htpasswd)$" {
deny all;
return 404;
}
}
he probado en un hosting compartido va super bien, pero al instalarlo en el VPS me da ese problema.
EDITO, solucionado
en el VPS toca agregarle las reglas en el /etc/nginx/nginx.conf
el siguiente codigo:
Insertar CODE, HTML o PHP:####################################################################### # START NGINX RULES ####################################################################### # increase the timeout for uploads location /ajax/file_upload_handler { proxy_read_timeout 1800; proxy_connect_timeout 1800; proxy_send_timeout 1800; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { if (!-e $request_filename) { rewrite ^/(.*) /index.php?_page_url=$1 last; } } location / { if (!-e $request_filename) { rewrite ^/(.*) /index.php?_page_url=$1 last; } } location /files/ { internal; } # these locations would be hidden by .htaccess normally location /logs/ { deny all; } ####################################################################### # END NGINX RULES ####################################################################### ####################################################################### # Full /etc/nginx/sites-available/default file example below: ####################################################################### server { listen 80; server_name localhost; # change this for your server root /usr/share/nginx/html; index index.php; client_max_body_size 5G; # increase the timeout for uploads location /ajax/file_upload_handler { proxy_read_timeout 1800; proxy_connect_timeout 1800; proxy_send_timeout 1800; } # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 location ~ \.php$ { if (!-e $request_filename) { rewrite ^/(.*) /index.php?_page_url=$1 last; } fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } location / { if (!-e $request_filename) { rewrite ^/(.*) /index.php?_page_url=$1 last; } } location /files/ { internal; } # these locations would be hidden by .htaccess normally location /logs/ { deny all; } location ~* "/\.(htaccess|htpasswd)$" { deny all; return 404; } }
con esto el VPS trabaja de maravilla, ahora me toca ponerlo a prueba a ver hasta donde llega y ver si vale la pena.