Page 2 of 2
Re: User's templates, tag list, gallery's slug and SVN
Posted: Mon Dec 09, 2013 3:50 pm
by italkcafe
It can open but shows Internal Server Error when you try to add a trade.
Re: User's templates, tag list, gallery's slug and SVN
Posted: Mon Dec 09, 2013 4:33 pm
by admin
create test.php anyhere at your server with content
Code: Select all
<?php
$cmd = escapeshellcmd("whois google.com");
echo `$cmd`;
and run it in browser.
Then show it to admin and ask them to fix it.
Lemme plz what was the problem so we can somehow make a workaround or a warning later.
Re: User's templates, tag list, gallery's slug and SVN
Posted: Tue Dec 10, 2013 2:22 am
by italkcafe
Well spotted. Thank you.
The issue was that server needs outgoing port TCP 43 opened on firewall for whois command to work.
Now that I am running update #50, there's still a few things that I'll be glad if you can help on:
1/ When user registers, there is activation email sent from: Admin <
[email protected]>
Would be cool if we can change From name from Admin to something like Site Name?
2/ I tried Tube import in Group. It can grasp embed from xvideos.com and redtube.com. But for xhamster.com it can only grasp image and gallery URL.
Is it possible to force grasping of embed code from xhamster.com (can we add some content extraction rules somewhere ?)
That would also be nice if we can have option to assign an Embed Template instead of using default content_page.
Re: User's templates, tag list, gallery's slug and SVN
Posted: Tue Dec 10, 2013 11:33 am
by admin
1. yes, will add it.
2. you can use import set and assign any template there
Re: User's templates, tag list, gallery's slug and SVN
Posted: Wed Dec 11, 2013 10:34 am
by italkcafe
admin wrote:2. you can use import set and assign any template there
Using import set I need to provide Source URL (Dumps, RSS, XML).
I meant I'd like to use Tube grasping feature in Group to auto grasp embed code from xhamster.com just like xvideos.com and redtube.com.
Re: User's templates, tag list, gallery's slug and SVN
Posted: Wed Dec 11, 2013 1:04 pm
by admin
Yes, I do understand, but at present time xhamster parser was not updated for a long time caz it has a nice export tool, so basically no need to use tube import at all for it.
We contemplate updating it later.
Re: User's templates, tag list, gallery's slug and SVN
Posted: Thu Dec 12, 2013 4:28 pm
by admin
1/ When user registers, there is activation email sent from: Admin <
[email protected]>
Would be cool if we can change From name from Admin to something like Site Name?
added to update 51
Re: User's templates, tag list, gallery's slug and SVN
Posted: Thu Dec 26, 2013 12:43 pm
by italkcafe
Wish you a great holiday and Happy New Year!
I am having an issue:
When registering for example, there are error messages showing 'raw variable' such as:
- invalid_codeELOHT...sadasd (invalid CAPTCHA)
- password_missmatch
Can we change these somewhere or we need to hook in $error in the template?
Email address is not validated. I entered an email without '@' and the registration still went through:
"A verification email is sent to your address. Please check your email."
Please advise how to fix this?
Re: User's templates, tag list, gallery's slug and SVN
Posted: Thu Dec 26, 2013 5:25 pm
by admin
The best way is to solve it one by one
password_missmatch
You can do something like
if ($error == 'password_missmatch ') {
echo "pssword doesn't match .... ";
}
and so on