Skip to main content
Topic: No record found (Read 2014 times) previous topic - next topic

No record found

Hi,

when i create a new project and use Xampp on my local host everything runs ok.
But when i upload a project on my internet server i get the following error message:
Not found
No record found
See also the screenshot attached.

What could be the problem here?

Regards

Alexander

Re: No record found

Reply #1
I assume you are also importing/maintaining your remote SQL server/structure too?

Re: No record found

Reply #2
Sorry, but i don't understand. What do you mean exactly?

My backround: I own a vserver with mysql, php, apache2 and i have my own domain.

I create a project and save this on my local pc.  In the "Database Server Configuration" i added the mysql-data of my vserver. Then i uploaded the created files with FileZilla in the http-directory of my vserver. Then i get the error-message "no record found"

But on the other side when i test the project with Xampp on my local pc, then everything works (in this case i also make a mysql access to my vserver).

PS: I assume the first "not found" message is a "404 Not found" error.  

 

Re: No record found

Reply #3
Hi,

in the end i could solve the problem:

1.  Activate the mod_rewrite module.
2. Change "AllowOverride All"
3. setsebool httpd_can_network_connect 1
4. setsebool httpd_can_network_connect_db 1

Regards

Alex

Re: No record found

Reply #4
Thank you for sharing the solution!

Re: No record found

Reply #5
I'm also facing same problem, but using phprad classic version.(Using CENTOS)

step i've done:--

1.Activate  mod_rewrite ( /etc/httpd/conf.modules.d/00-base.conf)

2. <Directory /var/www/html>
    AllowOverride All
 </Directory>

3. setsebool httpd_can_network_connect 1

4. setsebool httpd_can_network_connect_db 1

but this step not working to me...

Pls help me?