Ive tried installing to trusted and making sure all the files are how they should be, but nothing happens.
Skull Face
@Skull Face
Posts made by Skull Face
-
How do i make the SSL public? so that others can visit via HTTPS://
-
RE: Does any laragon version support 2009 SQL?
Yeah did try older version didnt make much of a overall difference i guess the code is just far too dated, so my only choice would be to switch to pdo / sqli which means recoding it all, no worries thankyou for the replys i guess ill let that past project die lol
-
RE: Does any laragon version support 2009 SQL?
Going to take it theres no easy work around and i'm left to recode the entire thing with pdo or sqli? if thats the case someone confirm so i can give up lol i dont fancy learning it all over
-
RE: Does any laragon version support 2009 SQL?
yeah doesnt change anything still same issue, and the site constantly screams at me that the coding is broken when its worked before
guess my only choice is the redo it all? a lot of it seems to clash with other parts and just throw out streams of errors on line and sql codes all over the pages, seems like it connects to my sql, but doesnt refire back at the php
edit: could it be that the coding is outdated? (ive done this before, reuplaoded it and hosted sql back in 2010 and it worked fine but trying it nowadays just seems to cause so many conflicting code issues and im so outdated on sql i dont even know where to start)
-
Does any laragon version support 2009 SQL?
Its been years, but i was going through an old hardrive and found a old backup of my website i wanted to try re-start up ive added all the files to my localhost, hosted all the SQL, but non if it seems to work like it once used to, ive googled tons but all results say that mysql was obsolete with PHP.7? is there any versions or other programs i could use that would fix this in anyway? im out of experience and wouldnt know how to go about transfering sql to sqli or recoding it to fix the issue.
mysql_connect.php is as such:
<?php
$conn = mysql_connect('IP','ROOT','PASS');
if (!$conn) {
echo "Unable to connect to SQL Server";
exit();
}
else {
$slct_db = mysql_select_db('DATABASE', $conn);
if (!$slct_db) {
echo "Unable to Connect to Database";
exit();
}
}
?>