我试图在我的网站上写一个自定义控制器,我在“目录/控制器”目录中添加了一个名为票务的新文件夹,然后为控制器添加了一个php文件
<?
class ControllerTicketingTicket extends Controller{
public function index(){
var_dump("hi");
}
public function addticket(){
}
}
现在,当我试图请求路线“路由=票务/票”时
响应
致命错误:未登录错误:在第71行的myurl\system\st
所以我是drupal模块的新手,实际上这是我写的第三个模块..。然而,问题是它没有出现在模块菜单中。我试过多次冲洗这个案子。
ini文件如下所示:
name = Support Email
description = Provides a block to send support an email.
core = 7.x
我也有一个.module文件,为了避免任何错误,我已经把它剃到了最低限度:
<?php
/**
* Implements hook_block_info().
*
* Declares a block to provide to Drupal
我有一个处理这么多请求的php脚本,它需要大约1个半小时才能完成。
现在,我使用浏览器访问脚本,如下所示。
http://localhost/app.php
它运行curl请求,写文件,是的,它需要很长时间。但是,如果时间太长,会抛出致命错误。
我还没有试过,到目前为止我试过的是最大执行时间,如下所示:
init_set('max_execution_time', 4800)
我所看到的可以帮助我的是这个,但还没有尝试,这是我正在寻找的那个吗
set_time_limit(4800) // this is in seconds right?
在WordPress中创建了新的用户配置文件之后,我尝试实现一个自定义函数/操作。为了测试代码,我尝试在文件中写一个文本作为函数执行的证明。下面是我在活动主题的functions.php文件末尾插入的代码
if ( ! function_exists( 'register_for_cmsa' ) ) :
function register_for_cmsa($user_id) {
// write in an external file
// writeLogWP($msg) is a function from a file I have