haidago
Forum Replies Created
-
Forum: Plugins
In reply to: Pods – Custom user is it possibleok, by choosing EXTEND EXISTING
https://pods.io/tutorials/using-pods-create-user-directory/create-user-directory-step-1/
Forum: Plugins
In reply to: Pods – Custom user is it possibleok thanks Scott! so, can you give a link to explain how to do?
Forum: Plugins
In reply to: Pods – Custom user is it possibleup!
Need powerful free plugin for adding extra fields to an user!
Forum: Plugins
In reply to: Using short tags in template page codecorrection: short codes but not short tags
Forum: Plugins
In reply to: Using short tags in template page codeActually, I am using “Sparkle” premium theme.
I am trying to understand its codes treating the_content()!!ok thanks, I gonna upgrade it. Just to replace the Pods directory by this new version is it sufficient? There is no change in database structure?
I am using 2.3.18 version.
Ok I understand it’s a problem of to change session.save_path from /var/lib/php5 (not writable) to /tmp (writable)!But if I upgrade Pods to the latest version, I would not be anymore to do that?
What is the exact solution of this trouble? Because my server logs is full of this warning message.
PHP Warning: file_exists(): open_basedir restriction in effect.
File(/var/lib/php5) is not within the allowed path(s): in /home/monsite/server/public/wp-content/plugins/pods/includes/general.php on line 1832I don’t understand Scott’s solution? What is session path not properly configured?
Forum: Fixing WordPress
In reply to: Url rewrite to RSS troubleEven the one line which works, it is not interpreted as url rewriting but 301 redirection.
=> RewriteRule ^redaction.html$ /wordpress-3.8/?p=46 [QSA,L] !!!!!I don’t find solution of it since more than one week!
So I give up. I’ll use “Redirect 301”, not to touch wordpress htaccess section!
Redirect 301 /flux.xml https://mywebsite.com/wordpress-3.8/?feed=rss2 Redirect 301 /redaction.html https://mywebsite.com/wordpress-3.8/?p=46
Forum: Fixing WordPress
In reply to: Htaccess rewriterule does not work in my htaccessAny solution?
Forum: Fixing WordPress
In reply to: Htaccess rewriterule does not work in my htaccessYes, it is exactly! That doesn’t apply!
I change after like this:# BEGIN mine <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteRule ^rss-yard$ /blog/index.php?feed=rss2&post_type=yard RewriteRule ^rss-job$ /blog/index.php?feed=comments-rss2 </IfModule> # END mine # BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /blog/index.php [L] </IfModule> # END WordPress
it works when changing permalinks to default value (?p=id_page), the WordPress part is empty!
Forum: Fixing WordPress
In reply to: Htaccess rewriterule does not work in my htaccessWhen I remove wordpress htaccess directives by mine, it works but it is not the solution
<IfModule mod_rewrite.c> RewriteEngine On RewriteBase /blog/ RewriteRule ^rss-yard$ /blog/index.php?feed=rss2&post_type=yard RewriteRule ^rss-job$ /blog/index.php?feed=comments-rss2 </IfModule>
Forum: Fixing WordPress
In reply to: Htaccess rewriterule does not work in my htaccessI try to insert the following codes in functions.php of my theme
add_action('init', 'add_my_rewrite'); function add_my_rewrite() { add_rewrite_rule('rss-yard$','feed/?post_type=yard','bottom'); add_rewrite_rule('rss-job$','comments/feed','bottom'); }
After visiting Permalinks page, WP added two RewriteRule in the htaccess but that doesn’t work yet
RewriteRule ^index\.php$ - [L] RewriteRule ^rss-yard$ /wordpress-3.8/feed/?post_type=yard [QSA,L] RewriteRule ^rss-job$ /wordpress-3.8/comments/feed [QSA,L]
Forum: Fixing WordPress
In reply to: Htaccess rewriterule does not work in my htaccessThanks for your answer!
This code doesn’t work!In fact, I need just “url rewriting” but not “url redirection”! So where to put RewriteRule equivalent?
Forum: Fixing WordPress
In reply to: How Do I Convert This Website to a WordPress Site?As sonddogtech say, there is a coding to do: convert your static design to wordpress theme.
[email removed – mod]