Using 1.24, I'm getting this error when importing my gedcom file, even when it says successful above the error. Any ideas?
Warning: stat failed for http://www.theklings.net/PHPGedView/klingfam.GED (errno=2 - No such file or directory) in /home/virtual/site156/fst/var/www/html/PHPGedView/functions.php on line 634
Flushing contents
Thanks
Murph
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
when I did that, it wouldn't find the file, but I did get it working. For some reason it wasn't executing as *.GED, but as *.ged so i just typed the name of the file in and it works fine now. Weird how it didn't work the first time. Oh well, thanks for the help :)
Murph
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Remember that most webservers are case sensitive. So if you uploaded the file as klingfam.ged but try to reference it as klingfam.GED the webserver won't find it.
--John
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Using 1.24, I'm getting this error when importing my gedcom file, even when it says successful above the error. Any ideas?
Warning: stat failed for http://www.theklings.net/PHPGedView/klingfam.GED (errno=2 - No such file or directory) in /home/virtual/site156/fst/var/www/html/PHPGedView/functions.php on line 634
Flushing contents
Thanks
Murph
This is the MySQL version by the way :)
It's possible that your PHP is not setup to open URL's as files. Have you tried giving it the full path to your gedcom like this:
/home/virtual/site156/fst/var/www/html/PHPGedView/klingfam.GED
--John
when I did that, it wouldn't find the file, but I did get it working. For some reason it wasn't executing as *.GED, but as *.ged so i just typed the name of the file in and it works fine now. Weird how it didn't work the first time. Oh well, thanks for the help :)
Murph
Remember that most webservers are case sensitive. So if you uploaded the file as klingfam.ged but try to reference it as klingfam.GED the webserver won't find it.
--John