rajeev_rnd
Forum Replies Created
-
Forum: Plugins
In reply to: [WP BackItUp Community Edition] How long does backup take?Hello Chris,
I have sent you an email from support contact form. My email address –
[email protected]I will be waiting for your reply.
Rajeev
Forum: Plugins
In reply to: [WP BackItUp Community Edition] How long does backup take?Hello Chris,
Its good to see your reply and as you mentioned that plugin stored the backup under following folder –
wp-content\plugins\wp-backitup\backups
but when I have worked on this plugin and I have modified the location of backup file and its under
wp-content\backups
{as per John Peden instructions}I think he have changed the backup storage location.
Can you let me know if it has been changed, so I will update the plugin as well code.
I have installed the plugin on 2-3 websites of my client.
I will be waiting for your reply.
Cheers -:)
Forum: Plugins
In reply to: [WP BackItUp Community Edition] How long does backup take?Hello teentoolbox,
Can you know me the size of your database. Its depend upon the size of database. And also please do the cross checking on your FTP.
1. Check the permission of your folders.
2. Also check the root of your server tha
t backup stored on your server or not. I mean – backup stored in the location under wp-content folder.Please check and let me know if its works or not. I have personally worked on this plugin and you can also check my comment. If you need more help then PM me at webrndexperts at the rate gmail dot com
enjoy
Forum: Plugins
In reply to: [WP BackItUp Community Edition] no linkDear Plugin Author,
I have installed the plugin on my site and then hit the backup button
I am getting following:-
Status
Preparing to backup…Done
Backing-up database…Done
Backing-up /wp-content/…Done
Creating backup information file…Done
Zipping backup directory…Done
Cleaning up…Done
Backup file created successfully. You can download your backup file using the link aboveBut there is no link to download the zip file. When I have checked on ftp for zip folder then wp-content/plugins/wp-backitup/backups
folder are empty means plugin not creating the backup of the file.I am using the WordPress 3.6 version. and the space on the server are not the problem I have checked
I am really appreciate if you can get back me that what is happening there.
I will be waiting for your reply.
Thanks in advance.
Regards,
RajeevForum: Plugins
In reply to: [WP BackItUp Community Edition] How long does backup take?Dear Plugin Author,
I have installed the plugin on my site and then hit the backup button
I am getting following:-
Status
Preparing to backup…Done
Backing-up database…Done
Backing-up /wp-content/…Done
Creating backup information file…Done
Zipping backup directory…Done
Cleaning up…Done
Backup file created successfully. You can download your backup file using the link aboveBut there is no link to download the zip file. When I have checked on ftp for zip folder then wp-content/plugins/wp-backitup/backups
folder are empty means plugin not creating the backup of the file.I am using the WordPress 3.6 version.
I am really appreciate if you can get back me that what is happening there.
I will be waiting for your reply.
Thanks in advance.
Regards,
RajeevDear Plugin Author,
Thanks for your reply.
Regards,
RajeevDear Plugin Author,
I am facing the problem with sorting the rating on the basis of total rating and I have used following code:-
$Qry = query_posts(“cat=-51&gdsr_sort=rating&sort_order=DESC&posts_per_page=24&paged=”.$paged);
Some time this is work and some time not. Can you help me to sort out this issue.
I am working on following site:-
http://www.foodpinup.com/rankings/I will be waitng for your reply.
Regards,
RajeevForum: Themes and Templates
In reply to: Lastest posts inside static pageYou can also use the template for this and there is also 2-3 plugin which allow the php inside the editor
Forum: Plugins
In reply to: [WordPress Social Login] Try to connect with Twitter getting errorcheers MRCarLister 🙂
Forum: Plugins
In reply to: [WordPress Social Login] Try to connect with Twitter getting errorHello All,
I have resolved the issue my self. As per twitter T&C they are going to stop the api version 1.0 and have launched the new version 1.1 so I have changed the twitter api version from the file.
wordpress-social-login/hybridauth/Hybrid/Providers/Twitter.php$this->api->api_base_url = “https://api.twitter.com/1/”;
to
$this->api->api_base_url = “https://api.twitter.com/1.1/”;I hope this will help someone.
Cheers!!!
Forum: Hacks
In reply to: Can we change the $locale without edit wp-config?ok .. You can also use the language plugin for this.
http://ww.wp.xz.cn/plugins/wordpress-language/this is the best plugin.
Forum: Hacks
In reply to: If mobile browser then show less posts?you can also use the php mobile class to detect the device and after that you can apply the str function of php.
of you can also use this code
$iphone = strpos($_SERVER[‘HTTP_USER_AGENT’],”iPhone”);
$android = strpos($_SERVER[‘HTTP_USER_AGENT’],”Android”);
$palmpre = strpos($_SERVER[‘HTTP_USER_AGENT’],”webOS”);
$berry = strpos($_SERVER[‘HTTP_USER_AGENT’],”BlackBerry”);
$ipod = strpos($_SERVER[‘HTTP_USER_AGENT’],”iPod”);if ($iphone || $android || $palmpre || $ipod || $berry == true)
{ echo //your code ; }
else { echo //your code;}I hope this can help you.
Forum: Hacks
In reply to: Login/registration added, how to adjust to single pages?you can also use the conditional statement like
if(is_page(‘your page id’)) {}
else {}hope this can help you.
Forum: Hacks
In reply to: Can we change the $locale without edit wp-config?you need to upload the language file also. this was worked for me.
Hello,
Same problem for me, when I am click on the edit link they takes me to post detail not the post edit page although I have used the above code that you have shared.
Any help will appreciate.
Regards,
Rajeev