Shashikanta
Forum Replies Created
-
I have a website in my local xamp and online with shared hosting with wordpress. I have a custom plugins through which admin can upload multiples files into a particular user account. In test server its allowing only 139 Files not more and throwing “User ID Not Found” warning, for that a admin cannot upload more than 140 files.
But in Xampp its working fine with all over 140 files.
I have tried with so many online servers but there is no luck.
I have given test server ids for more checking.
https://www.webapplications.co.in/rcmfire/wp-admin/ (Admin can only upload files to users) UID : adm Pass: admin@123
Admin is trying to upload a file through https://www.webapplications.co.in/rcmfire/wp-admin/users.php
(Try for the user UID : smasotto and password :go4ers#1 ) user id no 20 on second page, User Name : 1smas smasotto
In this page you will see for 139 number file you cannot update and its showing In Invalid user ID.
Which same thing is in showing at by hitting this https://www.webapplications.co.in/rcmfire/wp-admin/user-edit.php
The Plugin – https://s000.tinyupload.com/?file_id=10076114594307435772
The Screenshot: https://s000.tinyupload.com/?file_id=40576429452374775368
Thanks!
Hi Matthew,
Its a custom plugin but its a WordPress warning.
The Plugin – https://s000.tinyupload.com/?file_id=10076114594307435772
The Screenshot: https://s000.tinyupload.com/?file_id=40576429452374775368
But I believe the plugins do not have any error.
Forum: Fixing WordPress
In reply to: Echo printing errorI got it I’m already in a php block and opening another one. I should be doing something like this
<?php $the_query = new WP_Query(…); ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
“><?php the_title(); ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>[Moderator Note: Please post code or markup snippets between backticks or use the code button.]
Forum: Fixing WordPress
In reply to: Echo printing errorlinking is not done as per our coding
Forum: Fixing WordPress
In reply to: Echo printing erroryes same thing i am wondering
Check this https://project.xxx.com/progress
Forum: Fixing WordPress
In reply to: Echo printing errorBut the links are ok
Forum: Fixing WordPress
In reply to: Echo printing errorNot working
Showing below result like this
https://project.xxx.com/wp-content/plugins/wp-publication-archive/includes/openfile.php?file=http|project.xxx.com/wp-content/uploads/2012/03/tor_process_monitoring.pdfThis is a demo file (Download Publication)
https://project.xxx.com/wp-content/plugins/wp-publication-archive/includes/openfile.php?file=http|project.xxx.com/wp-content/uploads/2012/03/GuidelineTender_Data_Card-Jajpur1.docReport 2012 (Download Publication)
Forum: Fixing WordPress
In reply to: How to get lists of files under a category or slug of WordPressSure
I don’t know why the link is not showing, does word press is having any issues ?
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
Plz Note : I’m using WP Publications Archive plugins
Forum: Fixing WordPress
In reply to: How to get lists of files under a category or slug of WordPressWhat you said is ryt. I’ve tried with the same just see the screenshot its rendering the css but not the permalink.
[IMG]https://i40.tinypic.com/34rsolk.jpg[/IMG]
Sorry don’t want to bother you ??
Forum: Fixing WordPress
In reply to: How to get lists of files under a category or slug of WordPressSorry, its just a discussion.
What I exactly trying is to link the post
the echo ‘“<?php the_title(); ?>‘; is not linking.
Forum: Fixing WordPress
In reply to: How to get lists of files under a category or slug of WordPressI’ve tried but not happening
Are you saying about <?php get_template_part( ‘content’, get_post_format() ); ?>
Forum: Fixing WordPress
In reply to: How to get lists of files under a category or slug of WordPressI’ve tried but not working, Just see my above code, its not attachment it just publication. So I need publication link to the title.
So here attachment for the post is not required.
also Permalink is not linking to the post.
<?php // The Query $the_query = new WP_Query( 'cat=13&post_type=publication&numberposts=5' ); // The Loop $attachments = get_posts( $args ); while ( $the_query->have_posts() ) : $the_query->the_post(); echo '<li>'; echo '<a href="<?php the_permalink(); ?>"<?php the_title(); ?></a>'; echo '</li>'; endwhile; // Reset Post Data wp_reset_postdata(); ?>
Forum: Fixing WordPress
In reply to: How to get lists of files under a category or slug of WordPressWow Thanks!!! vtxyzzy Its coming.
Plz do lwt me know how to link this directly to attachment ?
Currently below this code is working and showing title
<?php // The Query $the_query = new WP_Query( 'cat=13&post_type=publication' ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Post Data wp_reset_postdata(); ?>
Forum: Fixing WordPress
In reply to: How to get lists of files under a category or slug of WordPressThis one is also not working
<?php // The Query $the_query = new WP_Query( 'cat=13' ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); echo '<li>'; the_title(); echo '</li>'; endwhile; // Reset Post Data wp_reset_postdata(); ?>
Forum: Fixing WordPress
In reply to: How to get lists of files under a category or slug of WordPressHi,
I’m using WordPress WP Publications Archive plugins, its saving the Docs in its category created by me. And all post type is ‘publication’, I have a CSS Divs and there I want to display files in each category. I’ve tried with the code but Publication under those category is not listing.
I have a Category > PROGRESS and Under this 9 sub category and 13 is the ID so below is my Code …