Script URL:
Version of script:
Hosting company:
URL of phpinfo.php:
URL of session_test.php:
What terms did you try when SEARCHING for a solution:
Write your message below:
The link on my GB at www.theangry.net that refers visitors back to the Angry site directs the reader to the "opening.htm" page and I would like that link to take the visitor to the "index.html" page. I see the link code in the source view but can't find the code in the gbook.php file. Where do I find that code in order to change the url?
Thanks!
Changing GB "return" link target
The "Back to ..." link is set in the settings.php file You can set it to whatever you like.
Greetings,
Henrie
Code: Select all
$settings['website_url']='http://www.domain.com/';
Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
-
- Posts: 56
- Joined: Sat Apr 03, 2010 9:04 pm
Henrie:
I entered the code http://index.html and it went to the "can't find....etc. I also tried http://theangry.net./index.html and theangrynet/index.html to no avail. What am I missing?
Thanks!
I entered the code http://index.html and it went to the "can't find....etc. I also tried http://theangry.net./index.html and theangrynet/index.html to no avail. What am I missing?

Thanks!
The following value should work:
http://theangry.net./index.html will return a page not found error because you entered a . (dot) after .net which ofcourse returns an error because it does not exist. $settings['website_url']='http://theangry.net/index.html'; should work though.
theangrynet/index.html does not work because of missing . (dot) between angry and net and a missing http://
Hope you get it to work now.
Greetings,
Henrie
Code: Select all
$settings['website_url']='http://www.theangry.net/index.html';
http://index.html is not a valid link to your site, so it will not work. $settings['website_url']='../index.html'; should work though.evenstephen.com wrote:I entered the code http://index.html and it went to the "can't find....etc. I also tried http://theangry.net./index.html and theangrynet/index.html to no avail. What am I missing?
http://theangry.net./index.html will return a page not found error because you entered a . (dot) after .net which ofcourse returns an error because it does not exist. $settings['website_url']='http://theangry.net/index.html'; should work though.
theangrynet/index.html does not work because of missing . (dot) between angry and net and a missing http://
Hope you get it to work now.
Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.
-
- Posts: 56
- Joined: Sat Apr 03, 2010 9:04 pm
Over the years I have made to many typing errors myself. So I know what to look for
I am just glad it was easy to correct it.
Greetings,
Henrie

I am just glad it was easy to correct it.
Greetings,
Henrie
I do not monitor the Gbook forums regularly anymore since I do not use the Gbook script myself anymore for a long time. But it helped me a lot in learning to understand php.