This website can use cookies to improve the user experience

This website can use cookies to improve the user experience and to provide certain services and functions to users. Cookies contain small amounts of information (such as login information and user preferences) and will be stored on your device.

Enable All Cookies Privacy Policy

Page Title, Keywords


avatar
Swarmer 0
From: -
Page Title, Keywords

Hi, i have noticed that the "page title" and "meta keywords" on my test "download pages" are not changing from the ones i have set in the admin for the main page. i have not changed the main site header and the codes are there

$insert[page_title]
$insert[page_keywords]

how should i fix this? thanks

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.

Responses to this topic


1 Re: Page Title, Keywords
avatar
Administrator
1340
From: Vienna, Austria
Page Title, Keywords

This is not a free version. Please login with the account that you have registered with your license and open a trouble ticket.
1 Re: Page Title, Keywords
avatar
10
From: -
Page Title, Keywords

I am testing the 1.8-1
1 Re: Page Title, Keywords
avatar
Administrator
1340
From: Vienna, Austria
Page Title, Keywords

Which version are you using?
1 Re: Page Title, Keywords
avatar
10
From: -
Page Title, Keywords

I have the same problem as above. Any solutions?
1 Re: Page Title, Keywords
avatar
OP 0
From: -
Page Title, Keywords

PM sent
1 Re: Page Title, Keywords
avatar
Administrator
1340
From: Vienna, Austria
Page Title, Keywords

That's odd Slightly Frowning Face. Please send me a private message with the URL of your installation.
1 Re: Page Title, Keywords
avatar
OP 0
From: -
Page Title, Keywords

if you think i should re-install the script i can do that no problem
1 Re: Page Title, Keywords
avatar
OP 0
From: -
Page Title, Keywords

hi, i commented out the code and removed the files, and it's still not working.
1 Re: Page Title, Keywords
avatar
Administrator
1340
From: Vienna, Austria
Page Title, Keywords

No, don't clear everything, chmod only the files inside of /cache/tags to 0777. If this makes not any difference, try the following code modification.

Open core.php and find:

        if ($configs[8])

{
$cachefile = @fopen("$var.cah.php", "w") or die ("Error: Can't write cache");
if (flock($cachefile, 2))
{
fputs ($cachefile, "$var2");
}
flock($cachefile, 3);
fclose ($cachefile);
@chmod ("$var.cah.php", 0777);
}

Then comment out this code section:

/*

if ($configs[8])
{
$cachefile = @fopen("$var.cah.php", "w") or die ("Error: Can't write cache");
if (flock($cachefile, 2))
{
fputs ($cachefile, "$var2");
}
flock($cachefile, 3);
fclose ($cachefile);
@chmod ("$var.cah.php", 0777);
}
*/

Finally, remove all cache files from /cache/tags. It is now working?
1 Re: Page Title, Keywords
avatar
OP 0
From: -
Page Title, Keywords

i chmod the cache and tags directory and the php's in the tags directory. i cleared IE, and Firefox cache and cookies... i also added another test file from the admin, the titles and keywords are still not changing.
1 Re: Page Title, Keywords
avatar
Administrator
1340
From: Vienna, Austria
Page Title, Keywords

That look like a permission problem with your server, e.g. the script is successfully writing the cache files to the directory but can no longer read the files.

What happened if you chmod all files in /cache/tags to 0777 (writeable)?
1 Re: Page Title, Keywords
avatar
OP 0
From: -
Page Title, Keywords

i manually deleted the default.cah.php from the directory. went to one of my test pages and refreshed it, still no luck. went back to the cache/tags directory and the default.cah.php has been rewritten. the 2 test pages are there also. they are named download-1.cah.php and download-3.cah.php, and have the correct tilte and keywords inserted in them.... another thing the download pages are named after the program title using the mod rewrite, "file_name_1.html" and "file_name_3.html"
1 Re: Page Title, Keywords
avatar
Administrator
1340
From: Vienna, Austria
Page Title, Keywords

Sounds like a problem with the cache file. Deleting the /cache/tags/default.cah.php file should fix this problem.

Notice

This topic is archived. New comments cannot be posted and votes cannot be cast.