私のWordPressのページ「ギャラリー」と「イベント」は空白の画面を表示していますが、作成した古いものは他のページです)まだ動作していますカスタムワードプレステーマ:2ページだけが空白の画面を表示していますか?
メモリphp.iniを30から180に増やそうとしました。何の効果もありませんでした。テーマのコードに何か問題があります。なぜなら、私がワードプレスのテーマ、すなわち20歳のテーマをインストールすると、ページが表示されるからです。
php.ini.productionファイル
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
; Maximum execution time of each script, in seconds
; http://php.net/max-execution-time
; Note: This directive is hardcoded to 0 for the CLI SAPI
max_execution_time = 180
私は、エラーの原因をコードわからないので、ここでサイトへのリンクです:http://radian3.com/と空白ページの1:http://radian3.com/events/は、
私はページを表示するために使用されるpage.phpファイルを追加してい1
UPDATE:
<?php
/* CONTACT PAGE */
if(is_page("102")) { ?>
<?php get_header(); ?>
<div class="main-content" >
<div class="about-container">
<div class="contact-wrapper">
<b class="about-title">CONTACT US</b>
<div class="about-icon-wrapper">
<img src="<?php bloginfo('template_url'); ?>/img/down-arrow.png" alt="about-icon" width="50%;">
</div>
</div>
<div class="contact-body-wrapper">
<div class="contact-col-1">
<div class="contact-headline">
<b id="primary-headline">CONTACT FORM</b>
</div>
<div class="content-wrapper">
<?php echo do_shortcode("[contact-form-7 id='191' title='Contact form 1']"); ?>
</div>
</div>
<div class="contact-col-2">
<div class="in-touch-headline">
<b id="primary-headline">GET IN TOUCH</b>
</div>
<div class="touch-content-wrapper">
<p>For all other enquiries and information please contact us </p>
<div class="touch-content-post">
<div class="contact-icon-wrap">
<img class="touch-img" src="img/iphone-icon.jpg">
</div>
<article class="touch-content">
<p>1800 243 6500</p>
<p>1800 555 5440</p>
</article>
</div>
</div>
<div class="touch-content-wrapper">
<div class="touch-content-post">
<div class="contact-icon-wrap">
<img class="touch-img" src="img/msg-icon.jpg">
</div>
<article class="touch-content">
<p>[email protected]</p>
</article>
</div>
</div>
<div class="touch-content-wrapper">
<div class="touch-content-post">
<div class="contact-icon-wrap">
<img class="touch-img" src="img/location-icon.jpg">
</div>
<article class="touch-content">
<p>25/153 Mujanjii st,<br> Hawker ACT 2614 Australia</p>
</article>
</div>
</div>
</div>
</div>
</div> <!--/END about-container -->
</div><!-- /main-content -->
<?php get_footer(); ?>
</body>
</html>
<?php
}
?>
<!-- ABOUT PAGE -->
<?php if(is_page('84')) { ?>
<?php get_header(); ?>
<div class="about-container">
<div class="about-image-wrapper">
<b class="about-title">ABOUT US</b>
<div class="about-icon-wrapper">
<img src="<?php bloginfo('template_url'); ?>/img/down-arrow.png" alt="about-icon" width="50%;">
</div>
</div>
<div class="about-content-wrapper">
<div class="about-content-headline">
<b id="primary-headline">COMPANY OVERVIEW</b>
</div>
<div class="about-content-post">
<article>
<p>
<br><b id="secondary-headline">Working on new generation investors</b><br>
Institute of professional excellence was formed in April, 2017 with the vision of its two founder directors Shahid Al and Syed Najib ul Hasan. </p>
<p>
It aims to introduce new investors to Pakistani equity market by attracting them to PSX. Both the founders firmly believe transformation of "Saving culture" to the "equity culture" is the need of the time. Not enough work is being carried out in this regard. The institute will work towards developing a new generation investors with an aim of developing a new stream of entrepreneurs.
</p>
<p>
<br><b id="secondary-headline">Partnership and joint certification initiatives</b><br>
IPE initiatives, include partnerships (with Educational boards, universities ,other institutes, and also corporate sector) through specific courses on investment strategies, entrepreneurship and equity market.
</p>
<p>
The institute is working on its upcoming courses as joint certification programs, with an aim to develop new market professionals, investors and entrepreneurs.
</p>
<p>
IPE will engage general public by conducting financial workshops, seminars, short courses and even by launching various comprehensive courses at universities which would serve in MBA program as a major in Capital markets.
</p>
<p>
<br><b id="secondary-headline">Bridging the gap between public and Capital market</b><br>
IPE will aggressively intensify its outreach and advertising programs directed at younger Pakistanis by promoting financial literacy as a necessary life skill.
</p>
<p>
The main motivation to setup this institute was to fill up a huge vacuum already exist between Pakistani financial markets and the new generation.
</p><br>
<p>
IPE aims to provide customised solutions for new potential investors and potential employees who are struggling to enter Pakistani Financial markets due to gap in their knowledge and skills, demanded in those markets.
</p><br>
<p>
<br><b id="secondary-headline">Helping in Career Opportunities</b><br>
We will not only educate and prepare our students to get advantage of financial markets as an investor or an employee (whatever way they pick and choose). But we will also extend our services to recommend successful students to employers looking for trained employees in PSX, CDC and brokerage houses. We are in contact with employers in PSX and we are in a very ideal and credible position to recommend our successful students on regular basis whenever any opportunity pops up in employment areas.<br><br>No need to mention our certification would also help our students besides direct recommendation.<br>
</p>
<p>
<br><b id="secondary-headline">Corporate Projects and Services</b><br>
Besides, our educational endeavors mentioned as above we have a bunch of prestigious senior professionals who would engage with us in different corporate projects time to time depending on their area of expertise. So we are ever ready to serve corporate sector with projects of commercial value as a consultancy.
</p>
<p>
<br><b id="secondary-headline">Upcoming Events</b><br>
We are scheduling seminars and workshops to guide how to be successful in Pakistani equity market as an investor.
Soon we will start updating future events for our viewers too.
</p>
<p>
<br>There are few more projects in pipeline and we will update each of them in appropriate time As currently we need to comply with constraint of confidentiality issues with our clients.<br>
</p>
<p>
<br>Keep visiting this site in future. We will come up with surprises for you.<br><br>Thanks<br>
Shahid Ali and Syed Hasan
</p>
</article>
</div>
</div>
</div> <!--/END about-container -->
<?php get_footer(); ?>
<?php } ?>
<!-- Our Team PAGE -->
<?php if(is_page('172')) { ?>
<?php get_header(); ?>
<div class="about-container">
<div class="about-team-wrapper">
<b class="about-title">OUR TEAM</b>
<div class="about-icon-wrapper">
<img src="<?php bloginfo('template_url'); ?>/img/down-arrow.png" alt="about-icon" width="50%;">
</div>
</div>
<div class="about-content-wrapper">
<div class="about-content-headline">
<!-- <b id="primary-headline">BOARD OF DIRECTORS</b>
--> </div>
<div class="about-content-team">
<div class="our-team-wrap">
<div class="team-image-wrap">
<img src="img/shahid.jpg" alt="director-name">
<p><b>Shahid Ali</b></p>
</div>
<article class="director-bio">
<p>Mr. Ali is a commerce graduate and an associate member of ICMAP since 1990. He started his carrier as banker at UBL in 1974. Before joining Pakistan Capital Market in 1991 he also worked as head of costing department in leather and textile garments industries.<br><br>
He had worked at top management positions at local as well as international equity broking firms those includes W. I. Carr (Far East), J. P. Morgan Chass (formerly Jardine Flemings Pakistan, Orix Investment Bank Al Hoqani Securities and Investment Corporation, Habib Metropolitan Financial Services and BIPL Securities (formerly KASB Sec. Ltd). He was CEO of last four companies mentioned as above.<br><br>
He is among few pioneers in 1991 who took the corporate brokerage house culture in K.S.E to next level by establishing 8 different corporate brokerage houses, most of them with foreign Joint ventures, after foreigners being allowed to enter in Pakistan equity markets.</p>
</article>
</div>
<div class="our-team-wrap">
<div class="team-image-wrap">
<img src="img/najib.jpg" alt="director-name">
<p><b>Najib Ul-Hasan</b></p>
</div>
<article class="director-bio">
<p>
He is an international business coach and qualified from University of Canberra, Australia and Australian Employment Inc. Author of dozen of e-books and 6 courses related to various business management topics. He has an extensive corporate exposure at top management level in Australia and Pakistan. His passion is Forex and stock trading, coaching, and consultancy, all with great success throughout.<br><br>
Also done 6 professional courses from I.CM.A. In his earlier times, he became a double graduate from University of Karachi in Commerce and Arts faculty. <br><br>
Australia (2001-2016)
Director in Tall Trees Motel, Project Director in Aus Pak Soft Solutions pty Ltd, Senior Manager Operations in Cybos pty Ltd
In his last 5 years in Australia he started working as business coach, consultant and mentor for entrepreneurs for both online and offline business models, in Australia and worldwide and was successful in his coaching venture.<br><br>
Pakistan (1987- 2000)
Head of Settlements in ING Barings, Deputy Manager in ISL, Production director in Jawad Garments, Financial controller in Pakistan Wire Industries, Cost Accountant in B.P Food Industries.<br><br>
He had a unique experience of setting up ING Barings entire systems and training stock office staff from scratch and running the stock office operations successfully. Also he contributed in the event of its winding up. He had similar experience in ISL (a JV with Smith New Court, Hongkong that was a subsidiary of Merrill Lynch) for starting the stock office operations from scratch and running that successfully.
</p>
</article>
</div>
</div>
</div>
</div> <!--/END about-container -->
<?php get_footer() ?>
<?php } ?>
<!-- Our Members Data PAGE -->
<?php if(is_page('176')) { ?>
<?php get_header(); ?>
<div class="about-container">
<div class="about-members-wrapper">
<b class="about-title">MEMBERS DATA BANK</b>
<div class="about-icon-wrapper">
<img src="<?php bloginfo('template_url'); ?>/img/down-arrow.png" alt="about-icon" width="50%;">
</div>
</div>
<div class="about-content-wrapper">
<div class="about-content-headline">
<b id="primary-headline">OUR GRADUATES</b>
</div>
<div class="about-content-post">
<article>
<p>
<br><b id="secondary-headline">Institute of professional excellence</b><br>
In compliance to our own mission we encourage our successful students to submit their resume to us. As we help our members (successful students) to find great employment or project opportunities in the open market. We are in contact with employers and corporate world and we want our members to get best value from this.</p><br><br>
<p>Good luck.</p>
</article>
</div>
</div>
<div class="about-content-wrapper">
<div class="about-content-headline">
<b id="primary-headline">ALREADY GRADUATED?</b>
</div>
<div class="about-content-post">
<article id="content-margin-left">
<br>
<p>Have you already graduated? Contact us to join our Alumni group for any opportunities.</p>
<br><br><br>
<p><b id="secondary-headline">Contact:</b></p><br>
<p>Mr Shahid Ali 0333 2238 461</p><br>
<p>Mr Syed Najib ul Hasan 0335 2522 775</p>
</article>
</div>
</div>
</div> <!--/END about-container -->
<?php get_footer(); ?>
<?php } ?>
<!-- Our Mission PAGE -->
<?php if(is_page('174')) { ?>
<?php get_header(); ?>
<div class="about-container">
<div class="about-mission-image-wrapper">
<b class="about-title">OUR MISSION</b>
<div class="about-icon-wrapper">
<img src="<?php bloginfo('template_url'); ?>/img/down-arrow.png" alt="about-icon" width="50%;">
</div>
</div>
<div class="about-content-wrapper">
<div class="about-content-headline">
<b id="primary-headline">MISSION STATEMENT</b>
</div>
<div class="about-content-post">
<article>
<p>
<br><b id="secondary-headline">Institute of professional excellence</b><br><br><i><blockquote>
"Institute of professional excellence being a partner in nation building acknowledges its noble duty towards the society to educate new stream of investors and professionals in the capital market" </blockquote><br></i> </p>
<p>
<br><b id="secondary-headline">Our Mission</b><br>
To take a leadership role in providing value to business world and education sector by creating a new generation of investors and professionals in capital market.
</p>
<p>
<br><b id="secondary-headline">Our Vision</b><br>
1. To serve our community and society by adding value in our courses with research, and innovative work that adheres to a blend of industry based competency with academic content.
</p>
<p><br>
2. To follow our set "Standards of financial literacy" in all our courses to ensure quality and a structured approach.
</p><br>
<p>
<b id="secondary-headline">Business model</b><br>
We create value with high quality courses much needed in the capital market at different levels. We offer our training and courses in partnership with corporate sectors, universities and other institutes who are seeking to increase employability skills in their students together with academic value.
</p>
<p>
<br><b id="secondary-headline">Our Strategy</b><br>
To provide competency based training for professionals, investors and entrepreneurs by means of publicly accessible credentialing programs for establishing industry specific excellence.
</p>
<p><br>
To work with corporate sector as a partner or consultant in projects with commercial value related to capital market. To build up community and deliver to all members the value that would provide them an edge to to excel with confidence in capital market.
</p>
<p>
<br><b id="secondary-headline">Our Core Values</b><br>
To provide quality and value for money with highest professional integrity and confidentiality to all clients, students and related entities.
</p>
</article>
</div>
</div>
</div> <!--/END about-container -->
<?php get_footer(); ?>
<?php } ?>
空白の画面は実際には何かが間違っていたことを意味するため、原因を知るのは難しいです。しかし、あなたと彼らのための2ページだけがデフォルトのテーマで動作するので、それらのページで使用されているテンプレートのPHPエラーが多分あります。おそらく構文エラーでしょうか、あるいは '<?'または '<?= 'の代わりに' <?php'を使います。テンプレートを見てそこから始めましょう!あなたのコメントのために@FluffyKittenありがとう。 – FluffyKitten
だから質問にpage.phpファイルを追加しました。おそらく私はこのページでPHPのコード構造に関して何か間違っていますか?わかりませんが、の構文をチェックしましたが、何もそこにはありません。 – Shaz
非常に最初のもの、 '<?*/ if(is_page( "102")){?> '、この条件自体は静的です。この種のコーディングを防止します。その連絡先ページを削除して新しい連絡先ページを作成する必要がある場合もう一度あなたのPHPファイルを開き、IDを編集しますか? IDを渡すのをやめ、スラッグを止めてください。これは動的な方法ではありません。非常に簡単な方法は、ページテンプレートを作成し、次に進むことができます。これは良い習慣ではありません。 –