Forum Replies Created

Viewing 9 replies - 1 through 9 (of 9 total)
  • Thread Starter KrNel

    (@krnel)

    I’m also using the default sendmail program on Ubuntu 16.04. I forgot to mention that. I would like it to work with wordpress and the default settings without modifying the core files or disabling encrypted emailing (if possible)…

    Thread Starter KrNel

    (@krnel)

    The host was the issue, somehow all the folders got 600 perms for 2018/01… so no one could access lol. Fixed now. Thanks for the assistance.

    Thread Starter KrNel

    (@krnel)

    Update on issue, in trying to go to the image URL/path directly in the browser, I get a “403 Forbidden” error message:


    Forbidden

    You don’t have permission to access /2018/01/Brain_power.jpg on this server.

    Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

    Can I resolve this issue, or does the host need to fix permission access on their end? WordPress can create the folder, upload image, but the images are not viewable by wordpress or a browser…

    Thank you.

    Thread Starter KrNel

    (@krnel)

    Hi, thanks for replying.

    Yes, all image sizes are created. The files are there.

    There are no error messages.

    Thanks.

    Thread Starter KrNel

    (@krnel)

    For anyone who has the issue of not being able to comment, or post, check you WP tables for auto increment being set. You might need to reset the primary, index or unique keys in the table structures. I just spent a while going through the tables which had no more primary keys, or other keys, and no auto increment set… and had to set them all using ALTER TABLE SQL commands.

    For example:

    ALTER TABLE wp_users
    ADD PRIMARY KEY (ID), ADD KEY user_login_key (user_login), ADD KEY user_nicename (user_nicename), ADD KEY user_email (user_email);
    ALTER TABLE wp_users
    MODIFY ID bigint(20) unsigned NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=6;
    COMMIT;

    After this was done to the comments and posts tables (meta tables as well), I could then post comments and posts.

    Peace.

    • This reply was modified 7 years, 3 months ago by KrNel.
    Thread Starter KrNel

    (@krnel)

    Thank you for the assistance. I reinstall wp, re-uploaded the DB, just to be sure, did fresh theme, and no plugins… but I still get a “Comment Submission Failure” page loaded with the message:

    “ERROR: The comment could not be saved. Please try again later.”

    The “post-new.php” page now loads the page, not a blank white page.

    But no one can comment still… any ideas?

    Thanks again! I appreciate the help!

    I also had the same issue. Some mobile users told me about it. The whole site doesn’t work.

    I am using the Amplified version for now, which has a weird alignment issue with short titles that don’t image align left, but stay under the image.

    Please fix this bug. Great plugin otherwise.

    Thanks.

    Thread Starter KrNel

    (@krnel)

    Well for anyone looking for solution, I found it:

    $args = array(
    			'showposts' => $featured_num,
    			'cat' => get_catId($featured_cat),
    			'post_type' => array( 'post', 'article' )
    	);
    	if (get_option('magnificent_use_pages') == 'false') query_posts($args);

    The previous attempt to add an array to the string was a fail because the new array was overwriting the string in query_posts and only keeping the newly created array for post_type. After putting it all into an array format it works properly ??

    My bad ??

    Peace.

    Thread Starter KrNel

    (@krnel)

    I added the post_type array to specify explicitly to take ‘post’ and ‘article’ types, but it ignores the other parameters like ‘cat’:

    if (get_option('magnificent_use_pages') == 'false') query_posts(array("showposts=$featured_num&cat=".get_catId($featured_cat), post_type => array( 'post', 'article' )));

    This results in the Featured slider showing all posts for ‘post’ and ‘article’… no filter from the Category anymore…

Viewing 9 replies - 1 through 9 (of 9 total)